From e9896571e335a0729c9c0af7b0feecf218b9c433 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Mon, 18 May 2009 10:50:17 +0530 Subject: [PATCH 1/8] [FIX] Bug 376579 : notification messages corrected. bzr revid: jvo@tinyerp.com-20090518052017-ziot1777vp5d3du9 --- addons/crm/crm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/crm/crm.py b/addons/crm/crm.py index 335cccda516..d6e32465103 100644 --- a/addons/crm/crm.py +++ b/addons/crm/crm.py @@ -541,7 +541,7 @@ class crm_case(osv.osv): if reply_to: reply_to = reply_to.encode('utf8') if not emailfrom: raise osv.except_osv(_('Error!'), - _("No E-Mail ID Found for the Responsible user !")) + _("No E-Mail ID Found for your Company address or missing reply address in section!")) tools.email_send(emailfrom, emails, name, body, reply_to=reply_to, tinycrm=str(case.id)) return True def __log(self, cr, uid, cases, keyword, context={}): @@ -611,7 +611,7 @@ class crm_case(osv.osv): if not src: raise osv.except_osv(_('Error!'), - _("No E-Mail ID Found for the Responsible user !")) + _("No E-Mail ID Found for the Responsible Partner or missing reply address in section!")) dest = case.section_id.reply_to body = case.email_last or case.description @@ -684,7 +684,7 @@ class crm_case(osv.osv): emailfrom = case.user_id.address_id and case.user_id.address_id.email or False if not emailfrom: raise osv.except_osv(_('Error!'), - _("No E-Mail ID Found for the Responsible user !")) + _("No E-Mail ID Found for your Company address!")) tools.email_send( emailfrom, From 11e57557115d4b699dd01b7841375b77108c7e2c Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Mon, 18 May 2009 15:15:44 +0530 Subject: [PATCH 2/8] [FIX] Bug 376724 : Corrected name_get for res_partner_address bzr revid: jvo@tinyerp.com-20090518094544-s2gd61b1hrtkcuw3 --- addons/base_contact/base_contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/base_contact/base_contact.py b/addons/base_contact/base_contact.py index c7ae8077d75..b00a5745935 100644 --- a/addons/base_contact/base_contact.py +++ b/addons/base_contact/base_contact.py @@ -76,7 +76,7 @@ class res_partner_address(osv.osv): return [] res = [] for r in self.read(cr, user, ids, ['zip','city','partner_id', 'street']): - if context.get('contact_display', 'contact')=='partner': + if context.get('contact_display', 'contact')=='partner' and r['partner_id']: res.append((r['id'], r['partner_id'][1])) else: addr = str('') From 9761c9e669473b1b6d031d500b6faf7311fd09e6 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Mon, 18 May 2009 20:54:44 +0530 Subject: [PATCH 3/8] bugfix:Needs a filter when adding a supplier(376875) bzr revid: mra@tinyerp.com-20090518152444-4btyup14vi3dqzim --- addons/product/product.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/product/product.py b/addons/product/product.py index 0eb7d836225..a4479b8fe96 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution +# OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # @@ -274,7 +274,7 @@ class product_template(osv.osv): 'loc_case': fields.char('Case', size=16), 'company_id': fields.many2one('res.company', 'Company'), } - + def _get_uom_id(self, cr, uid, *args): cr.execute('select id from product_uom order by id limit 1') res = cr.fetchone() @@ -597,7 +597,7 @@ class product_supplierinfo(osv.osv): _name = "product.supplierinfo" _description = "Information about a product supplier" _columns = { - 'name' : fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', help="Supplier of this product"), + 'name' : fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', help="Supplier of this product", domain=[('supplier','=','True')]), 'product_name': fields.char('Partner Product Name', size=128, help="Name of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."), 'product_code': fields.char('Partner Product Code', size=64, help="Code of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."), 'sequence' : fields.integer('Priority'), From d3938f199b2c1a188d45a8de138257689a7042a0 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Tue, 19 May 2009 09:15:13 +0530 Subject: [PATCH 4/8] revert changes 2324 bzr revid: mra@tinyerp.com-20090519034513-6oclt4ausa19jsiy --- addons/product/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/product/product.py b/addons/product/product.py index a4479b8fe96..e3f30a5860a 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -597,7 +597,7 @@ class product_supplierinfo(osv.osv): _name = "product.supplierinfo" _description = "Information about a product supplier" _columns = { - 'name' : fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', help="Supplier of this product", domain=[('supplier','=','True')]), + 'name' : fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', help="Supplier of this product"), 'product_name': fields.char('Partner Product Name', size=128, help="Name of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."), 'product_code': fields.char('Partner Product Code', size=64, help="Code of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."), 'sequence' : fields.integer('Priority'), From a9426fe4463c738528bae5da6e4b959cc19b3589 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Tue, 19 May 2009 12:33:06 +0530 Subject: [PATCH 5/8] [FIX] Bug 365132 : Analytic Balance Report Corrected (ref:APA) bzr revid: jvo@tinyerp.com-20090519070306-f0zzu1hfbhkjw9u4 --- .../project/report/analytic_balance.rml | 33 ++++++++----------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/addons/account/project/report/analytic_balance.rml b/addons/account/project/report/analytic_balance.rml index 598937b29aa..1e420418a4e 100644 --- a/addons/account/project/report/analytic_balance.rml +++ b/addons/account/project/report/analytic_balance.rml @@ -43,8 +43,10 @@ - - + + + + @@ -99,8 +101,8 @@ -
- + + Code @@ -121,7 +123,7 @@ Quantity - + Total @@ -140,13 +142,12 @@ [[ formatLang(sum_quantity(objects,data['form']['date1'],data['form']['date2'])) ]] - + +
+ [[ repeatIn(objects,'o') ]] + - - [[ repeatIn(objects,'o') ]] - - - + [[ o.code ]] @@ -185,17 +186,11 @@ [[ formatLang(move_g['quantity']) ]] - - - - - - - + +
-
\ No newline at end of file From 2f6b3ec4ad512a13e00c7a65ed48b4acfdf02e7d Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 19 May 2009 14:42:44 +0200 Subject: [PATCH 6/8] [FIX] Remove the view if this one exists bzr revid: stephane@tinyerp.com-20090519124244-2bd3zaeqqs2s4lk4 --- addons/report_intrastat/report_intrastat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/report_intrastat/report_intrastat.py b/addons/report_intrastat/report_intrastat.py index c45ac1085ae..36c429639f1 100644 --- a/addons/report_intrastat/report_intrastat.py +++ b/addons/report_intrastat/report_intrastat.py @@ -21,6 +21,7 @@ ############################################################################## from osv import osv, fields +import tools.sql class res_country(osv.osv): _name = 'res.country' @@ -66,6 +67,7 @@ class report_intrastat(osv.osv): 'currency_id': fields.many2one('res.currency', "Currency", readonly=True), } def init(self, cr): + tools.sql.drop_view_if_exists(cr, 'report_intrastat') cr.execute(""" create or replace view report_intrastat as ( select From 5863a405991ad127a04d12b85086419c9d80c8e5 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 19 May 2009 16:47:26 +0200 Subject: [PATCH 7/8] [IMP] Upgrade the translations bzr revid: stephane@tinyerp.com-20090519144726-rkv9d4gy3xhdragk --- addons/account/i18n/account.pot | 137 +- addons/account/i18n/ar_AR.po | 137 +- addons/account/i18n/bg_BG.po | 145 +- addons/account/i18n/bs_BS.po | 137 +- addons/account/i18n/ca_ES.po | 145 +- addons/account/i18n/cs_CS.po | 457 +- addons/account/i18n/cs_CZ.po | 137 +- addons/account/i18n/de_DE.po | 145 +- addons/account/i18n/es_AR.po | 139 +- addons/account/i18n/es_ES.po | 145 +- addons/account/i18n/et_EE.po | 231 +- addons/account/i18n/fr_FR.po | 145 +- addons/account/i18n/hr_HR.po | 137 +- addons/account/i18n/hu_HU.po | 139 +- addons/account/i18n/id_ID.po | 6810 +++++++++-------- addons/account/i18n/it_IT.po | 145 +- addons/account/i18n/kab_KAB.po | 1505 ++-- addons/account/i18n/ko_KO.po | 6453 ++++++++++++++++ addons/account/i18n/lt_LT.po | 137 +- addons/account/i18n/nl_BE.po | 139 +- addons/account/i18n/nl_NL.po | 145 +- addons/account/i18n/pl_PL.po | 139 +- addons/account/i18n/pt_BR.po | 143 +- addons/account/i18n/pt_PT.po | 145 +- addons/account/i18n/ro_RO.po | 137 +- addons/account/i18n/ru_RU.po | 143 +- addons/account/i18n/sl_SL.po | 143 +- addons/account/i18n/sv_SE.po | 137 +- addons/account/i18n/sv_SV.po | 459 +- addons/account/i18n/tr_TR.po | 139 +- addons/account/i18n/uk_UK.po | 145 +- addons/account/i18n/zh_CN.po | 139 +- addons/account/i18n/zh_TW.po | 139 +- .../i18n/account_analytic_analysis.pot | 4 +- .../account_analytic_analysis/i18n/ar_AR.po | 4 +- .../account_analytic_analysis/i18n/bg_BG.po | 4 +- .../account_analytic_analysis/i18n/bs_BS.po | 4 +- .../account_analytic_analysis/i18n/ca_ES.po | 4 +- .../account_analytic_analysis/i18n/cs_CS.po | 13 +- .../account_analytic_analysis/i18n/cs_CZ.po | 4 +- .../account_analytic_analysis/i18n/de_DE.po | 4 +- .../account_analytic_analysis/i18n/es_AR.po | 4 +- .../account_analytic_analysis/i18n/es_ES.po | 4 +- .../account_analytic_analysis/i18n/et_EE.po | 12 +- .../account_analytic_analysis/i18n/fr_FR.po | 4 +- .../account_analytic_analysis/i18n/hr_HR.po | 4 +- .../account_analytic_analysis/i18n/hu_HU.po | 4 +- .../account_analytic_analysis/i18n/it_IT.po | 50 +- .../account_analytic_analysis/i18n/ko_KO.po | 68 +- .../account_analytic_analysis/i18n/lt_LT.po | 4 +- .../account_analytic_analysis/i18n/nl_BE.po | 4 +- .../account_analytic_analysis/i18n/nl_NL.po | 4 +- .../account_analytic_analysis/i18n/pl_PL.po | 4 +- .../account_analytic_analysis/i18n/pt_BR.po | 4 +- .../account_analytic_analysis/i18n/pt_PT.po | 4 +- .../account_analytic_analysis/i18n/ro_RO.po | 4 +- .../account_analytic_analysis/i18n/ru_RU.po | 4 +- .../account_analytic_analysis/i18n/sl_SL.po | 4 +- .../account_analytic_analysis/i18n/sv_SE.po | 4 +- .../account_analytic_analysis/i18n/sv_SV.po | 13 +- .../account_analytic_analysis/i18n/tr_TR.po | 4 +- .../account_analytic_analysis/i18n/uk_UK.po | 4 +- .../account_analytic_analysis/i18n/zh_CN.po | 4 +- .../account_analytic_analysis/i18n/zh_TW.po | 4 +- .../i18n/account_analytic_default.pot | 4 +- addons/account_analytic_default/i18n/ar_AR.po | 4 +- addons/account_analytic_default/i18n/bg_BG.po | 4 +- addons/account_analytic_default/i18n/bs_BS.po | 4 +- addons/account_analytic_default/i18n/ca_ES.po | 4 +- addons/account_analytic_default/i18n/cs_CS.po | 9 +- addons/account_analytic_default/i18n/cs_CZ.po | 4 +- addons/account_analytic_default/i18n/de_DE.po | 4 +- addons/account_analytic_default/i18n/es_AR.po | 4 +- addons/account_analytic_default/i18n/es_ES.po | 4 +- addons/account_analytic_default/i18n/et_EE.po | 10 +- addons/account_analytic_default/i18n/fr_FR.po | 4 +- addons/account_analytic_default/i18n/hr_HR.po | 4 +- addons/account_analytic_default/i18n/hu_HU.po | 4 +- addons/account_analytic_default/i18n/it_IT.po | 4 +- addons/account_analytic_default/i18n/lt_LT.po | 4 +- addons/account_analytic_default/i18n/nl_BE.po | 4 +- addons/account_analytic_default/i18n/nl_NL.po | 4 +- addons/account_analytic_default/i18n/pl_PL.po | 4 +- addons/account_analytic_default/i18n/pt_BR.po | 4 +- addons/account_analytic_default/i18n/pt_PT.po | 4 +- addons/account_analytic_default/i18n/ro_RO.po | 4 +- addons/account_analytic_default/i18n/ru_RU.po | 4 +- addons/account_analytic_default/i18n/sl_SL.po | 4 +- addons/account_analytic_default/i18n/sv_SE.po | 4 +- addons/account_analytic_default/i18n/sv_SV.po | 9 +- addons/account_analytic_default/i18n/tr_TR.po | 4 +- addons/account_analytic_default/i18n/uk_UK.po | 4 +- addons/account_analytic_default/i18n/zh_CN.po | 4 +- addons/account_analytic_default/i18n/zh_TW.po | 4 +- .../i18n/account_analytic_plans.pot | 4 +- addons/account_analytic_plans/i18n/ar_AR.po | 4 +- addons/account_analytic_plans/i18n/bg_BG.po | 4 +- addons/account_analytic_plans/i18n/bs_BS.po | 4 +- addons/account_analytic_plans/i18n/ca_ES.po | 4 +- addons/account_analytic_plans/i18n/cs_CS.po | 60 +- addons/account_analytic_plans/i18n/cs_CZ.po | 4 +- addons/account_analytic_plans/i18n/de_DE.po | 4 +- addons/account_analytic_plans/i18n/es_AR.po | 4 +- addons/account_analytic_plans/i18n/es_ES.po | 4 +- addons/account_analytic_plans/i18n/et_EE.po | 6 +- addons/account_analytic_plans/i18n/fr_FR.po | 4 +- addons/account_analytic_plans/i18n/hr_HR.po | 4 +- addons/account_analytic_plans/i18n/hu_HU.po | 4 +- addons/account_analytic_plans/i18n/it_IT.po | 4 +- addons/account_analytic_plans/i18n/lt_LT.po | 4 +- addons/account_analytic_plans/i18n/nl_BE.po | 4 +- addons/account_analytic_plans/i18n/nl_NL.po | 4 +- addons/account_analytic_plans/i18n/pl_PL.po | 4 +- addons/account_analytic_plans/i18n/pt_BR.po | 4 +- addons/account_analytic_plans/i18n/pt_PT.po | 4 +- addons/account_analytic_plans/i18n/ro_RO.po | 4 +- addons/account_analytic_plans/i18n/ru_RU.po | 4 +- addons/account_analytic_plans/i18n/sl_SL.po | 4 +- addons/account_analytic_plans/i18n/sv_SE.po | 4 +- addons/account_analytic_plans/i18n/sv_SV.po | 60 +- addons/account_analytic_plans/i18n/tr_TR.po | 4 +- addons/account_analytic_plans/i18n/uk_UK.po | 4 +- addons/account_analytic_plans/i18n/zh_CN.po | 4 +- addons/account_analytic_plans/i18n/zh_TW.po | 4 +- .../account_balance/i18n/account_balance.pot | 4 +- addons/account_balance/i18n/ar_AR.po | 4 +- addons/account_balance/i18n/bg_BG.po | 4 +- addons/account_balance/i18n/bs_BS.po | 4 +- addons/account_balance/i18n/ca_ES.po | 4 +- addons/account_balance/i18n/cs_CS.po | 4 +- addons/account_balance/i18n/cs_CZ.po | 4 +- addons/account_balance/i18n/de_DE.po | 4 +- addons/account_balance/i18n/es_AR.po | 4 +- addons/account_balance/i18n/es_ES.po | 4 +- addons/account_balance/i18n/et_EE.po | 4 +- addons/account_balance/i18n/fr_FR.po | 4 +- addons/account_balance/i18n/hr_HR.po | 4 +- addons/account_balance/i18n/hu_HU.po | 4 +- addons/account_balance/i18n/id_ID.po | 247 +- addons/account_balance/i18n/it_IT.po | 4 +- addons/account_balance/i18n/lt_LT.po | 4 +- addons/account_balance/i18n/nl_BE.po | 4 +- addons/account_balance/i18n/nl_NL.po | 4 +- addons/account_balance/i18n/pl_PL.po | 4 +- addons/account_balance/i18n/pt_BR.po | 4 +- addons/account_balance/i18n/pt_PT.po | 4 +- addons/account_balance/i18n/ro_RO.po | 4 +- addons/account_balance/i18n/ru_RU.po | 4 +- addons/account_balance/i18n/sl_SL.po | 4 +- addons/account_balance/i18n/sv_SE.po | 4 +- addons/account_balance/i18n/sv_SV.po | 4 +- addons/account_balance/i18n/tr_TR.po | 4 +- addons/account_balance/i18n/uk_UK.po | 4 +- addons/account_balance/i18n/zh_CN.po | 4 +- addons/account_balance/i18n/zh_TW.po | 4 +- addons/account_budget/i18n/account_budget.pot | 14 +- addons/account_budget/i18n/ar_AR.po | 14 +- addons/account_budget/i18n/bg_BG.po | 14 +- addons/account_budget/i18n/bs_BS.po | 14 +- addons/account_budget/i18n/ca_ES.po | 14 +- addons/account_budget/i18n/cs_CS.po | 71 +- addons/account_budget/i18n/cs_CZ.po | 14 +- addons/account_budget/i18n/de_DE.po | 14 +- addons/account_budget/i18n/es_AR.po | 14 +- addons/account_budget/i18n/es_ES.po | 14 +- addons/account_budget/i18n/et_EE.po | 16 +- addons/account_budget/i18n/fr_FR.po | 14 +- addons/account_budget/i18n/hr_HR.po | 14 +- addons/account_budget/i18n/hu_HU.po | 14 +- addons/account_budget/i18n/it_IT.po | 14 +- addons/account_budget/i18n/lt_LT.po | 14 +- addons/account_budget/i18n/nl_BE.po | 14 +- addons/account_budget/i18n/nl_NL.po | 14 +- addons/account_budget/i18n/pl_PL.po | 14 +- addons/account_budget/i18n/pt_BR.po | 14 +- addons/account_budget/i18n/pt_PT.po | 14 +- addons/account_budget/i18n/ro_RO.po | 14 +- addons/account_budget/i18n/ru_RU.po | 14 +- addons/account_budget/i18n/sl_SL.po | 14 +- addons/account_budget/i18n/sv_SE.po | 14 +- addons/account_budget/i18n/sv_SV.po | 71 +- addons/account_budget/i18n/tr_TR.po | 14 +- addons/account_budget/i18n/uk_UK.po | 14 +- addons/account_budget/i18n/zh_CN.po | 14 +- addons/account_budget/i18n/zh_TW.po | 14 +- addons/account_chart/i18n/account_chart.pot | 4 +- addons/account_chart/i18n/ar_AR.po | 4 +- addons/account_chart/i18n/bg_BG.po | 4 +- addons/account_chart/i18n/bs_BS.po | 4 +- addons/account_chart/i18n/ca_ES.po | 4 +- addons/account_chart/i18n/cs_CS.po | 4 +- addons/account_chart/i18n/cs_CZ.po | 4 +- addons/account_chart/i18n/de_DE.po | 4 +- addons/account_chart/i18n/es_AR.po | 4 +- addons/account_chart/i18n/es_ES.po | 4 +- addons/account_chart/i18n/et_EE.po | 6 +- addons/account_chart/i18n/fr_FR.po | 4 +- addons/account_chart/i18n/hr_HR.po | 4 +- addons/account_chart/i18n/hu_HU.po | 4 +- addons/account_chart/i18n/it_IT.po | 4 +- addons/account_chart/i18n/lt_LT.po | 4 +- addons/account_chart/i18n/nl_BE.po | 4 +- addons/account_chart/i18n/nl_NL.po | 4 +- addons/account_chart/i18n/pl_PL.po | 4 +- addons/account_chart/i18n/pt_BR.po | 4 +- addons/account_chart/i18n/pt_PT.po | 4 +- addons/account_chart/i18n/ro_RO.po | 4 +- addons/account_chart/i18n/ru_RU.po | 4 +- addons/account_chart/i18n/sl_SL.po | 4 +- addons/account_chart/i18n/sv_SE.po | 4 +- addons/account_chart/i18n/sv_SV.po | 4 +- addons/account_chart/i18n/tr_TR.po | 4 +- addons/account_chart/i18n/uk_UK.po | 4 +- addons/account_chart/i18n/zh_CN.po | 4 +- addons/account_chart/i18n/zh_TW.po | 4 +- .../i18n/account_date_check.pot | 4 +- addons/account_date_check/i18n/ar_AR.po | 4 +- addons/account_date_check/i18n/bg_BG.po | 4 +- addons/account_date_check/i18n/bs_BS.po | 4 +- addons/account_date_check/i18n/ca_ES.po | 4 +- addons/account_date_check/i18n/cs_CS.po | 16 +- addons/account_date_check/i18n/cs_CZ.po | 4 +- addons/account_date_check/i18n/de_DE.po | 4 +- addons/account_date_check/i18n/es_AR.po | 4 +- addons/account_date_check/i18n/es_ES.po | 4 +- addons/account_date_check/i18n/et_EE.po | 4 +- addons/account_date_check/i18n/fr_FR.po | 4 +- addons/account_date_check/i18n/hr_HR.po | 4 +- addons/account_date_check/i18n/hu_HU.po | 4 +- addons/account_date_check/i18n/id_ID.po | 28 +- addons/account_date_check/i18n/it_IT.po | 4 +- addons/account_date_check/i18n/lt_LT.po | 4 +- addons/account_date_check/i18n/nl_BE.po | 4 +- addons/account_date_check/i18n/nl_NL.po | 4 +- addons/account_date_check/i18n/pl_PL.po | 4 +- addons/account_date_check/i18n/pt_BR.po | 4 +- addons/account_date_check/i18n/pt_PT.po | 4 +- addons/account_date_check/i18n/ro_RO.po | 4 +- addons/account_date_check/i18n/ru_RU.po | 4 +- addons/account_date_check/i18n/sl_SL.po | 4 +- addons/account_date_check/i18n/sv_SE.po | 4 +- addons/account_date_check/i18n/sv_SV.po | 16 +- addons/account_date_check/i18n/tr_TR.po | 4 +- addons/account_date_check/i18n/uk_UK.po | 4 +- addons/account_date_check/i18n/zh_CN.po | 4 +- addons/account_date_check/i18n/zh_TW.po | 4 +- .../i18n/account_followup.pot | 24 +- addons/account_followup/i18n/ar_AR.po | 24 +- addons/account_followup/i18n/bg_BG.po | 24 +- addons/account_followup/i18n/bs_BS.po | 24 +- addons/account_followup/i18n/ca_ES.po | 24 +- addons/account_followup/i18n/cs_CS.po | 111 +- addons/account_followup/i18n/cs_CZ.po | 24 +- addons/account_followup/i18n/de_DE.po | 24 +- addons/account_followup/i18n/es_AR.po | 24 +- addons/account_followup/i18n/es_ES.po | 24 +- addons/account_followup/i18n/et_EE.po | 26 +- addons/account_followup/i18n/fr_FR.po | 24 +- addons/account_followup/i18n/hr_HR.po | 24 +- addons/account_followup/i18n/hu_HU.po | 24 +- addons/account_followup/i18n/it_IT.po | 24 +- addons/account_followup/i18n/lt_LT.po | 24 +- addons/account_followup/i18n/nl_BE.po | 24 +- addons/account_followup/i18n/nl_NL.po | 24 +- addons/account_followup/i18n/pl_PL.po | 24 +- addons/account_followup/i18n/pt_BR.po | 24 +- addons/account_followup/i18n/pt_PT.po | 24 +- addons/account_followup/i18n/ro_RO.po | 24 +- addons/account_followup/i18n/ru_RU.po | 24 +- addons/account_followup/i18n/sl_SL.po | 24 +- addons/account_followup/i18n/sv_SE.po | 24 +- addons/account_followup/i18n/sv_SV.po | 111 +- addons/account_followup/i18n/tr_TR.po | 24 +- addons/account_followup/i18n/uk_UK.po | 24 +- addons/account_followup/i18n/zh_CN.po | 24 +- addons/account_followup/i18n/zh_TW.po | 24 +- .../i18n/account_invoice_layout.pot | 19 +- addons/account_invoice_layout/i18n/ar_AR.po | 19 +- addons/account_invoice_layout/i18n/bg_BG.po | 19 +- addons/account_invoice_layout/i18n/bs_BS.po | 19 +- addons/account_invoice_layout/i18n/ca_ES.po | 19 +- addons/account_invoice_layout/i18n/cs_CS.po | 22 +- addons/account_invoice_layout/i18n/cs_CZ.po | 19 +- addons/account_invoice_layout/i18n/de_DE.po | 19 +- addons/account_invoice_layout/i18n/es_AR.po | 19 +- addons/account_invoice_layout/i18n/es_ES.po | 19 +- addons/account_invoice_layout/i18n/et_EE.po | 21 +- addons/account_invoice_layout/i18n/fr_FR.po | 19 +- addons/account_invoice_layout/i18n/hr_HR.po | 19 +- addons/account_invoice_layout/i18n/hu_HU.po | 19 +- addons/account_invoice_layout/i18n/id_ID.po | 31 +- addons/account_invoice_layout/i18n/it_IT.po | 19 +- addons/account_invoice_layout/i18n/iu_IU.po | 11 +- addons/account_invoice_layout/i18n/lt_LT.po | 19 +- addons/account_invoice_layout/i18n/nb_NB.po | 151 +- addons/account_invoice_layout/i18n/nl_BE.po | 19 +- addons/account_invoice_layout/i18n/nl_NL.po | 19 +- addons/account_invoice_layout/i18n/pl_PL.po | 19 +- addons/account_invoice_layout/i18n/pt_BR.po | 19 +- addons/account_invoice_layout/i18n/pt_PT.po | 19 +- addons/account_invoice_layout/i18n/ro_RO.po | 19 +- addons/account_invoice_layout/i18n/ru_RU.po | 19 +- addons/account_invoice_layout/i18n/sl_SL.po | 19 +- addons/account_invoice_layout/i18n/sv_SE.po | 19 +- addons/account_invoice_layout/i18n/sv_SV.po | 22 +- addons/account_invoice_layout/i18n/tr_TR.po | 19 +- addons/account_invoice_layout/i18n/uk_UK.po | 19 +- addons/account_invoice_layout/i18n/zh_CN.po | 19 +- addons/account_invoice_layout/i18n/zh_TW.po | 19 +- .../account_payment/i18n/account_payment.pot | 4 +- addons/account_payment/i18n/ar_AR.po | 4 +- addons/account_payment/i18n/bg_BG.po | 4 +- addons/account_payment/i18n/bs_BS.po | 4 +- addons/account_payment/i18n/ca_ES.po | 4 +- addons/account_payment/i18n/cs_CS.po | 27 +- addons/account_payment/i18n/cs_CZ.po | 4 +- addons/account_payment/i18n/de_DE.po | 4 +- addons/account_payment/i18n/es_AR.po | 4 +- addons/account_payment/i18n/es_ES.po | 4 +- addons/account_payment/i18n/et_EE.po | 6 +- addons/account_payment/i18n/fr_FR.po | 4 +- addons/account_payment/i18n/hr_HR.po | 4 +- addons/account_payment/i18n/hu_HU.po | 4 +- addons/account_payment/i18n/it_IT.po | 4 +- addons/account_payment/i18n/lt_LT.po | 4 +- addons/account_payment/i18n/nl_BE.po | 4 +- addons/account_payment/i18n/nl_NL.po | 4 +- addons/account_payment/i18n/pl_PL.po | 4 +- addons/account_payment/i18n/pt_BR.po | 4 +- addons/account_payment/i18n/pt_PT.po | 4 +- addons/account_payment/i18n/ro_RO.po | 4 +- addons/account_payment/i18n/ru_RU.po | 4 +- addons/account_payment/i18n/sl_SL.po | 4 +- addons/account_payment/i18n/sv_SE.po | 4 +- addons/account_payment/i18n/sv_SV.po | 27 +- addons/account_payment/i18n/tr_TR.po | 4 +- addons/account_payment/i18n/uk_UK.po | 4 +- addons/account_payment/i18n/zh_CN.po | 4 +- addons/account_payment/i18n/zh_TW.po | 4 +- addons/account_report/i18n/account_report.pot | 4 +- addons/account_report/i18n/ar_AR.po | 4 +- addons/account_report/i18n/bg_BG.po | 4 +- addons/account_report/i18n/bs_BS.po | 4 +- addons/account_report/i18n/ca_ES.po | 4 +- addons/account_report/i18n/cs_CS.po | 21 +- addons/account_report/i18n/cs_CZ.po | 4 +- addons/account_report/i18n/de_DE.po | 4 +- addons/account_report/i18n/es_AR.po | 4 +- addons/account_report/i18n/es_ES.po | 4 +- addons/account_report/i18n/et_EE.po | 6 +- addons/account_report/i18n/fr_FR.po | 4 +- addons/account_report/i18n/hr_HR.po | 4 +- addons/account_report/i18n/hu_HU.po | 4 +- addons/account_report/i18n/it_IT.po | 4 +- addons/account_report/i18n/lt_LT.po | 4 +- addons/account_report/i18n/nl_BE.po | 4 +- addons/account_report/i18n/nl_NL.po | 4 +- addons/account_report/i18n/pl_PL.po | 4 +- addons/account_report/i18n/pt_BR.po | 4 +- addons/account_report/i18n/pt_PT.po | 4 +- addons/account_report/i18n/ro_RO.po | 4 +- addons/account_report/i18n/ru_RU.po | 4 +- addons/account_report/i18n/sl_SL.po | 4 +- addons/account_report/i18n/sv_SE.po | 4 +- addons/account_report/i18n/sv_SV.po | 21 +- addons/account_report/i18n/tr_TR.po | 4 +- addons/account_report/i18n/uk_UK.po | 4 +- addons/account_report/i18n/zh_CN.po | 4 +- addons/account_report/i18n/zh_TW.po | 4 +- .../i18n/account_reporting.pot | 4 +- addons/account_reporting/i18n/ar_AR.po | 4 +- addons/account_reporting/i18n/bg_BG.po | 4 +- addons/account_reporting/i18n/bs_BS.po | 4 +- addons/account_reporting/i18n/ca_ES.po | 4 +- addons/account_reporting/i18n/cs_CS.po | 9 +- addons/account_reporting/i18n/cs_CZ.po | 4 +- addons/account_reporting/i18n/de_DE.po | 4 +- addons/account_reporting/i18n/es_AR.po | 4 +- addons/account_reporting/i18n/es_ES.po | 4 +- addons/account_reporting/i18n/et_EE.po | 6 +- addons/account_reporting/i18n/fr_FR.po | 4 +- addons/account_reporting/i18n/hr_HR.po | 4 +- addons/account_reporting/i18n/hu_HU.po | 4 +- addons/account_reporting/i18n/id_ID.po | 135 +- addons/account_reporting/i18n/it_IT.po | 4 +- addons/account_reporting/i18n/lt_LT.po | 4 +- addons/account_reporting/i18n/nl_BE.po | 4 +- addons/account_reporting/i18n/nl_NL.po | 4 +- addons/account_reporting/i18n/pl_PL.po | 4 +- addons/account_reporting/i18n/pt_BR.po | 4 +- addons/account_reporting/i18n/pt_PT.po | 4 +- addons/account_reporting/i18n/ro_RO.po | 4 +- addons/account_reporting/i18n/ru_RU.po | 10 +- addons/account_reporting/i18n/sl_SL.po | 4 +- addons/account_reporting/i18n/sv_SE.po | 4 +- addons/account_reporting/i18n/sv_SV.po | 9 +- addons/account_reporting/i18n/tr_TR.po | 4 +- addons/account_reporting/i18n/uk_UK.po | 4 +- addons/account_reporting/i18n/zh_CN.po | 4 +- addons/account_reporting/i18n/zh_TW.po | 4 +- .../i18n/account_tax_include.pot | 4 +- addons/account_tax_include/i18n/ar_AR.po | 4 +- addons/account_tax_include/i18n/bg_BG.po | 4 +- addons/account_tax_include/i18n/bs_BS.po | 4 +- addons/account_tax_include/i18n/ca_ES.po | 4 +- addons/account_tax_include/i18n/cs_CS.po | 4 +- addons/account_tax_include/i18n/cs_CZ.po | 4 +- addons/account_tax_include/i18n/de_DE.po | 4 +- addons/account_tax_include/i18n/es_AR.po | 4 +- addons/account_tax_include/i18n/es_ES.po | 4 +- addons/account_tax_include/i18n/et_EE.po | 4 +- addons/account_tax_include/i18n/fr_FR.po | 4 +- addons/account_tax_include/i18n/hr_HR.po | 4 +- addons/account_tax_include/i18n/hu_HU.po | 4 +- addons/account_tax_include/i18n/it_IT.po | 4 +- addons/account_tax_include/i18n/lt_LT.po | 4 +- addons/account_tax_include/i18n/nl_BE.po | 4 +- addons/account_tax_include/i18n/nl_NL.po | 4 +- addons/account_tax_include/i18n/pl_PL.po | 4 +- addons/account_tax_include/i18n/pt_BR.po | 4 +- addons/account_tax_include/i18n/pt_PT.po | 4 +- addons/account_tax_include/i18n/ro_RO.po | 4 +- addons/account_tax_include/i18n/ru_RU.po | 4 +- addons/account_tax_include/i18n/sl_SL.po | 4 +- addons/account_tax_include/i18n/sv_SE.po | 4 +- addons/account_tax_include/i18n/sv_SV.po | 4 +- addons/account_tax_include/i18n/tr_TR.po | 4 +- addons/account_tax_include/i18n/uk_UK.po | 4 +- addons/account_tax_include/i18n/zh_CN.po | 4 +- addons/account_tax_include/i18n/zh_TW.po | 4 +- .../account_voucher/i18n/account_voucher.pot | 756 +- addons/account_voucher/i18n/ar_AR.po | 756 +- addons/account_voucher/i18n/bg_BG.po | 758 +- addons/account_voucher/i18n/bs_BS.po | 756 +- addons/account_voucher/i18n/ca_ES.po | 758 +- addons/account_voucher/i18n/cs_CS.po | 744 +- addons/account_voucher/i18n/cs_CZ.po | 756 +- addons/account_voucher/i18n/de_DE.po | 782 +- addons/account_voucher/i18n/es_AR.po | 756 +- addons/account_voucher/i18n/es_ES.po | 776 +- addons/account_voucher/i18n/et_EE.po | 768 +- addons/account_voucher/i18n/fr_FR.po | 768 +- addons/account_voucher/i18n/hr_HR.po | 756 +- addons/account_voucher/i18n/hu_HU.po | 756 +- addons/account_voucher/i18n/id_ID.po | 583 +- addons/account_voucher/i18n/it_IT.po | 758 +- addons/account_voucher/i18n/lt_LT.po | 758 +- addons/account_voucher/i18n/nl_BE.po | 756 +- addons/account_voucher/i18n/nl_NL.po | 758 +- addons/account_voucher/i18n/pl_PL.po | 758 +- addons/account_voucher/i18n/pt_BR.po | 758 +- addons/account_voucher/i18n/pt_PT.po | 788 +- addons/account_voucher/i18n/ro_RO.po | 756 +- addons/account_voucher/i18n/ru_RU.po | 758 +- addons/account_voucher/i18n/sl_SL.po | 758 +- addons/account_voucher/i18n/sv_SE.po | 756 +- addons/account_voucher/i18n/sv_SV.po | 744 +- addons/account_voucher/i18n/tr_TR.po | 758 +- addons/account_voucher/i18n/uk_UK.po | 758 +- addons/account_voucher/i18n/zh_CN.po | 756 +- addons/account_voucher/i18n/zh_TW.po | 756 +- .../i18n/analytic_journal_billing_rate.pot | 4 +- .../i18n/ar_AR.po | 4 +- .../i18n/bg_BG.po | 4 +- .../i18n/bs_BS.po | 4 +- .../i18n/ca_ES.po | 4 +- .../i18n/cs_CS.po | 4 +- .../i18n/cs_CZ.po | 4 +- .../i18n/de_DE.po | 4 +- .../i18n/es_AR.po | 4 +- .../i18n/es_ES.po | 4 +- .../i18n/et_EE.po | 4 +- .../i18n/fr_FR.po | 4 +- .../i18n/hr_HR.po | 4 +- .../i18n/hu_HU.po | 4 +- .../i18n/it_IT.po | 4 +- .../i18n/lt_LT.po | 4 +- .../i18n/nl_BE.po | 4 +- .../i18n/nl_NL.po | 4 +- .../i18n/pl_PL.po | 4 +- .../i18n/pt_BR.po | 4 +- .../i18n/pt_PT.po | 4 +- .../i18n/ro_RO.po | 4 +- .../i18n/ru_RU.po | 4 +- .../i18n/sl_SL.po | 4 +- .../i18n/sv_SE.po | 4 +- .../i18n/sv_SV.po | 4 +- .../i18n/tr_TR.po | 4 +- .../i18n/uk_UK.po | 4 +- .../i18n/zh_CN.po | 4 +- .../i18n/zh_TW.po | 4 +- .../i18n/analytic_user_function.pot | 4 +- addons/analytic_user_function/i18n/ar_AR.po | 4 +- addons/analytic_user_function/i18n/bg_BG.po | 4 +- addons/analytic_user_function/i18n/bs_BS.po | 4 +- addons/analytic_user_function/i18n/ca_ES.po | 4 +- addons/analytic_user_function/i18n/cs_CS.po | 18 +- addons/analytic_user_function/i18n/cs_CZ.po | 4 +- addons/analytic_user_function/i18n/de_DE.po | 4 +- addons/analytic_user_function/i18n/es_AR.po | 4 +- addons/analytic_user_function/i18n/es_ES.po | 4 +- addons/analytic_user_function/i18n/et_EE.po | 4 +- addons/analytic_user_function/i18n/fr_FR.po | 4 +- addons/analytic_user_function/i18n/hr_HR.po | 4 +- addons/analytic_user_function/i18n/hu_HU.po | 4 +- addons/analytic_user_function/i18n/it_IT.po | 4 +- addons/analytic_user_function/i18n/lt_LT.po | 4 +- addons/analytic_user_function/i18n/nl_BE.po | 4 +- addons/analytic_user_function/i18n/nl_NL.po | 4 +- addons/analytic_user_function/i18n/pl_PL.po | 4 +- addons/analytic_user_function/i18n/pt_BR.po | 4 +- addons/analytic_user_function/i18n/pt_PT.po | 4 +- addons/analytic_user_function/i18n/ro_RO.po | 4 +- addons/analytic_user_function/i18n/ru_RU.po | 4 +- addons/analytic_user_function/i18n/sl_SL.po | 4 +- addons/analytic_user_function/i18n/sv_SE.po | 4 +- addons/analytic_user_function/i18n/sv_SV.po | 20 +- addons/analytic_user_function/i18n/tr_TR.po | 4 +- addons/analytic_user_function/i18n/uk_UK.po | 4 +- addons/analytic_user_function/i18n/zh_CN.po | 4 +- addons/analytic_user_function/i18n/zh_TW.po | 4 +- addons/auction/i18n/ar_AR.po | 4 +- addons/auction/i18n/auction.pot | 4 +- addons/auction/i18n/bg_BG.po | 4 +- addons/auction/i18n/bs_BS.po | 4 +- addons/auction/i18n/ca_ES.po | 4 +- addons/auction/i18n/cs_CS.po | 53 +- addons/auction/i18n/cs_CZ.po | 4 +- addons/auction/i18n/de_DE.po | 4 +- addons/auction/i18n/es_AR.po | 4 +- addons/auction/i18n/es_ES.po | 4 +- addons/auction/i18n/et_EE.po | 18 +- addons/auction/i18n/fr_FR.po | 4 +- addons/auction/i18n/hr_HR.po | 4 +- addons/auction/i18n/hu_HU.po | 4 +- addons/auction/i18n/it_IT.po | 4 +- addons/auction/i18n/lt_LT.po | 4 +- addons/auction/i18n/nl_BE.po | 4 +- addons/auction/i18n/nl_NL.po | 4 +- addons/auction/i18n/pl_PL.po | 4 +- addons/auction/i18n/pt_BR.po | 4 +- addons/auction/i18n/pt_PT.po | 4 +- addons/auction/i18n/ro_RO.po | 4 +- addons/auction/i18n/ru_RU.po | 4 +- addons/auction/i18n/sl_SL.po | 4 +- addons/auction/i18n/sv_SE.po | 4 +- addons/auction/i18n/sv_SV.po | 55 +- addons/auction/i18n/tr_TR.po | 4 +- addons/auction/i18n/uk_UK.po | 4 +- addons/auction/i18n/zh_CN.po | 4 +- addons/auction/i18n/zh_TW.po | 4 +- addons/audittrail/i18n/ar_AR.po | 4 +- addons/audittrail/i18n/audittrail.pot | 4 +- addons/audittrail/i18n/bg_BG.po | 4 +- addons/audittrail/i18n/bs_BS.po | 4 +- addons/audittrail/i18n/ca_ES.po | 4 +- addons/audittrail/i18n/cs_CS.po | 25 +- addons/audittrail/i18n/cs_CZ.po | 4 +- addons/audittrail/i18n/de_DE.po | 4 +- addons/audittrail/i18n/es_AR.po | 4 +- addons/audittrail/i18n/es_ES.po | 4 +- addons/audittrail/i18n/et_EE.po | 6 +- addons/audittrail/i18n/fr_FR.po | 4 +- addons/audittrail/i18n/hr_HR.po | 4 +- addons/audittrail/i18n/hu_HU.po | 4 +- addons/audittrail/i18n/it_IT.po | 4 +- addons/audittrail/i18n/lt_LT.po | 4 +- addons/audittrail/i18n/nl_BE.po | 4 +- addons/audittrail/i18n/nl_NL.po | 4 +- addons/audittrail/i18n/pl_PL.po | 4 +- addons/audittrail/i18n/pt_BR.po | 4 +- addons/audittrail/i18n/pt_PT.po | 4 +- addons/audittrail/i18n/ro_RO.po | 4 +- addons/audittrail/i18n/ru_RU.po | 4 +- addons/audittrail/i18n/sl_SL.po | 4 +- addons/audittrail/i18n/sv_SE.po | 4 +- addons/audittrail/i18n/sv_SV.po | 25 +- addons/audittrail/i18n/tr_TR.po | 4 +- addons/audittrail/i18n/uk_UK.po | 4 +- addons/audittrail/i18n/zh_CN.po | 4 +- addons/audittrail/i18n/zh_TW.po | 4 +- addons/base_contact/i18n/ar_AR.po | 44 +- addons/base_contact/i18n/base_contact.pot | 44 +- addons/base_contact/i18n/bg_BG.po | 46 +- addons/base_contact/i18n/bs_BS.po | 44 +- addons/base_contact/i18n/ca_ES.po | 48 +- addons/base_contact/i18n/cs_CS.po | 53 +- addons/base_contact/i18n/cs_CZ.po | 44 +- addons/base_contact/i18n/de_DE.po | 48 +- addons/base_contact/i18n/es_AR.po | 44 +- addons/base_contact/i18n/es_ES.po | 48 +- addons/base_contact/i18n/et_EE.po | 52 +- addons/base_contact/i18n/fr_FR.po | 48 +- addons/base_contact/i18n/hr_HR.po | 44 +- addons/base_contact/i18n/hu_HU.po | 44 +- addons/base_contact/i18n/it_IT.po | 48 +- addons/base_contact/i18n/lt_LT.po | 44 +- addons/base_contact/i18n/nl_BE.po | 44 +- addons/base_contact/i18n/nl_NL.po | 48 +- addons/base_contact/i18n/pl_PL.po | 46 +- addons/base_contact/i18n/pt_BR.po | 48 +- addons/base_contact/i18n/pt_PT.po | 48 +- addons/base_contact/i18n/ro_RO.po | 44 +- addons/base_contact/i18n/ru_RU.po | 46 +- addons/base_contact/i18n/sl_SL.po | 46 +- addons/base_contact/i18n/sv_SE.po | 44 +- addons/base_contact/i18n/sv_SV.po | 53 +- addons/base_contact/i18n/tr_TR.po | 44 +- addons/base_contact/i18n/uk_UK.po | 44 +- addons/base_contact/i18n/zh_CN.po | 44 +- addons/base_contact/i18n/zh_TW.po | 44 +- addons/base_iban/i18n/ar_AR.po | 4 +- addons/base_iban/i18n/base_iban.pot | 4 +- addons/base_iban/i18n/bg_BG.po | 4 +- addons/base_iban/i18n/bs_BS.po | 4 +- addons/base_iban/i18n/ca_ES.po | 4 +- addons/base_iban/i18n/cs_CS.po | 4 +- addons/base_iban/i18n/cs_CZ.po | 4 +- addons/base_iban/i18n/de_DE.po | 4 +- addons/base_iban/i18n/es_AR.po | 4 +- addons/base_iban/i18n/es_ES.po | 4 +- addons/base_iban/i18n/et_EE.po | 6 +- addons/base_iban/i18n/fr_FR.po | 4 +- addons/base_iban/i18n/hr_HR.po | 4 +- addons/base_iban/i18n/hu_HU.po | 4 +- addons/base_iban/i18n/it_IT.po | 4 +- addons/base_iban/i18n/lt_LT.po | 4 +- addons/base_iban/i18n/nl_BE.po | 4 +- addons/base_iban/i18n/nl_NL.po | 4 +- addons/base_iban/i18n/pl_PL.po | 4 +- addons/base_iban/i18n/pt_BR.po | 4 +- addons/base_iban/i18n/pt_PT.po | 4 +- addons/base_iban/i18n/ro_RO.po | 4 +- addons/base_iban/i18n/ru_RU.po | 4 +- addons/base_iban/i18n/sl_SL.po | 4 +- addons/base_iban/i18n/sv_SE.po | 4 +- addons/base_iban/i18n/sv_SV.po | 4 +- addons/base_iban/i18n/tr_TR.po | 4 +- addons/base_iban/i18n/uk_UK.po | 4 +- addons/base_iban/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/zh_TW.po | 4 +- addons/base_module_merge/i18n/ar_AR.po | 4 +- .../i18n/base_module_merge.pot | 4 +- addons/base_module_merge/i18n/bg_BG.po | 4 +- addons/base_module_merge/i18n/bs_BS.po | 4 +- addons/base_module_merge/i18n/ca_ES.po | 4 +- addons/base_module_merge/i18n/cs_CS.po | 4 +- addons/base_module_merge/i18n/cs_CZ.po | 4 +- addons/base_module_merge/i18n/de_DE.po | 4 +- addons/base_module_merge/i18n/es_AR.po | 4 +- addons/base_module_merge/i18n/es_ES.po | 4 +- addons/base_module_merge/i18n/et_EE.po | 8 +- addons/base_module_merge/i18n/fr_FR.po | 4 +- addons/base_module_merge/i18n/hr_HR.po | 4 +- addons/base_module_merge/i18n/hu_HU.po | 4 +- addons/base_module_merge/i18n/it_IT.po | 4 +- addons/base_module_merge/i18n/lt_LT.po | 4 +- addons/base_module_merge/i18n/nl_BE.po | 4 +- addons/base_module_merge/i18n/nl_NL.po | 4 +- addons/base_module_merge/i18n/pl_PL.po | 4 +- addons/base_module_merge/i18n/pt_BR.po | 4 +- addons/base_module_merge/i18n/pt_PT.po | 4 +- addons/base_module_merge/i18n/ro_RO.po | 4 +- addons/base_module_merge/i18n/ru_RU.po | 4 +- addons/base_module_merge/i18n/sl_SL.po | 4 +- addons/base_module_merge/i18n/sv_SE.po | 4 +- addons/base_module_merge/i18n/sv_SV.po | 4 +- addons/base_module_merge/i18n/tr_TR.po | 4 +- addons/base_module_merge/i18n/uk_UK.po | 4 +- addons/base_module_merge/i18n/zh_CN.po | 4 +- addons/base_module_merge/i18n/zh_TW.po | 4 +- addons/base_module_publish/i18n/ar_AR.po | 4 +- .../i18n/base_module_publish.pot | 4 +- addons/base_module_publish/i18n/bg_BG.po | 4 +- addons/base_module_publish/i18n/bs_BS.po | 4 +- addons/base_module_publish/i18n/ca_ES.po | 4 +- addons/base_module_publish/i18n/cs_CS.po | 6 +- addons/base_module_publish/i18n/cs_CZ.po | 4 +- addons/base_module_publish/i18n/de_DE.po | 4 +- addons/base_module_publish/i18n/es_AR.po | 4 +- addons/base_module_publish/i18n/es_ES.po | 4 +- addons/base_module_publish/i18n/et_EE.po | 6 +- addons/base_module_publish/i18n/fr_FR.po | 4 +- addons/base_module_publish/i18n/hr_HR.po | 4 +- addons/base_module_publish/i18n/hu_HU.po | 4 +- addons/base_module_publish/i18n/it_IT.po | 4 +- addons/base_module_publish/i18n/lt_LT.po | 4 +- addons/base_module_publish/i18n/nl_BE.po | 4 +- addons/base_module_publish/i18n/nl_NL.po | 4 +- addons/base_module_publish/i18n/pl_PL.po | 4 +- addons/base_module_publish/i18n/pt_BR.po | 4 +- addons/base_module_publish/i18n/pt_PT.po | 4 +- addons/base_module_publish/i18n/ro_RO.po | 4 +- addons/base_module_publish/i18n/ru_RU.po | 4 +- addons/base_module_publish/i18n/sl_SL.po | 4 +- addons/base_module_publish/i18n/sv_SE.po | 4 +- addons/base_module_publish/i18n/sv_SV.po | 6 +- addons/base_module_publish/i18n/tr_TR.po | 4 +- addons/base_module_publish/i18n/uk_UK.po | 4 +- addons/base_module_publish/i18n/zh_CN.po | 4 +- addons/base_module_publish/i18n/zh_TW.po | 4 +- addons/base_module_record/i18n/ar_AR.po | 4 +- .../i18n/base_module_record.pot | 4 +- addons/base_module_record/i18n/bg_BG.po | 4 +- addons/base_module_record/i18n/bs_BS.po | 4 +- addons/base_module_record/i18n/ca_ES.po | 4 +- addons/base_module_record/i18n/cs_CS.po | 4 +- addons/base_module_record/i18n/cs_CZ.po | 4 +- addons/base_module_record/i18n/de_DE.po | 4 +- addons/base_module_record/i18n/es_AR.po | 4 +- addons/base_module_record/i18n/es_ES.po | 4 +- addons/base_module_record/i18n/et_EE.po | 4 +- addons/base_module_record/i18n/fr_FR.po | 4 +- addons/base_module_record/i18n/hr_HR.po | 4 +- addons/base_module_record/i18n/hu_HU.po | 4 +- addons/base_module_record/i18n/it_IT.po | 4 +- addons/base_module_record/i18n/lt_LT.po | 4 +- addons/base_module_record/i18n/nl_BE.po | 4 +- addons/base_module_record/i18n/nl_NL.po | 4 +- addons/base_module_record/i18n/pl_PL.po | 4 +- addons/base_module_record/i18n/pt_BR.po | 4 +- addons/base_module_record/i18n/pt_PT.po | 4 +- addons/base_module_record/i18n/ro_RO.po | 4 +- addons/base_module_record/i18n/ru_RU.po | 4 +- addons/base_module_record/i18n/sl_SL.po | 4 +- addons/base_module_record/i18n/sv_SE.po | 4 +- addons/base_module_record/i18n/sv_SV.po | 4 +- addons/base_module_record/i18n/tr_TR.po | 4 +- addons/base_module_record/i18n/uk_UK.po | 4 +- addons/base_module_record/i18n/zh_CN.po | 4 +- addons/base_module_record/i18n/zh_TW.po | 4 +- addons/base_report_creator/i18n/ar_AR.po | 10 +- .../i18n/base_report_creator.pot | 10 +- addons/base_report_creator/i18n/bg_BG.po | 10 +- addons/base_report_creator/i18n/bs_BS.po | 10 +- addons/base_report_creator/i18n/ca_ES.po | 10 +- addons/base_report_creator/i18n/cs_CS.po | 599 +- addons/base_report_creator/i18n/cs_CZ.po | 10 +- addons/base_report_creator/i18n/de_DE.po | 10 +- addons/base_report_creator/i18n/es_AR.po | 10 +- addons/base_report_creator/i18n/es_ES.po | 10 +- addons/base_report_creator/i18n/et_EE.po | 23 +- addons/base_report_creator/i18n/fr_FR.po | 10 +- addons/base_report_creator/i18n/hr_HR.po | 10 +- addons/base_report_creator/i18n/hu_HU.po | 10 +- addons/base_report_creator/i18n/it_IT.po | 10 +- addons/base_report_creator/i18n/lt_LT.po | 10 +- addons/base_report_creator/i18n/nl_BE.po | 10 +- addons/base_report_creator/i18n/nl_NL.po | 10 +- addons/base_report_creator/i18n/pl_PL.po | 10 +- addons/base_report_creator/i18n/pt_BR.po | 10 +- addons/base_report_creator/i18n/pt_PT.po | 10 +- addons/base_report_creator/i18n/ro_RO.po | 10 +- addons/base_report_creator/i18n/ru_RU.po | 10 +- addons/base_report_creator/i18n/sl_SL.po | 10 +- addons/base_report_creator/i18n/sv_SE.po | 10 +- addons/base_report_creator/i18n/sv_SV.po | 599 +- addons/base_report_creator/i18n/tr_TR.po | 10 +- addons/base_report_creator/i18n/uk_UK.po | 10 +- addons/base_report_creator/i18n/zh_CN.po | 10 +- addons/base_report_creator/i18n/zh_TW.po | 10 +- addons/base_report_designer/i18n/ar_AR.po | 4 +- .../i18n/base_report_designer.pot | 4 +- addons/base_report_designer/i18n/bg_BG.po | 4 +- addons/base_report_designer/i18n/bs_BS.po | 4 +- addons/base_report_designer/i18n/ca_ES.po | 4 +- addons/base_report_designer/i18n/cs_CS.po | 4 +- addons/base_report_designer/i18n/cs_CZ.po | 4 +- addons/base_report_designer/i18n/de_DE.po | 4 +- addons/base_report_designer/i18n/es_AR.po | 4 +- addons/base_report_designer/i18n/es_ES.po | 4 +- addons/base_report_designer/i18n/et_EE.po | 6 +- addons/base_report_designer/i18n/fr_FR.po | 4 +- addons/base_report_designer/i18n/hr_HR.po | 4 +- addons/base_report_designer/i18n/hu_HU.po | 4 +- addons/base_report_designer/i18n/it_IT.po | 4 +- addons/base_report_designer/i18n/lt_LT.po | 4 +- addons/base_report_designer/i18n/nl_BE.po | 4 +- addons/base_report_designer/i18n/nl_NL.po | 4 +- addons/base_report_designer/i18n/pl_PL.po | 4 +- addons/base_report_designer/i18n/pt_BR.po | 4 +- addons/base_report_designer/i18n/pt_PT.po | 4 +- addons/base_report_designer/i18n/ro_RO.po | 4 +- addons/base_report_designer/i18n/ru_RU.po | 4 +- addons/base_report_designer/i18n/sl_SL.po | 4 +- addons/base_report_designer/i18n/sv_SE.po | 4 +- addons/base_report_designer/i18n/sv_SV.po | 4 +- addons/base_report_designer/i18n/tr_TR.po | 4 +- addons/base_report_designer/i18n/uk_UK.po | 4 +- addons/base_report_designer/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/zh_TW.po | 4 +- addons/base_setup/i18n/ar_AR.po | 8 +- addons/base_setup/i18n/base_setup.pot | 8 +- addons/base_setup/i18n/bg_BG.po | 8 +- addons/base_setup/i18n/bs_BS.po | 8 +- addons/base_setup/i18n/ca_ES.po | 12 +- addons/base_setup/i18n/cs_CS.po | 4 +- addons/base_setup/i18n/cs_CZ.po | 8 +- addons/base_setup/i18n/de_DE.po | 12 +- addons/base_setup/i18n/es_AR.po | 8 +- addons/base_setup/i18n/es_ES.po | 12 +- addons/base_setup/i18n/et_EE.po | 14 +- addons/base_setup/i18n/fr_FR.po | 12 +- addons/base_setup/i18n/hr_HR.po | 8 +- addons/base_setup/i18n/hu_HU.po | 8 +- addons/base_setup/i18n/it_IT.po | 12 +- addons/base_setup/i18n/lt_LT.po | 8 +- addons/base_setup/i18n/nl_BE.po | 8 +- addons/base_setup/i18n/nl_NL.po | 12 +- addons/base_setup/i18n/pl_PL.po | 8 +- addons/base_setup/i18n/pt_BR.po | 46 +- addons/base_setup/i18n/pt_PT.po | 12 +- addons/base_setup/i18n/ro_RO.po | 8 +- addons/base_setup/i18n/ru_RU.po | 12 +- addons/base_setup/i18n/sl_SL.po | 12 +- addons/base_setup/i18n/sv_SE.po | 8 +- addons/base_setup/i18n/sv_SV.po | 4 +- addons/base_setup/i18n/tr_TR.po | 8 +- addons/base_setup/i18n/uk_UK.po | 8 +- addons/base_setup/i18n/zh_CN.po | 8 +- addons/base_setup/i18n/zh_TW.po | 8 +- addons/base_vat/i18n/ab_AB.po | 39 + addons/base_vat/i18n/ar_AR.po | 4 +- addons/base_vat/i18n/base_vat.pot | 4 +- addons/base_vat/i18n/bg_BG.po | 4 +- addons/base_vat/i18n/bs_BS.po | 4 +- addons/base_vat/i18n/ca_ES.po | 4 +- addons/base_vat/i18n/cs_CS.po | 4 +- addons/base_vat/i18n/cs_CZ.po | 4 +- addons/base_vat/i18n/de_DE.po | 4 +- addons/base_vat/i18n/es_AR.po | 4 +- addons/base_vat/i18n/es_ES.po | 4 +- addons/base_vat/i18n/et_EE.po | 8 +- addons/base_vat/i18n/fr_FR.po | 4 +- addons/base_vat/i18n/hr_HR.po | 4 +- addons/base_vat/i18n/hu_HU.po | 4 +- addons/base_vat/i18n/it_IT.po | 4 +- addons/base_vat/i18n/lt_LT.po | 4 +- addons/base_vat/i18n/nl_BE.po | 4 +- addons/base_vat/i18n/nl_NL.po | 4 +- addons/base_vat/i18n/pl_PL.po | 4 +- addons/base_vat/i18n/pt_BR.po | 4 +- addons/base_vat/i18n/pt_PT.po | 4 +- addons/base_vat/i18n/ro_RO.po | 4 +- addons/base_vat/i18n/ru_RU.po | 4 +- addons/base_vat/i18n/sl_SL.po | 4 +- addons/base_vat/i18n/sv_SE.po | 4 +- addons/base_vat/i18n/sv_SV.po | 4 +- addons/base_vat/i18n/tr_TR.po | 4 +- addons/base_vat/i18n/uk_UK.po | 4 +- addons/base_vat/i18n/zh_CN.po | 4 +- addons/base_vat/i18n/zh_TW.po | 4 +- addons/board/i18n/ar_AR.po | 4 +- addons/board/i18n/bg_BG.po | 4 +- addons/board/i18n/board.pot | 4 +- addons/board/i18n/bs_BS.po | 4 +- addons/board/i18n/ca_ES.po | 4 +- addons/board/i18n/cs_CS.po | 21 +- addons/board/i18n/cs_CZ.po | 4 +- addons/board/i18n/de_DE.po | 4 +- addons/board/i18n/es_AR.po | 4 +- addons/board/i18n/es_ES.po | 4 +- addons/board/i18n/et_EE.po | 14 +- addons/board/i18n/fr_FR.po | 4 +- addons/board/i18n/hr_HR.po | 4 +- addons/board/i18n/hu_HU.po | 4 +- addons/board/i18n/it_IT.po | 4 +- addons/board/i18n/lt_LT.po | 4 +- addons/board/i18n/nl_BE.po | 4 +- addons/board/i18n/nl_NL.po | 4 +- addons/board/i18n/pl_PL.po | 4 +- addons/board/i18n/pt_BR.po | 4 +- addons/board/i18n/pt_PT.po | 4 +- addons/board/i18n/ro_RO.po | 4 +- addons/board/i18n/ru_RU.po | 4 +- addons/board/i18n/sl_SL.po | 4 +- addons/board/i18n/sv_SE.po | 4 +- addons/board/i18n/sv_SV.po | 21 +- addons/board/i18n/tr_TR.po | 4 +- addons/board/i18n/uk_UK.po | 4 +- addons/board/i18n/zh_CN.po | 4 +- addons/board/i18n/zh_TW.po | 4 +- addons/board_account/i18n/ar_AR.po | 4 +- addons/board_account/i18n/bg_BG.po | 4 +- addons/board_account/i18n/board_account.pot | 4 +- addons/board_account/i18n/bs_BS.po | 4 +- addons/board_account/i18n/ca_ES.po | 4 +- addons/board_account/i18n/cs_CS.po | 9 +- addons/board_account/i18n/cs_CZ.po | 4 +- addons/board_account/i18n/de_DE.po | 4 +- addons/board_account/i18n/es_AR.po | 4 +- addons/board_account/i18n/es_ES.po | 4 +- addons/board_account/i18n/et_EE.po | 6 +- addons/board_account/i18n/fr_FR.po | 4 +- addons/board_account/i18n/hr_HR.po | 4 +- addons/board_account/i18n/hu_HU.po | 4 +- addons/board_account/i18n/it_IT.po | 4 +- addons/board_account/i18n/lt_LT.po | 4 +- addons/board_account/i18n/nl_BE.po | 4 +- addons/board_account/i18n/nl_NL.po | 4 +- addons/board_account/i18n/pl_PL.po | 4 +- addons/board_account/i18n/pt_BR.po | 4 +- addons/board_account/i18n/pt_PT.po | 4 +- addons/board_account/i18n/ro_RO.po | 4 +- addons/board_account/i18n/ru_RU.po | 4 +- addons/board_account/i18n/sl_SL.po | 4 +- addons/board_account/i18n/sv_SE.po | 4 +- addons/board_account/i18n/sv_SV.po | 9 +- addons/board_account/i18n/tr_TR.po | 4 +- addons/board_account/i18n/uk_UK.po | 4 +- addons/board_account/i18n/zh_CN.po | 4 +- addons/board_account/i18n/zh_TW.po | 4 +- addons/board_association/i18n/ar_AR.po | 4 +- addons/board_association/i18n/bg_BG.po | 4 +- .../i18n/board_association.pot | 4 +- addons/board_association/i18n/bs_BS.po | 4 +- addons/board_association/i18n/ca_ES.po | 4 +- addons/board_association/i18n/cs_CS.po | 9 +- addons/board_association/i18n/cs_CZ.po | 4 +- addons/board_association/i18n/de_DE.po | 4 +- addons/board_association/i18n/es_AR.po | 4 +- addons/board_association/i18n/es_ES.po | 4 +- addons/board_association/i18n/et_EE.po | 6 +- addons/board_association/i18n/fr_FR.po | 4 +- addons/board_association/i18n/hr_HR.po | 4 +- addons/board_association/i18n/hu_HU.po | 4 +- addons/board_association/i18n/it_IT.po | 4 +- addons/board_association/i18n/lt_LT.po | 4 +- addons/board_association/i18n/nl_BE.po | 4 +- addons/board_association/i18n/nl_NL.po | 4 +- addons/board_association/i18n/pl_PL.po | 4 +- addons/board_association/i18n/pt_BR.po | 4 +- addons/board_association/i18n/pt_PT.po | 4 +- addons/board_association/i18n/ro_RO.po | 4 +- addons/board_association/i18n/ru_RU.po | 4 +- addons/board_association/i18n/sl_SL.po | 4 +- addons/board_association/i18n/sv_SE.po | 4 +- addons/board_association/i18n/sv_SV.po | 9 +- addons/board_association/i18n/tr_TR.po | 4 +- addons/board_association/i18n/uk_UK.po | 4 +- addons/board_association/i18n/zh_CN.po | 4 +- addons/board_association/i18n/zh_TW.po | 4 +- addons/board_auction/i18n/ar_AR.po | 4 +- addons/board_auction/i18n/bg_BG.po | 4 +- addons/board_auction/i18n/board_auction.pot | 4 +- addons/board_auction/i18n/bs_BS.po | 4 +- addons/board_auction/i18n/ca_ES.po | 4 +- addons/board_auction/i18n/cs_CS.po | 13 +- addons/board_auction/i18n/cs_CZ.po | 4 +- addons/board_auction/i18n/de_DE.po | 4 +- addons/board_auction/i18n/es_AR.po | 4 +- addons/board_auction/i18n/es_ES.po | 4 +- addons/board_auction/i18n/et_EE.po | 6 +- addons/board_auction/i18n/fr_FR.po | 4 +- addons/board_auction/i18n/hr_HR.po | 4 +- addons/board_auction/i18n/hu_HU.po | 4 +- addons/board_auction/i18n/it_IT.po | 4 +- addons/board_auction/i18n/lt_LT.po | 4 +- addons/board_auction/i18n/nl_BE.po | 4 +- addons/board_auction/i18n/nl_NL.po | 4 +- addons/board_auction/i18n/pl_PL.po | 4 +- addons/board_auction/i18n/pt_BR.po | 4 +- addons/board_auction/i18n/pt_PT.po | 4 +- addons/board_auction/i18n/ro_RO.po | 4 +- addons/board_auction/i18n/ru_RU.po | 4 +- addons/board_auction/i18n/sl_SL.po | 4 +- addons/board_auction/i18n/sv_SE.po | 4 +- addons/board_auction/i18n/sv_SV.po | 13 +- addons/board_auction/i18n/tr_TR.po | 4 +- addons/board_auction/i18n/uk_UK.po | 4 +- addons/board_auction/i18n/zh_CN.po | 4 +- addons/board_auction/i18n/zh_TW.po | 4 +- addons/board_crm_configuration/i18n/ar_AR.po | 4 +- addons/board_crm_configuration/i18n/bg_BG.po | 4 +- .../i18n/board_crm_configuration.pot | 4 +- addons/board_crm_configuration/i18n/bs_BS.po | 4 +- addons/board_crm_configuration/i18n/ca_ES.po | 4 +- addons/board_crm_configuration/i18n/cs_CS.po | 9 +- addons/board_crm_configuration/i18n/cs_CZ.po | 4 +- addons/board_crm_configuration/i18n/de_DE.po | 4 +- addons/board_crm_configuration/i18n/es_AR.po | 4 +- addons/board_crm_configuration/i18n/es_ES.po | 4 +- addons/board_crm_configuration/i18n/et_EE.po | 6 +- addons/board_crm_configuration/i18n/fr_FR.po | 4 +- addons/board_crm_configuration/i18n/hr_HR.po | 4 +- addons/board_crm_configuration/i18n/hu_HU.po | 4 +- addons/board_crm_configuration/i18n/it_IT.po | 4 +- addons/board_crm_configuration/i18n/lt_LT.po | 4 +- addons/board_crm_configuration/i18n/nl_BE.po | 4 +- addons/board_crm_configuration/i18n/nl_NL.po | 4 +- addons/board_crm_configuration/i18n/pl_PL.po | 4 +- addons/board_crm_configuration/i18n/pt_BR.po | 4 +- addons/board_crm_configuration/i18n/pt_PT.po | 4 +- addons/board_crm_configuration/i18n/ro_RO.po | 4 +- addons/board_crm_configuration/i18n/ru_RU.po | 4 +- addons/board_crm_configuration/i18n/sl_SL.po | 4 +- addons/board_crm_configuration/i18n/sv_SE.po | 4 +- addons/board_crm_configuration/i18n/sv_SV.po | 9 +- addons/board_crm_configuration/i18n/tr_TR.po | 4 +- addons/board_crm_configuration/i18n/uk_UK.po | 4 +- addons/board_crm_configuration/i18n/zh_CN.po | 4 +- addons/board_crm_configuration/i18n/zh_TW.po | 4 +- addons/board_document/i18n/ar_AR.po | 4 +- addons/board_document/i18n/bg_BG.po | 4 +- addons/board_document/i18n/board_document.pot | 4 +- addons/board_document/i18n/bs_BS.po | 4 +- addons/board_document/i18n/ca_ES.po | 4 +- addons/board_document/i18n/cs_CS.po | 19 +- addons/board_document/i18n/cs_CZ.po | 4 +- addons/board_document/i18n/de_DE.po | 4 +- addons/board_document/i18n/es_AR.po | 4 +- addons/board_document/i18n/es_ES.po | 4 +- addons/board_document/i18n/et_EE.po | 6 +- addons/board_document/i18n/fr_FR.po | 4 +- addons/board_document/i18n/hr_HR.po | 4 +- addons/board_document/i18n/hu_HU.po | 4 +- addons/board_document/i18n/it_IT.po | 4 +- addons/board_document/i18n/lt_LT.po | 4 +- addons/board_document/i18n/nl_BE.po | 4 +- addons/board_document/i18n/nl_NL.po | 4 +- addons/board_document/i18n/pl_PL.po | 4 +- addons/board_document/i18n/pt_BR.po | 4 +- addons/board_document/i18n/pt_PT.po | 4 +- addons/board_document/i18n/ro_RO.po | 4 +- addons/board_document/i18n/ru_RU.po | 4 +- addons/board_document/i18n/sl_SL.po | 4 +- addons/board_document/i18n/sv_SE.po | 4 +- addons/board_document/i18n/sv_SV.po | 19 +- addons/board_document/i18n/tr_TR.po | 4 +- addons/board_document/i18n/uk_UK.po | 4 +- addons/board_document/i18n/zh_CN.po | 4 +- addons/board_document/i18n/zh_TW.po | 4 +- addons/board_manufacturing/i18n/ar_AR.po | 4 +- addons/board_manufacturing/i18n/bg_BG.po | 4 +- .../i18n/board_manufacturing.pot | 4 +- addons/board_manufacturing/i18n/bs_BS.po | 4 +- addons/board_manufacturing/i18n/ca_ES.po | 4 +- addons/board_manufacturing/i18n/cs_CS.po | 13 +- addons/board_manufacturing/i18n/cs_CZ.po | 4 +- addons/board_manufacturing/i18n/de_DE.po | 4 +- addons/board_manufacturing/i18n/es_AR.po | 4 +- addons/board_manufacturing/i18n/es_ES.po | 4 +- addons/board_manufacturing/i18n/et_EE.po | 6 +- addons/board_manufacturing/i18n/fr_FR.po | 4 +- addons/board_manufacturing/i18n/hr_HR.po | 4 +- addons/board_manufacturing/i18n/hu_HU.po | 4 +- addons/board_manufacturing/i18n/it_IT.po | 4 +- addons/board_manufacturing/i18n/lt_LT.po | 4 +- addons/board_manufacturing/i18n/nl_BE.po | 4 +- addons/board_manufacturing/i18n/nl_NL.po | 4 +- addons/board_manufacturing/i18n/pl_PL.po | 4 +- addons/board_manufacturing/i18n/pt_BR.po | 4 +- addons/board_manufacturing/i18n/pt_PT.po | 4 +- addons/board_manufacturing/i18n/ro_RO.po | 4 +- addons/board_manufacturing/i18n/ru_RU.po | 4 +- addons/board_manufacturing/i18n/sl_SL.po | 4 +- addons/board_manufacturing/i18n/sv_SE.po | 4 +- addons/board_manufacturing/i18n/sv_SV.po | 13 +- addons/board_manufacturing/i18n/tr_TR.po | 4 +- addons/board_manufacturing/i18n/uk_UK.po | 4 +- addons/board_manufacturing/i18n/zh_CN.po | 4 +- addons/board_manufacturing/i18n/zh_TW.po | 4 +- addons/board_project/i18n/ar_AR.po | 4 +- addons/board_project/i18n/bg_BG.po | 4 +- addons/board_project/i18n/board_project.pot | 4 +- addons/board_project/i18n/bs_BS.po | 4 +- addons/board_project/i18n/ca_ES.po | 4 +- addons/board_project/i18n/cs_CS.po | 9 +- addons/board_project/i18n/cs_CZ.po | 4 +- addons/board_project/i18n/de_DE.po | 4 +- addons/board_project/i18n/es_AR.po | 4 +- addons/board_project/i18n/es_ES.po | 4 +- addons/board_project/i18n/et_EE.po | 8 +- addons/board_project/i18n/fr_FR.po | 4 +- addons/board_project/i18n/hr_HR.po | 4 +- addons/board_project/i18n/hu_HU.po | 4 +- addons/board_project/i18n/it_IT.po | 4 +- addons/board_project/i18n/lt_LT.po | 4 +- addons/board_project/i18n/nl_BE.po | 4 +- addons/board_project/i18n/nl_NL.po | 4 +- addons/board_project/i18n/pl_PL.po | 4 +- addons/board_project/i18n/pt_BR.po | 4 +- addons/board_project/i18n/pt_PT.po | 4 +- addons/board_project/i18n/ro_RO.po | 4 +- addons/board_project/i18n/ru_RU.po | 4 +- addons/board_project/i18n/sl_SL.po | 4 +- addons/board_project/i18n/sv_SE.po | 4 +- addons/board_project/i18n/sv_SV.po | 9 +- addons/board_project/i18n/tr_TR.po | 4 +- addons/board_project/i18n/uk_UK.po | 4 +- addons/board_project/i18n/zh_CN.po | 4 +- addons/board_project/i18n/zh_TW.po | 4 +- addons/board_sale/i18n/ar_AR.po | 4 +- addons/board_sale/i18n/bg_BG.po | 4 +- addons/board_sale/i18n/board_sale.pot | 4 +- addons/board_sale/i18n/bs_BS.po | 4 +- addons/board_sale/i18n/ca_ES.po | 4 +- addons/board_sale/i18n/cs_CS.po | 9 +- addons/board_sale/i18n/cs_CZ.po | 4 +- addons/board_sale/i18n/de_DE.po | 4 +- addons/board_sale/i18n/es_AR.po | 4 +- addons/board_sale/i18n/es_ES.po | 4 +- addons/board_sale/i18n/et_EE.po | 6 +- addons/board_sale/i18n/fr_FR.po | 4 +- addons/board_sale/i18n/hr_HR.po | 4 +- addons/board_sale/i18n/hu_HU.po | 4 +- addons/board_sale/i18n/it_IT.po | 4 +- addons/board_sale/i18n/lt_LT.po | 4 +- addons/board_sale/i18n/nl_BE.po | 4 +- addons/board_sale/i18n/nl_NL.po | 4 +- addons/board_sale/i18n/pl_PL.po | 4 +- addons/board_sale/i18n/pt_BR.po | 4 +- addons/board_sale/i18n/pt_PT.po | 4 +- addons/board_sale/i18n/ro_RO.po | 4 +- addons/board_sale/i18n/ru_RU.po | 4 +- addons/board_sale/i18n/sl_SL.po | 4 +- addons/board_sale/i18n/sv_SE.po | 4 +- addons/board_sale/i18n/sv_SV.po | 9 +- addons/board_sale/i18n/tr_TR.po | 4 +- addons/board_sale/i18n/uk_UK.po | 4 +- addons/board_sale/i18n/zh_CN.po | 4 +- addons/board_sale/i18n/zh_TW.po | 4 +- addons/crm/i18n/ar_AR.po | 93 +- addons/crm/i18n/bg_BG.po | 93 +- addons/crm/i18n/bs_BS.po | 93 +- addons/crm/i18n/ca_ES.po | 107 +- addons/crm/i18n/crm.pot | 93 +- addons/crm/i18n/cs_CS.po | 140 +- addons/crm/i18n/cs_CZ.po | 93 +- addons/crm/i18n/de_DE.po | 107 +- addons/crm/i18n/es_AR.po | 97 +- addons/crm/i18n/es_ES.po | 107 +- addons/crm/i18n/et_EE.po | 103 +- addons/crm/i18n/fr_FR.po | 107 +- addons/crm/i18n/hr_HR.po | 93 +- addons/crm/i18n/hu_HU.po | 93 +- addons/crm/i18n/it_IT.po | 107 +- addons/crm/i18n/lt_LT.po | 93 +- addons/crm/i18n/nl_BE.po | 93 +- addons/crm/i18n/nl_NL.po | 107 +- addons/crm/i18n/pl_PL.po | 93 +- addons/crm/i18n/pt_BR.po | 107 +- addons/crm/i18n/pt_PT.po | 107 +- addons/crm/i18n/ro_RO.po | 95 +- addons/crm/i18n/ru_RU.po | 105 +- addons/crm/i18n/sl_SL.po | 93 +- addons/crm/i18n/sv_SE.po | 95 +- addons/crm/i18n/sv_SV.po | 142 +- addons/crm/i18n/tr_TR.po | 93 +- addons/crm/i18n/uk_UK.po | 101 +- addons/crm/i18n/zh_CN.po | 101 +- addons/crm/i18n/zh_TW.po | 95 +- addons/crm_configuration/i18n/ar_AR.po | 81 +- addons/crm_configuration/i18n/bg_BG.po | 81 +- addons/crm_configuration/i18n/bs_BS.po | 81 +- addons/crm_configuration/i18n/ca_ES.po | 89 +- .../i18n/crm_configuration.pot | 81 +- addons/crm_configuration/i18n/cs_CS.po | 125 +- addons/crm_configuration/i18n/cs_CZ.po | 81 +- addons/crm_configuration/i18n/de_DE.po | 89 +- addons/crm_configuration/i18n/es_AR.po | 81 +- addons/crm_configuration/i18n/es_ES.po | 89 +- addons/crm_configuration/i18n/et_EE.po | 89 +- addons/crm_configuration/i18n/fr_FR.po | 89 +- addons/crm_configuration/i18n/hr_HR.po | 81 +- addons/crm_configuration/i18n/hu_HU.po | 81 +- addons/crm_configuration/i18n/it_IT.po | 89 +- addons/crm_configuration/i18n/lt_LT.po | 81 +- addons/crm_configuration/i18n/nl_BE.po | 81 +- addons/crm_configuration/i18n/nl_NL.po | 81 +- addons/crm_configuration/i18n/pl_PL.po | 81 +- addons/crm_configuration/i18n/pt_BR.po | 89 +- addons/crm_configuration/i18n/pt_PT.po | 87 +- addons/crm_configuration/i18n/ro_RO.po | 81 +- addons/crm_configuration/i18n/ru_RU.po | 81 +- addons/crm_configuration/i18n/sl_SL.po | 81 +- addons/crm_configuration/i18n/sv_SE.po | 81 +- addons/crm_configuration/i18n/sv_SV.po | 127 +- addons/crm_configuration/i18n/tr_TR.po | 81 +- addons/crm_configuration/i18n/uk_UK.po | 81 +- addons/crm_configuration/i18n/zh_CN.po | 81 +- addons/crm_configuration/i18n/zh_TW.po | 81 +- addons/crm_profiling/i18n/ar_AR.po | 4 +- addons/crm_profiling/i18n/bg_BG.po | 4 +- addons/crm_profiling/i18n/bs_BS.po | 4 +- addons/crm_profiling/i18n/ca_ES.po | 4 +- addons/crm_profiling/i18n/crm_profiling.pot | 4 +- addons/crm_profiling/i18n/cs_CS.po | 9 +- addons/crm_profiling/i18n/cs_CZ.po | 4 +- addons/crm_profiling/i18n/de_DE.po | 4 +- addons/crm_profiling/i18n/es_AR.po | 4 +- addons/crm_profiling/i18n/es_ES.po | 4 +- addons/crm_profiling/i18n/et_EE.po | 6 +- addons/crm_profiling/i18n/fr_FR.po | 4 +- addons/crm_profiling/i18n/hr_HR.po | 4 +- addons/crm_profiling/i18n/hu_HU.po | 4 +- addons/crm_profiling/i18n/it_IT.po | 4 +- addons/crm_profiling/i18n/lt_LT.po | 4 +- addons/crm_profiling/i18n/nl_BE.po | 4 +- addons/crm_profiling/i18n/nl_NL.po | 4 +- addons/crm_profiling/i18n/pl_PL.po | 4 +- addons/crm_profiling/i18n/pt_BR.po | 4 +- addons/crm_profiling/i18n/pt_PT.po | 4 +- addons/crm_profiling/i18n/ro_RO.po | 4 +- addons/crm_profiling/i18n/ru_RU.po | 4 +- addons/crm_profiling/i18n/sl_SL.po | 4 +- addons/crm_profiling/i18n/sv_SE.po | 4 +- addons/crm_profiling/i18n/sv_SV.po | 9 +- addons/crm_profiling/i18n/tr_TR.po | 4 +- addons/crm_profiling/i18n/uk_UK.po | 4 +- addons/crm_profiling/i18n/zh_CN.po | 4 +- addons/crm_profiling/i18n/zh_TW.po | 4 +- addons/crm_vertical/i18n/ar_AR.po | 4 +- addons/crm_vertical/i18n/bg_BG.po | 4 +- addons/crm_vertical/i18n/bs_BS.po | 4 +- addons/crm_vertical/i18n/ca_ES.po | 4 +- addons/crm_vertical/i18n/crm_vertical.pot | 4 +- addons/crm_vertical/i18n/cs_CS.po | 10 +- addons/crm_vertical/i18n/cs_CZ.po | 4 +- addons/crm_vertical/i18n/de_DE.po | 4 +- addons/crm_vertical/i18n/es_AR.po | 4 +- addons/crm_vertical/i18n/es_ES.po | 4 +- addons/crm_vertical/i18n/et_EE.po | 4 +- addons/crm_vertical/i18n/fr_FR.po | 4 +- addons/crm_vertical/i18n/hr_HR.po | 4 +- addons/crm_vertical/i18n/hu_HU.po | 4 +- addons/crm_vertical/i18n/it_IT.po | 4 +- addons/crm_vertical/i18n/lt_LT.po | 4 +- addons/crm_vertical/i18n/nl_BE.po | 4 +- addons/crm_vertical/i18n/nl_NL.po | 4 +- addons/crm_vertical/i18n/pl_PL.po | 4 +- addons/crm_vertical/i18n/pt_BR.po | 4 +- addons/crm_vertical/i18n/pt_PT.po | 4 +- addons/crm_vertical/i18n/ro_RO.po | 4 +- addons/crm_vertical/i18n/ru_RU.po | 4 +- addons/crm_vertical/i18n/sl_SL.po | 4 +- addons/crm_vertical/i18n/sv_SE.po | 4 +- addons/crm_vertical/i18n/sv_SV.po | 10 +- addons/crm_vertical/i18n/tr_TR.po | 4 +- addons/crm_vertical/i18n/uk_UK.po | 4 +- addons/crm_vertical/i18n/zh_CN.po | 4 +- addons/crm_vertical/i18n/zh_TW.po | 4 +- addons/delivery/i18n/ar_AR.po | 4 +- addons/delivery/i18n/bg_BG.po | 4 +- addons/delivery/i18n/bs_BS.po | 4 +- addons/delivery/i18n/ca_ES.po | 4 +- addons/delivery/i18n/cs_CS.po | 9 +- addons/delivery/i18n/cs_CZ.po | 4 +- addons/delivery/i18n/de_DE.po | 4 +- addons/delivery/i18n/delivery.pot | 4 +- addons/delivery/i18n/es_AR.po | 4 +- addons/delivery/i18n/es_ES.po | 4 +- addons/delivery/i18n/et_EE.po | 14 +- addons/delivery/i18n/fr_FR.po | 4 +- addons/delivery/i18n/hr_HR.po | 4 +- addons/delivery/i18n/hu_HU.po | 4 +- addons/delivery/i18n/it_IT.po | 4 +- addons/delivery/i18n/lt_LT.po | 4 +- addons/delivery/i18n/nl_BE.po | 4 +- addons/delivery/i18n/nl_NL.po | 4 +- addons/delivery/i18n/pl_PL.po | 4 +- addons/delivery/i18n/pt_BR.po | 4 +- addons/delivery/i18n/pt_PT.po | 4 +- addons/delivery/i18n/ro_RO.po | 4 +- addons/delivery/i18n/ru_RU.po | 4 +- addons/delivery/i18n/sl_SL.po | 4 +- addons/delivery/i18n/sv_SE.po | 4 +- addons/delivery/i18n/sv_SV.po | 9 +- addons/delivery/i18n/tr_TR.po | 4 +- addons/delivery/i18n/uk_UK.po | 4 +- addons/delivery/i18n/zh_CN.po | 4 +- addons/delivery/i18n/zh_TW.po | 4 +- addons/document/i18n/ar_AR.po | 4 +- addons/document/i18n/bg_BG.po | 4 +- addons/document/i18n/bs_BS.po | 4 +- addons/document/i18n/ca_ES.po | 4 +- addons/document/i18n/cs_CS.po | 717 +- addons/document/i18n/cs_CZ.po | 4 +- addons/document/i18n/de_DE.po | 4 +- addons/document/i18n/document.pot | 4 +- addons/document/i18n/es_AR.po | 4 +- addons/document/i18n/es_ES.po | 4 +- addons/document/i18n/et_EE.po | 12 +- addons/document/i18n/fr_FR.po | 4 +- addons/document/i18n/hr_HR.po | 4 +- addons/document/i18n/hu_HU.po | 4 +- addons/document/i18n/it_IT.po | 4 +- addons/document/i18n/lt_LT.po | 4 +- addons/document/i18n/nl_BE.po | 4 +- addons/document/i18n/nl_NL.po | 4 +- addons/document/i18n/pl_PL.po | 4 +- addons/document/i18n/pt_BR.po | 4 +- addons/document/i18n/pt_PT.po | 4 +- addons/document/i18n/ro_RO.po | 4 +- addons/document/i18n/ru_RU.po | 4 +- addons/document/i18n/sl_SL.po | 4 +- addons/document/i18n/sv_SE.po | 4 +- addons/document/i18n/sv_SV.po | 717 +- addons/document/i18n/tr_TR.po | 4 +- addons/document/i18n/uk_UK.po | 4 +- addons/document/i18n/zh_CN.po | 4 +- addons/document/i18n/zh_TW.po | 4 +- addons/document_ics/i18n/ar_AR.po | 186 +- addons/document_ics/i18n/bg_BG.po | 186 +- addons/document_ics/i18n/bs_BS.po | 186 +- addons/document_ics/i18n/ca_ES.po | 196 +- addons/document_ics/i18n/cs_CS.po | 190 +- addons/document_ics/i18n/cs_CZ.po | 186 +- addons/document_ics/i18n/de_DE.po | 196 +- addons/document_ics/i18n/document_ics.pot | 186 +- addons/document_ics/i18n/es_AR.po | 186 +- addons/document_ics/i18n/es_ES.po | 196 +- addons/document_ics/i18n/et_EE.po | 194 +- addons/document_ics/i18n/fr_FR.po | 196 +- addons/document_ics/i18n/hr_HR.po | 186 +- addons/document_ics/i18n/hu_HU.po | 186 +- addons/document_ics/i18n/it_IT.po | 186 +- addons/document_ics/i18n/lt_LT.po | 186 +- addons/document_ics/i18n/nl_BE.po | 186 +- addons/document_ics/i18n/nl_NL.po | 186 +- addons/document_ics/i18n/pl_PL.po | 188 +- addons/document_ics/i18n/pt_BR.po | 186 +- addons/document_ics/i18n/pt_PT.po | 196 +- addons/document_ics/i18n/ro_RO.po | 186 +- addons/document_ics/i18n/ru_RU.po | 186 +- addons/document_ics/i18n/sl_SL.po | 186 +- addons/document_ics/i18n/sv_SE.po | 186 +- addons/document_ics/i18n/sv_SV.po | 190 +- addons/document_ics/i18n/tr_TR.po | 186 +- addons/document_ics/i18n/uk_UK.po | 186 +- addons/document_ics/i18n/zh_CN.po | 186 +- addons/document_ics/i18n/zh_TW.po | 186 +- addons/event/i18n/ar_AR.po | 4 +- addons/event/i18n/bg_BG.po | 4 +- addons/event/i18n/bs_BS.po | 4 +- addons/event/i18n/ca_ES.po | 208 +- addons/event/i18n/cs_CS.po | 33 +- addons/event/i18n/cs_CZ.po | 4 +- addons/event/i18n/de_DE.po | 168 +- addons/event/i18n/es_AR.po | 4 +- addons/event/i18n/es_ES.po | 208 +- addons/event/i18n/et_EE.po | 138 +- addons/event/i18n/event.pot | 4 +- addons/event/i18n/fr_FR.po | 208 +- addons/event/i18n/hr_HR.po | 4 +- addons/event/i18n/hu_HU.po | 4 +- addons/event/i18n/it_IT.po | 170 +- addons/event/i18n/lt_LT.po | 4 +- addons/event/i18n/nl_BE.po | 4 +- addons/event/i18n/nl_NL.po | 170 +- addons/event/i18n/pl_PL.po | 48 +- addons/event/i18n/pt_BR.po | 4 +- addons/event/i18n/pt_PT.po | 208 +- addons/event/i18n/ro_RO.po | 4 +- addons/event/i18n/ru_RU.po | 142 +- addons/event/i18n/sl_SL.po | 4 +- addons/event/i18n/sv_SE.po | 4 +- addons/event/i18n/sv_SV.po | 35 +- addons/event/i18n/tr_TR.po | 4 +- addons/event/i18n/uk_UK.po | 4 +- addons/event/i18n/zh_CN.po | 4 +- addons/event/i18n/zh_TW.po | 4 +- addons/event_project/i18n/ar_AR.po | 4 +- addons/event_project/i18n/bg_BG.po | 4 +- addons/event_project/i18n/bs_BS.po | 4 +- addons/event_project/i18n/ca_ES.po | 4 +- addons/event_project/i18n/cs_CS.po | 20 +- addons/event_project/i18n/cs_CZ.po | 4 +- addons/event_project/i18n/de_DE.po | 4 +- addons/event_project/i18n/es_AR.po | 4 +- addons/event_project/i18n/es_ES.po | 4 +- addons/event_project/i18n/et_EE.po | 4 +- addons/event_project/i18n/event_project.pot | 4 +- addons/event_project/i18n/fr_FR.po | 4 +- addons/event_project/i18n/hr_HR.po | 4 +- addons/event_project/i18n/hu_HU.po | 4 +- addons/event_project/i18n/it_IT.po | 4 +- addons/event_project/i18n/lt_LT.po | 4 +- addons/event_project/i18n/nl_BE.po | 4 +- addons/event_project/i18n/nl_NL.po | 4 +- addons/event_project/i18n/pl_PL.po | 4 +- addons/event_project/i18n/pt_BR.po | 4 +- addons/event_project/i18n/pt_PT.po | 4 +- addons/event_project/i18n/ro_RO.po | 4 +- addons/event_project/i18n/ru_RU.po | 4 +- addons/event_project/i18n/sl_SL.po | 4 +- addons/event_project/i18n/sv_SE.po | 4 +- addons/event_project/i18n/sv_SV.po | 20 +- addons/event_project/i18n/tr_TR.po | 4 +- addons/event_project/i18n/uk_UK.po | 4 +- addons/event_project/i18n/zh_CN.po | 4 +- addons/event_project/i18n/zh_TW.po | 4 +- addons/google_map/i18n/ar_AR.po | 18 +- addons/google_map/i18n/bg_BG.po | 18 +- addons/google_map/i18n/bs_BS.po | 18 +- addons/google_map/i18n/ca_ES.po | 18 +- addons/google_map/i18n/cs_CS.po | 4 +- addons/google_map/i18n/cs_CZ.po | 18 +- addons/google_map/i18n/de_DE.po | 18 +- addons/google_map/i18n/es_AR.po | 18 +- addons/google_map/i18n/es_ES.po | 18 +- addons/google_map/i18n/et_EE.po | 20 +- addons/google_map/i18n/fr_FR.po | 18 +- addons/google_map/i18n/google_map.pot | 18 +- addons/google_map/i18n/hr_HR.po | 18 +- addons/google_map/i18n/hu_HU.po | 18 +- addons/google_map/i18n/it_IT.po | 18 +- addons/google_map/i18n/lt_LT.po | 18 +- addons/google_map/i18n/nl_BE.po | 18 +- addons/google_map/i18n/nl_NL.po | 18 +- addons/google_map/i18n/pl_PL.po | 18 +- addons/google_map/i18n/pt_BR.po | 18 +- addons/google_map/i18n/pt_PT.po | 18 +- addons/google_map/i18n/ro_RO.po | 18 +- addons/google_map/i18n/ru_RU.po | 18 +- addons/google_map/i18n/sl_SL.po | 18 +- addons/google_map/i18n/sv_SE.po | 18 +- addons/google_map/i18n/sv_SV.po | 4 +- addons/google_map/i18n/tr_TR.po | 18 +- addons/google_map/i18n/uk_UK.po | 18 +- addons/google_map/i18n/zh_CN.po | 18 +- addons/google_map/i18n/zh_TW.po | 18 +- addons/hr/i18n/ar_AR.po | 14 +- addons/hr/i18n/bg_BG.po | 14 +- addons/hr/i18n/bs_BS.po | 14 +- addons/hr/i18n/ca_ES.po | 14 +- addons/hr/i18n/cs_CS.po | 19 +- addons/hr/i18n/cs_CZ.po | 14 +- addons/hr/i18n/de_DE.po | 14 +- addons/hr/i18n/es_AR.po | 14 +- addons/hr/i18n/es_ES.po | 14 +- addons/hr/i18n/et_EE.po | 16 +- addons/hr/i18n/fr_FR.po | 14 +- addons/hr/i18n/hr.pot | 14 +- addons/hr/i18n/hr_HR.po | 14 +- addons/hr/i18n/hu_HU.po | 14 +- addons/hr/i18n/it_IT.po | 14 +- addons/hr/i18n/lt_LT.po | 14 +- addons/hr/i18n/nl_BE.po | 14 +- addons/hr/i18n/nl_NL.po | 14 +- addons/hr/i18n/pl_PL.po | 14 +- addons/hr/i18n/pt_BR.po | 14 +- addons/hr/i18n/pt_PT.po | 14 +- addons/hr/i18n/ro_RO.po | 14 +- addons/hr/i18n/ru_RU.po | 14 +- addons/hr/i18n/sl_SL.po | 14 +- addons/hr/i18n/sv_SE.po | 14 +- addons/hr/i18n/sv_SV.po | 51 +- addons/hr/i18n/th_TH.po | 46 +- addons/hr/i18n/tr_TR.po | 14 +- addons/hr/i18n/uk_UK.po | 14 +- addons/hr/i18n/zh_CN.po | 14 +- addons/hr/i18n/zh_TW.po | 14 +- addons/hr_attendance/i18n/ar_AR.po | 16 +- addons/hr_attendance/i18n/bg_BG.po | 16 +- addons/hr_attendance/i18n/bs_BS.po | 16 +- addons/hr_attendance/i18n/ca_ES.po | 16 +- addons/hr_attendance/i18n/cs_CS.po | 89 +- addons/hr_attendance/i18n/cs_CZ.po | 16 +- addons/hr_attendance/i18n/de_DE.po | 16 +- addons/hr_attendance/i18n/es_AR.po | 16 +- addons/hr_attendance/i18n/es_ES.po | 16 +- addons/hr_attendance/i18n/et_EE.po | 18 +- addons/hr_attendance/i18n/fr_FR.po | 16 +- addons/hr_attendance/i18n/hr_HR.po | 16 +- addons/hr_attendance/i18n/hr_attendance.pot | 16 +- addons/hr_attendance/i18n/hu_HU.po | 16 +- addons/hr_attendance/i18n/it_IT.po | 16 +- addons/hr_attendance/i18n/lt_LT.po | 16 +- addons/hr_attendance/i18n/nl_BE.po | 16 +- addons/hr_attendance/i18n/nl_NL.po | 16 +- addons/hr_attendance/i18n/pl_PL.po | 16 +- addons/hr_attendance/i18n/pt_BR.po | 16 +- addons/hr_attendance/i18n/pt_PT.po | 16 +- addons/hr_attendance/i18n/ro_RO.po | 16 +- addons/hr_attendance/i18n/ru_RU.po | 16 +- addons/hr_attendance/i18n/sl_SL.po | 16 +- addons/hr_attendance/i18n/sv_SE.po | 16 +- addons/hr_attendance/i18n/sv_SV.po | 83 +- addons/hr_attendance/i18n/tr_TR.po | 16 +- addons/hr_attendance/i18n/uk_UK.po | 16 +- addons/hr_attendance/i18n/zh_CN.po | 16 +- addons/hr_attendance/i18n/zh_TW.po | 16 +- addons/hr_contract/i18n/ar_AR.po | 22 +- addons/hr_contract/i18n/bg_BG.po | 22 +- addons/hr_contract/i18n/bs_BS.po | 22 +- addons/hr_contract/i18n/ca_ES.po | 26 +- addons/hr_contract/i18n/cs_CS.po | 42 +- addons/hr_contract/i18n/cs_CZ.po | 22 +- addons/hr_contract/i18n/de_DE.po | 26 +- addons/hr_contract/i18n/es_AR.po | 22 +- addons/hr_contract/i18n/es_ES.po | 26 +- addons/hr_contract/i18n/et_EE.po | 24 +- addons/hr_contract/i18n/fr_FR.po | 26 +- addons/hr_contract/i18n/hr_HR.po | 22 +- addons/hr_contract/i18n/hr_contract.pot | 22 +- addons/hr_contract/i18n/hu_HU.po | 22 +- addons/hr_contract/i18n/it_IT.po | 26 +- addons/hr_contract/i18n/lt_LT.po | 22 +- addons/hr_contract/i18n/nl_BE.po | 22 +- addons/hr_contract/i18n/nl_NL.po | 26 +- addons/hr_contract/i18n/pl_PL.po | 26 +- addons/hr_contract/i18n/pt_BR.po | 22 +- addons/hr_contract/i18n/pt_PT.po | 26 +- addons/hr_contract/i18n/ro_RO.po | 22 +- addons/hr_contract/i18n/ru_RU.po | 26 +- addons/hr_contract/i18n/sl_SL.po | 22 +- addons/hr_contract/i18n/sv_SE.po | 22 +- addons/hr_contract/i18n/sv_SV.po | 42 +- addons/hr_contract/i18n/tr_TR.po | 22 +- addons/hr_contract/i18n/uk_UK.po | 22 +- addons/hr_contract/i18n/zh_CN.po | 22 +- addons/hr_contract/i18n/zh_TW.po | 22 +- addons/hr_expense/i18n/ar_AR.po | 38 +- addons/hr_expense/i18n/bg_BG.po | 38 +- addons/hr_expense/i18n/bs_BS.po | 38 +- addons/hr_expense/i18n/ca_ES.po | 40 +- addons/hr_expense/i18n/cs_CS.po | 49 +- addons/hr_expense/i18n/cs_CZ.po | 38 +- addons/hr_expense/i18n/de_DE.po | 40 +- addons/hr_expense/i18n/es_AR.po | 38 +- addons/hr_expense/i18n/es_ES.po | 40 +- addons/hr_expense/i18n/et_EE.po | 40 +- addons/hr_expense/i18n/fr_FR.po | 40 +- addons/hr_expense/i18n/hr_HR.po | 38 +- addons/hr_expense/i18n/hr_expense.pot | 38 +- addons/hr_expense/i18n/hu_HU.po | 38 +- addons/hr_expense/i18n/it_IT.po | 40 +- addons/hr_expense/i18n/lt_LT.po | 38 +- addons/hr_expense/i18n/nl_BE.po | 38 +- addons/hr_expense/i18n/nl_NL.po | 38 +- addons/hr_expense/i18n/pl_PL.po | 38 +- addons/hr_expense/i18n/pt_BR.po | 38 +- addons/hr_expense/i18n/pt_PT.po | 40 +- addons/hr_expense/i18n/ro_RO.po | 38 +- addons/hr_expense/i18n/ru_RU.po | 40 +- addons/hr_expense/i18n/sl_SL.po | 38 +- addons/hr_expense/i18n/sv_SE.po | 38 +- addons/hr_expense/i18n/sv_SV.po | 49 +- addons/hr_expense/i18n/tr_TR.po | 38 +- addons/hr_expense/i18n/uk_UK.po | 38 +- addons/hr_expense/i18n/zh_CN.po | 38 +- addons/hr_expense/i18n/zh_TW.po | 38 +- addons/hr_holidays/i18n/ar_AR.po | 24 +- addons/hr_holidays/i18n/bg_BG.po | 24 +- addons/hr_holidays/i18n/bs_BS.po | 24 +- addons/hr_holidays/i18n/ca_ES.po | 264 +- addons/hr_holidays/i18n/cs_CS.po | 47 +- addons/hr_holidays/i18n/cs_CZ.po | 24 +- addons/hr_holidays/i18n/de_DE.po | 262 +- addons/hr_holidays/i18n/es_AR.po | 24 +- addons/hr_holidays/i18n/es_ES.po | 266 +- addons/hr_holidays/i18n/et_EE.po | 108 +- addons/hr_holidays/i18n/fr_FR.po | 252 +- addons/hr_holidays/i18n/hr_HR.po | 24 +- addons/hr_holidays/i18n/hr_holidays.pot | 24 +- addons/hr_holidays/i18n/hu_HU.po | 24 +- addons/hr_holidays/i18n/it_IT.po | 262 +- addons/hr_holidays/i18n/lt_LT.po | 24 +- addons/hr_holidays/i18n/nl_BE.po | 24 +- addons/hr_holidays/i18n/nl_NL.po | 42 +- addons/hr_holidays/i18n/pl_PL.po | 24 +- addons/hr_holidays/i18n/pt_BR.po | 24 +- addons/hr_holidays/i18n/pt_PT.po | 234 +- addons/hr_holidays/i18n/ro_RO.po | 24 +- addons/hr_holidays/i18n/ru_RU.po | 162 +- addons/hr_holidays/i18n/sl_SL.po | 78 +- addons/hr_holidays/i18n/sv_SE.po | 24 +- addons/hr_holidays/i18n/sv_SV.po | 47 +- addons/hr_holidays/i18n/th_TH.po | 682 +- addons/hr_holidays/i18n/tr_TR.po | 24 +- addons/hr_holidays/i18n/uk_UK.po | 24 +- addons/hr_holidays/i18n/zh_CN.po | 24 +- addons/hr_holidays/i18n/zh_TW.po | 24 +- addons/hr_timesheet/i18n/ar_AR.po | 108 +- addons/hr_timesheet/i18n/bg_BG.po | 108 +- addons/hr_timesheet/i18n/bs_BS.po | 108 +- addons/hr_timesheet/i18n/ca_ES.po | 112 +- addons/hr_timesheet/i18n/cs_CS.po | 89 +- addons/hr_timesheet/i18n/cs_CZ.po | 108 +- addons/hr_timesheet/i18n/de_DE.po | 112 +- addons/hr_timesheet/i18n/es_AR.po | 108 +- addons/hr_timesheet/i18n/es_ES.po | 112 +- addons/hr_timesheet/i18n/et_EE.po | 116 +- addons/hr_timesheet/i18n/fr_FR.po | 112 +- addons/hr_timesheet/i18n/hr_HR.po | 108 +- addons/hr_timesheet/i18n/hr_timesheet.pot | 108 +- addons/hr_timesheet/i18n/hu_HU.po | 108 +- addons/hr_timesheet/i18n/it_IT.po | 112 +- addons/hr_timesheet/i18n/lt_LT.po | 108 +- addons/hr_timesheet/i18n/nl_BE.po | 108 +- addons/hr_timesheet/i18n/nl_NL.po | 112 +- addons/hr_timesheet/i18n/pl_PL.po | 108 +- addons/hr_timesheet/i18n/pt_BR.po | 108 +- addons/hr_timesheet/i18n/pt_PT.po | 112 +- addons/hr_timesheet/i18n/ro_RO.po | 108 +- addons/hr_timesheet/i18n/ru_RU.po | 108 +- addons/hr_timesheet/i18n/sl_SL.po | 108 +- addons/hr_timesheet/i18n/sv_SE.po | 108 +- addons/hr_timesheet/i18n/sv_SV.po | 87 +- addons/hr_timesheet/i18n/tr_TR.po | 108 +- addons/hr_timesheet/i18n/uk_UK.po | 108 +- addons/hr_timesheet/i18n/zh_CN.po | 108 +- addons/hr_timesheet/i18n/zh_TW.po | 108 +- addons/hr_timesheet_invoice/i18n/ar_AR.po | 65 +- addons/hr_timesheet_invoice/i18n/bg_BG.po | 65 +- addons/hr_timesheet_invoice/i18n/bs_BS.po | 65 +- addons/hr_timesheet_invoice/i18n/ca_ES.po | 69 +- addons/hr_timesheet_invoice/i18n/cs_CS.po | 100 +- addons/hr_timesheet_invoice/i18n/cs_CZ.po | 65 +- addons/hr_timesheet_invoice/i18n/de_DE.po | 69 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 65 +- addons/hr_timesheet_invoice/i18n/es_ES.po | 69 +- addons/hr_timesheet_invoice/i18n/et_EE.po | 67 +- addons/hr_timesheet_invoice/i18n/fr_FR.po | 69 +- addons/hr_timesheet_invoice/i18n/hr_HR.po | 65 +- .../i18n/hr_timesheet_invoice.pot | 65 +- addons/hr_timesheet_invoice/i18n/hu_HU.po | 65 +- addons/hr_timesheet_invoice/i18n/it_IT.po | 71 +- addons/hr_timesheet_invoice/i18n/lt_LT.po | 65 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 65 +- addons/hr_timesheet_invoice/i18n/nl_NL.po | 65 +- addons/hr_timesheet_invoice/i18n/pl_PL.po | 65 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 65 +- addons/hr_timesheet_invoice/i18n/pt_PT.po | 67 +- addons/hr_timesheet_invoice/i18n/ro_RO.po | 65 +- addons/hr_timesheet_invoice/i18n/ru_RU.po | 67 +- addons/hr_timesheet_invoice/i18n/sl_SL.po | 65 +- addons/hr_timesheet_invoice/i18n/sv_SE.po | 65 +- addons/hr_timesheet_invoice/i18n/sv_SV.po | 100 +- addons/hr_timesheet_invoice/i18n/tr_TR.po | 65 +- addons/hr_timesheet_invoice/i18n/uk_UK.po | 67 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 65 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 65 +- addons/hr_timesheet_sheet/i18n/ar_AR.po | 4 +- addons/hr_timesheet_sheet/i18n/bg_BG.po | 4 +- addons/hr_timesheet_sheet/i18n/bs_BS.po | 4 +- addons/hr_timesheet_sheet/i18n/ca_ES.po | 4 +- addons/hr_timesheet_sheet/i18n/cs_CS.po | 15 +- addons/hr_timesheet_sheet/i18n/cs_CZ.po | 4 +- addons/hr_timesheet_sheet/i18n/de_DE.po | 4 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_ES.po | 4 +- addons/hr_timesheet_sheet/i18n/et_EE.po | 6 +- addons/hr_timesheet_sheet/i18n/fr_FR.po | 4 +- addons/hr_timesheet_sheet/i18n/hr_HR.po | 4 +- .../i18n/hr_timesheet_sheet.pot | 4 +- addons/hr_timesheet_sheet/i18n/hu_HU.po | 4 +- addons/hr_timesheet_sheet/i18n/it_IT.po | 4 +- addons/hr_timesheet_sheet/i18n/lt_LT.po | 4 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 4 +- addons/hr_timesheet_sheet/i18n/nl_NL.po | 4 +- addons/hr_timesheet_sheet/i18n/pl_PL.po | 4 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 4 +- addons/hr_timesheet_sheet/i18n/pt_PT.po | 4 +- addons/hr_timesheet_sheet/i18n/ro_RO.po | 4 +- addons/hr_timesheet_sheet/i18n/ru_RU.po | 4 +- addons/hr_timesheet_sheet/i18n/sl_SL.po | 4 +- addons/hr_timesheet_sheet/i18n/sv_SE.po | 4 +- addons/hr_timesheet_sheet/i18n/sv_SV.po | 17 +- addons/hr_timesheet_sheet/i18n/tr_TR.po | 4 +- addons/hr_timesheet_sheet/i18n/uk_UK.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 4 +- addons/idea/i18n/ar_AR.po | 4 +- addons/idea/i18n/bg_BG.po | 4 +- addons/idea/i18n/bs_BS.po | 4 +- addons/idea/i18n/ca_ES.po | 4 +- addons/idea/i18n/cs_CS.po | 13 +- addons/idea/i18n/cs_CZ.po | 4 +- addons/idea/i18n/de_DE.po | 4 +- addons/idea/i18n/es_AR.po | 4 +- addons/idea/i18n/es_ES.po | 4 +- addons/idea/i18n/et_EE.po | 8 +- addons/idea/i18n/fr_FR.po | 4 +- addons/idea/i18n/hr_HR.po | 4 +- addons/idea/i18n/hu_HU.po | 4 +- addons/idea/i18n/idea.pot | 4 +- addons/idea/i18n/it_IT.po | 4 +- addons/idea/i18n/lt_LT.po | 4 +- addons/idea/i18n/nl_BE.po | 4 +- addons/idea/i18n/nl_NL.po | 4 +- addons/idea/i18n/pl_PL.po | 4 +- addons/idea/i18n/pt_BR.po | 4 +- addons/idea/i18n/pt_PT.po | 4 +- addons/idea/i18n/ro_RO.po | 4 +- addons/idea/i18n/ru_RU.po | 4 +- addons/idea/i18n/sl_SL.po | 4 +- addons/idea/i18n/sv_SE.po | 4 +- addons/idea/i18n/sv_SV.po | 15 +- addons/idea/i18n/tr_TR.po | 4 +- addons/idea/i18n/uk_UK.po | 4 +- addons/idea/i18n/zh_CN.po | 4 +- addons/idea/i18n/zh_TW.po | 4 +- addons/l10n_be/i18n/ar_AR.po | 70 +- addons/l10n_be/i18n/bg_BG.po | 70 +- addons/l10n_be/i18n/bs_BS.po | 70 +- addons/l10n_be/i18n/ca_ES.po | 70 +- addons/l10n_be/i18n/cs_CS.po | 102 +- addons/l10n_be/i18n/cs_CZ.po | 70 +- addons/l10n_be/i18n/de_DE.po | 70 +- addons/l10n_be/i18n/es_AR.po | 70 +- addons/l10n_be/i18n/es_ES.po | 70 +- addons/l10n_be/i18n/et_EE.po | 72 +- addons/l10n_be/i18n/fr_FR.po | 70 +- addons/l10n_be/i18n/hr_HR.po | 70 +- addons/l10n_be/i18n/hu_HU.po | 70 +- addons/l10n_be/i18n/it_IT.po | 72 +- addons/l10n_be/i18n/l10n_be.pot | 70 +- addons/l10n_be/i18n/lt_LT.po | 70 +- addons/l10n_be/i18n/nl_BE.po | 70 +- addons/l10n_be/i18n/nl_NL.po | 70 +- addons/l10n_be/i18n/pl_PL.po | 70 +- addons/l10n_be/i18n/pt_BR.po | 70 +- addons/l10n_be/i18n/pt_PT.po | 70 +- addons/l10n_be/i18n/ro_RO.po | 70 +- addons/l10n_be/i18n/ru_RU.po | 70 +- addons/l10n_be/i18n/sl_SL.po | 70 +- addons/l10n_be/i18n/sv_SE.po | 70 +- addons/l10n_be/i18n/sv_SV.po | 102 +- addons/l10n_be/i18n/tr_TR.po | 70 +- addons/l10n_be/i18n/uk_UK.po | 70 +- addons/l10n_be/i18n/zh_CN.po | 70 +- addons/l10n_be/i18n/zh_TW.po | 70 +- addons/l10n_be/i18n/znd_ZND.po | 246 + addons/l10n_ch/i18n/ar_AR.po | 4 +- addons/l10n_ch/i18n/bg_BG.po | 4 +- addons/l10n_ch/i18n/bs_BS.po | 4 +- addons/l10n_ch/i18n/ca_ES.po | 4 +- addons/l10n_ch/i18n/cs_CS.po | 619 ++ addons/l10n_ch/i18n/cs_CZ.po | 4 +- addons/l10n_ch/i18n/de_DE.po | 4 +- addons/l10n_ch/i18n/es_AR.po | 4 +- addons/l10n_ch/i18n/es_ES.po | 4 +- addons/l10n_ch/i18n/et_EE.po | 8 +- addons/l10n_ch/i18n/fr_FR.po | 4 +- addons/l10n_ch/i18n/hr_HR.po | 4 +- addons/l10n_ch/i18n/hu_HU.po | 4 +- addons/l10n_ch/i18n/it_IT.po | 4 +- addons/l10n_ch/i18n/l10n_ch.pot | 4 +- addons/l10n_ch/i18n/lt_LT.po | 4 +- addons/l10n_ch/i18n/nl_BE.po | 4 +- addons/l10n_ch/i18n/nl_NL.po | 4 +- addons/l10n_ch/i18n/pl_PL.po | 4 +- addons/l10n_ch/i18n/pt_BR.po | 4 +- addons/l10n_ch/i18n/pt_PT.po | 4 +- addons/l10n_ch/i18n/ro_RO.po | 4 +- addons/l10n_ch/i18n/ru_RU.po | 4 +- addons/l10n_ch/i18n/sl_SL.po | 4 +- addons/l10n_ch/i18n/sv_SE.po | 4 +- addons/l10n_ch/i18n/sv_SV.po | 619 ++ addons/l10n_ch/i18n/tr_TR.po | 4 +- addons/l10n_ch/i18n/uk_UK.po | 4 +- addons/l10n_ch/i18n/zh_CN.po | 4 +- addons/l10n_ch/i18n/zh_TW.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po | 269 + addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po | 4 +- .../i18n/l10n_ch_chart_c2c_pcg.pot | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po | 269 + addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po | 4 +- addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po | 4 +- addons/l10n_chart_uk_minimal/i18n/ar_AR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/bg_BG.po | 4 +- addons/l10n_chart_uk_minimal/i18n/bs_BS.po | 4 +- addons/l10n_chart_uk_minimal/i18n/ca_ES.po | 4 +- addons/l10n_chart_uk_minimal/i18n/cs_CS.po | 4 +- addons/l10n_chart_uk_minimal/i18n/cs_CZ.po | 4 +- addons/l10n_chart_uk_minimal/i18n/de_DE.po | 4 +- addons/l10n_chart_uk_minimal/i18n/es_AR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/es_ES.po | 4 +- addons/l10n_chart_uk_minimal/i18n/et_EE.po | 4 +- addons/l10n_chart_uk_minimal/i18n/fr_FR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/hr_HR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/hu_HU.po | 4 +- addons/l10n_chart_uk_minimal/i18n/it_IT.po | 14 +- .../i18n/l10n_chart_uk_minimal.pot | 4 +- addons/l10n_chart_uk_minimal/i18n/lt_LT.po | 4 +- addons/l10n_chart_uk_minimal/i18n/nl_BE.po | 4 +- addons/l10n_chart_uk_minimal/i18n/nl_NL.po | 4 +- addons/l10n_chart_uk_minimal/i18n/pl_PL.po | 4 +- addons/l10n_chart_uk_minimal/i18n/pt_BR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/pt_PT.po | 4 +- addons/l10n_chart_uk_minimal/i18n/ro_RO.po | 4 +- addons/l10n_chart_uk_minimal/i18n/ru_RU.po | 4 +- addons/l10n_chart_uk_minimal/i18n/sl_SL.po | 4 +- addons/l10n_chart_uk_minimal/i18n/sv_SE.po | 4 +- addons/l10n_chart_uk_minimal/i18n/sv_SV.po | 4 +- addons/l10n_chart_uk_minimal/i18n/tr_TR.po | 4 +- addons/l10n_chart_uk_minimal/i18n/uk_UK.po | 4 +- addons/l10n_chart_uk_minimal/i18n/zh_CN.po | 4 +- addons/l10n_chart_uk_minimal/i18n/zh_TW.po | 4 +- addons/l10n_fr/i18n/ar_AR.po | 4 +- addons/l10n_fr/i18n/bg_BG.po | 4 +- addons/l10n_fr/i18n/bs_BS.po | 4 +- addons/l10n_fr/i18n/ca_ES.po | 4 +- addons/l10n_fr/i18n/cs_CS.po | 4 +- addons/l10n_fr/i18n/cs_CZ.po | 4 +- addons/l10n_fr/i18n/de_DE.po | 4 +- addons/l10n_fr/i18n/es_AR.po | 4 +- addons/l10n_fr/i18n/es_ES.po | 4 +- addons/l10n_fr/i18n/et_EE.po | 4 +- addons/l10n_fr/i18n/fr_FR.po | 4 +- addons/l10n_fr/i18n/hr_HR.po | 4 +- addons/l10n_fr/i18n/hu_HU.po | 4 +- addons/l10n_fr/i18n/it_IT.po | 74 +- addons/l10n_fr/i18n/l10n_fr.pot | 4 +- addons/l10n_fr/i18n/lt_LT.po | 4 +- addons/l10n_fr/i18n/nl_BE.po | 4 +- addons/l10n_fr/i18n/nl_NL.po | 4 +- addons/l10n_fr/i18n/pl_PL.po | 4 +- addons/l10n_fr/i18n/pt_BR.po | 4 +- addons/l10n_fr/i18n/pt_PT.po | 4 +- addons/l10n_fr/i18n/ro_RO.po | 4 +- addons/l10n_fr/i18n/ru_RU.po | 4 +- addons/l10n_fr/i18n/sl_SL.po | 4 +- addons/l10n_fr/i18n/sv_SE.po | 4 +- addons/l10n_fr/i18n/sv_SV.po | 4 +- addons/l10n_fr/i18n/tr_TR.po | 4 +- addons/l10n_fr/i18n/uk_UK.po | 4 +- addons/l10n_fr/i18n/zh_CN.po | 4 +- addons/l10n_fr/i18n/zh_TW.po | 4 +- addons/l10n_lu/i18n/ar_AR.po | 4 +- addons/l10n_lu/i18n/bg_BG.po | 4 +- addons/l10n_lu/i18n/bs_BS.po | 4 +- addons/l10n_lu/i18n/ca_ES.po | 4 +- addons/l10n_lu/i18n/cs_CS.po | 4 +- addons/l10n_lu/i18n/cs_CZ.po | 4 +- addons/l10n_lu/i18n/de_DE.po | 4 +- addons/l10n_lu/i18n/es_AR.po | 4 +- addons/l10n_lu/i18n/es_ES.po | 4 +- addons/l10n_lu/i18n/et_EE.po | 4 +- addons/l10n_lu/i18n/fr_FR.po | 4 +- addons/l10n_lu/i18n/hr_HR.po | 4 +- addons/l10n_lu/i18n/hu_HU.po | 4 +- addons/l10n_lu/i18n/it_IT.po | 8 +- addons/l10n_lu/i18n/l10n_lu.pot | 4 +- addons/l10n_lu/i18n/lt_LT.po | 4 +- addons/l10n_lu/i18n/nl_BE.po | 4 +- addons/l10n_lu/i18n/nl_NL.po | 4 +- addons/l10n_lu/i18n/pl_PL.po | 4 +- addons/l10n_lu/i18n/pt_BR.po | 4 +- addons/l10n_lu/i18n/pt_PT.po | 4 +- addons/l10n_lu/i18n/ro_RO.po | 4 +- addons/l10n_lu/i18n/ru_RU.po | 4 +- addons/l10n_lu/i18n/sl_SL.po | 4 +- addons/l10n_lu/i18n/sv_SE.po | 4 +- addons/l10n_lu/i18n/sv_SV.po | 4 +- addons/l10n_lu/i18n/tr_TR.po | 4 +- addons/l10n_lu/i18n/uk_UK.po | 4 +- addons/l10n_lu/i18n/zh_CN.po | 4 +- addons/l10n_lu/i18n/zh_TW.po | 4 +- addons/membership/i18n/ar_AR.po | 14 +- addons/membership/i18n/bg_BG.po | 14 +- addons/membership/i18n/bs_BS.po | 14 +- addons/membership/i18n/ca_ES.po | 14 +- addons/membership/i18n/cs_CS.po | 41 +- addons/membership/i18n/cs_CZ.po | 14 +- addons/membership/i18n/de_DE.po | 14 +- addons/membership/i18n/es_AR.po | 14 +- addons/membership/i18n/es_ES.po | 14 +- addons/membership/i18n/et_EE.po | 94 +- addons/membership/i18n/fr_FR.po | 14 +- addons/membership/i18n/hr_HR.po | 14 +- addons/membership/i18n/hu_HU.po | 14 +- addons/membership/i18n/it_IT.po | 14 +- addons/membership/i18n/lt_LT.po | 14 +- addons/membership/i18n/membership.pot | 14 +- addons/membership/i18n/nl_BE.po | 14 +- addons/membership/i18n/nl_NL.po | 14 +- addons/membership/i18n/pl_PL.po | 14 +- addons/membership/i18n/pt_BR.po | 14 +- addons/membership/i18n/pt_PT.po | 14 +- addons/membership/i18n/ro_RO.po | 14 +- addons/membership/i18n/ru_RU.po | 14 +- addons/membership/i18n/sl_SL.po | 14 +- addons/membership/i18n/sv_SE.po | 14 +- addons/membership/i18n/sv_SV.po | 43 +- addons/membership/i18n/tr_TR.po | 14 +- addons/membership/i18n/uk_UK.po | 14 +- addons/membership/i18n/zh_CN.po | 14 +- addons/membership/i18n/zh_TW.po | 14 +- addons/mrp/i18n/ar_AR.po | 4 +- addons/mrp/i18n/bg_BG.po | 4 +- addons/mrp/i18n/bs_BS.po | 4 +- addons/mrp/i18n/ca_ES.po | 4 +- addons/mrp/i18n/cs_CS.po | 56 +- addons/mrp/i18n/cs_CZ.po | 4 +- addons/mrp/i18n/de_DE.po | 4 +- addons/mrp/i18n/es_AR.po | 4 +- addons/mrp/i18n/es_ES.po | 4 +- addons/mrp/i18n/et_EE.po | 14 +- addons/mrp/i18n/fr_FR.po | 4 +- addons/mrp/i18n/hr_HR.po | 4 +- addons/mrp/i18n/hu_HU.po | 4 +- addons/mrp/i18n/it_IT.po | 4 +- addons/mrp/i18n/lt_LT.po | 4 +- addons/mrp/i18n/mrp.pot | 4 +- addons/mrp/i18n/nl_BE.po | 4 +- addons/mrp/i18n/nl_NL.po | 4 +- addons/mrp/i18n/pl_PL.po | 4 +- addons/mrp/i18n/pt_BR.po | 4 +- addons/mrp/i18n/pt_PT.po | 4 +- addons/mrp/i18n/ro_RO.po | 4 +- addons/mrp/i18n/ru_RU.po | 4 +- addons/mrp/i18n/sl_SL.po | 4 +- addons/mrp/i18n/sv_SE.po | 4 +- addons/mrp/i18n/sv_SV.po | 56 +- addons/mrp/i18n/tr_TR.po | 4 +- addons/mrp/i18n/uk_UK.po | 4 +- addons/mrp/i18n/zh_CN.po | 4 +- addons/mrp/i18n/zh_TW.po | 4 +- addons/mrp_jit/i18n/ar_AR.po | 4 +- addons/mrp_jit/i18n/bg_BG.po | 4 +- addons/mrp_jit/i18n/bs_BS.po | 4 +- addons/mrp_jit/i18n/ca_ES.po | 4 +- addons/mrp_jit/i18n/cs_CS.po | 4 +- addons/mrp_jit/i18n/cs_CZ.po | 4 +- addons/mrp_jit/i18n/de_DE.po | 4 +- addons/mrp_jit/i18n/es_AR.po | 4 +- addons/mrp_jit/i18n/es_ES.po | 4 +- addons/mrp_jit/i18n/et_EE.po | 6 +- addons/mrp_jit/i18n/fr_FR.po | 4 +- addons/mrp_jit/i18n/hr_HR.po | 4 +- addons/mrp_jit/i18n/hu_HU.po | 4 +- addons/mrp_jit/i18n/it_IT.po | 4 +- addons/mrp_jit/i18n/lt_LT.po | 4 +- addons/mrp_jit/i18n/mrp_jit.pot | 4 +- addons/mrp_jit/i18n/nl_BE.po | 4 +- addons/mrp_jit/i18n/nl_NL.po | 4 +- addons/mrp_jit/i18n/pl_PL.po | 4 +- addons/mrp_jit/i18n/pt_BR.po | 4 +- addons/mrp_jit/i18n/pt_PT.po | 4 +- addons/mrp_jit/i18n/ro_RO.po | 4 +- addons/mrp_jit/i18n/ru_RU.po | 4 +- addons/mrp_jit/i18n/sl_SL.po | 4 +- addons/mrp_jit/i18n/sv_SE.po | 4 +- addons/mrp_jit/i18n/sv_SV.po | 4 +- addons/mrp_jit/i18n/tr_TR.po | 4 +- addons/mrp_jit/i18n/uk_UK.po | 4 +- addons/mrp_jit/i18n/zh_CN.po | 4 +- addons/mrp_jit/i18n/zh_TW.po | 4 +- addons/mrp_operations/i18n/ar_AR.po | 4 +- addons/mrp_operations/i18n/bg_BG.po | 4 +- addons/mrp_operations/i18n/bs_BS.po | 4 +- addons/mrp_operations/i18n/ca_ES.po | 4 +- addons/mrp_operations/i18n/cs_CS.po | 9 +- addons/mrp_operations/i18n/cs_CZ.po | 4 +- addons/mrp_operations/i18n/de_DE.po | 4 +- addons/mrp_operations/i18n/es_AR.po | 4 +- addons/mrp_operations/i18n/es_ES.po | 4 +- addons/mrp_operations/i18n/et_EE.po | 30 +- addons/mrp_operations/i18n/fr_FR.po | 4 +- addons/mrp_operations/i18n/hr_HR.po | 4 +- addons/mrp_operations/i18n/hu_HU.po | 4 +- addons/mrp_operations/i18n/it_IT.po | 4 +- addons/mrp_operations/i18n/lt_LT.po | 4 +- addons/mrp_operations/i18n/mrp_operations.pot | 4 +- addons/mrp_operations/i18n/nl_BE.po | 4 +- addons/mrp_operations/i18n/nl_NL.po | 4 +- addons/mrp_operations/i18n/pl_PL.po | 4 +- addons/mrp_operations/i18n/pt_BR.po | 4 +- addons/mrp_operations/i18n/pt_PT.po | 4 +- addons/mrp_operations/i18n/ro_RO.po | 4 +- addons/mrp_operations/i18n/ru_RU.po | 4 +- addons/mrp_operations/i18n/sl_SL.po | 4 +- addons/mrp_operations/i18n/sv_SE.po | 4 +- addons/mrp_operations/i18n/sv_SV.po | 9 +- addons/mrp_operations/i18n/tr_TR.po | 4 +- addons/mrp_operations/i18n/uk_UK.po | 4 +- addons/mrp_operations/i18n/zh_CN.po | 4 +- addons/mrp_operations/i18n/zh_TW.po | 4 +- addons/mrp_repair/i18n/ar_AR.po | 4 +- addons/mrp_repair/i18n/bg_BG.po | 4 +- addons/mrp_repair/i18n/bs_BS.po | 4 +- addons/mrp_repair/i18n/ca_ES.po | 4 +- addons/mrp_repair/i18n/cs_CS.po | 25 +- addons/mrp_repair/i18n/cs_CZ.po | 4 +- addons/mrp_repair/i18n/de_DE.po | 4 +- addons/mrp_repair/i18n/es_AR.po | 4 +- addons/mrp_repair/i18n/es_ES.po | 4 +- addons/mrp_repair/i18n/et_EE.po | 30 +- addons/mrp_repair/i18n/fr_FR.po | 4 +- addons/mrp_repair/i18n/hr_HR.po | 4 +- addons/mrp_repair/i18n/hu_HU.po | 4 +- addons/mrp_repair/i18n/it_IT.po | 4 +- addons/mrp_repair/i18n/lt_LT.po | 4 +- addons/mrp_repair/i18n/mrp_repair.pot | 4 +- addons/mrp_repair/i18n/nl_BE.po | 4 +- addons/mrp_repair/i18n/nl_NL.po | 4 +- addons/mrp_repair/i18n/pl_PL.po | 4 +- addons/mrp_repair/i18n/pt_BR.po | 4 +- addons/mrp_repair/i18n/pt_PT.po | 4 +- addons/mrp_repair/i18n/ro_RO.po | 4 +- addons/mrp_repair/i18n/ru_RU.po | 4 +- addons/mrp_repair/i18n/sl_SL.po | 4 +- addons/mrp_repair/i18n/sv_SE.po | 4 +- addons/mrp_repair/i18n/sv_SV.po | 25 +- addons/mrp_repair/i18n/tr_TR.po | 4 +- addons/mrp_repair/i18n/uk_UK.po | 4 +- addons/mrp_repair/i18n/zh_CN.po | 4 +- addons/mrp_repair/i18n/zh_TW.po | 4 +- addons/mrp_subproduct/i18n/ar_AR.po | 4 +- addons/mrp_subproduct/i18n/bg_BG.po | 4 +- addons/mrp_subproduct/i18n/bs_BS.po | 4 +- addons/mrp_subproduct/i18n/ca_ES.po | 4 +- addons/mrp_subproduct/i18n/cs_CS.po | 19 +- addons/mrp_subproduct/i18n/cs_CZ.po | 4 +- addons/mrp_subproduct/i18n/de_DE.po | 4 +- addons/mrp_subproduct/i18n/es_AR.po | 4 +- addons/mrp_subproduct/i18n/es_ES.po | 4 +- addons/mrp_subproduct/i18n/et_EE.po | 28 +- addons/mrp_subproduct/i18n/fr_FR.po | 4 +- addons/mrp_subproduct/i18n/hr_HR.po | 4 +- addons/mrp_subproduct/i18n/hu_HU.po | 4 +- addons/mrp_subproduct/i18n/it_IT.po | 4 +- addons/mrp_subproduct/i18n/lt_LT.po | 4 +- addons/mrp_subproduct/i18n/mrp_subproduct.pot | 4 +- addons/mrp_subproduct/i18n/nl_BE.po | 4 +- addons/mrp_subproduct/i18n/nl_NL.po | 4 +- addons/mrp_subproduct/i18n/pl_PL.po | 4 +- addons/mrp_subproduct/i18n/pt_BR.po | 4 +- addons/mrp_subproduct/i18n/pt_PT.po | 4 +- addons/mrp_subproduct/i18n/ro_RO.po | 4 +- addons/mrp_subproduct/i18n/ru_RU.po | 4 +- addons/mrp_subproduct/i18n/sl_SL.po | 4 +- addons/mrp_subproduct/i18n/sv_SE.po | 4 +- addons/mrp_subproduct/i18n/sv_SV.po | 19 +- addons/mrp_subproduct/i18n/tr_TR.po | 4 +- addons/mrp_subproduct/i18n/uk_UK.po | 4 +- addons/mrp_subproduct/i18n/zh_CN.po | 4 +- addons/mrp_subproduct/i18n/zh_TW.po | 4 +- addons/point_of_sale/i18n/ar_AR.po | 4 +- addons/point_of_sale/i18n/bg_BG.po | 4 +- addons/point_of_sale/i18n/bs_BS.po | 4 +- addons/point_of_sale/i18n/ca_ES.po | 4 +- addons/point_of_sale/i18n/cs_CS.po | 173 +- addons/point_of_sale/i18n/cs_CZ.po | 4 +- addons/point_of_sale/i18n/de_DE.po | 4 +- addons/point_of_sale/i18n/es_AR.po | 4 +- addons/point_of_sale/i18n/es_ES.po | 4 +- addons/point_of_sale/i18n/et_EE.po | 182 +- addons/point_of_sale/i18n/fr_FR.po | 4 +- addons/point_of_sale/i18n/hr_HR.po | 4 +- addons/point_of_sale/i18n/hu_HU.po | 4 +- addons/point_of_sale/i18n/it_IT.po | 4 +- addons/point_of_sale/i18n/lt_LT.po | 4 +- addons/point_of_sale/i18n/nl_BE.po | 4 +- addons/point_of_sale/i18n/nl_NL.po | 4 +- addons/point_of_sale/i18n/pl_PL.po | 4 +- addons/point_of_sale/i18n/point_of_sale.pot | 4 +- addons/point_of_sale/i18n/pt_BR.po | 4 +- addons/point_of_sale/i18n/pt_PT.po | 4 +- addons/point_of_sale/i18n/ro_RO.po | 4 +- addons/point_of_sale/i18n/ru_RU.po | 4 +- addons/point_of_sale/i18n/sl_SL.po | 4 +- addons/point_of_sale/i18n/sv_SE.po | 4 +- addons/point_of_sale/i18n/sv_SV.po | 175 +- addons/point_of_sale/i18n/tr_TR.po | 4 +- addons/point_of_sale/i18n/uk_UK.po | 4 +- addons/point_of_sale/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/zh_TW.po | 4 +- addons/process/i18n/ar_AR.po | 4 +- addons/process/i18n/bg_BG.po | 4 +- addons/process/i18n/bs_BS.po | 4 +- addons/process/i18n/ca_ES.po | 4 +- addons/process/i18n/cs_CS.po | 9 +- addons/process/i18n/cs_CZ.po | 4 +- addons/process/i18n/de_DE.po | 4 +- addons/process/i18n/es_AR.po | 4 +- addons/process/i18n/es_ES.po | 4 +- addons/process/i18n/et_EE.po | 8 +- addons/process/i18n/fr_FR.po | 4 +- addons/process/i18n/hr_HR.po | 4 +- addons/process/i18n/hu_HU.po | 4 +- addons/process/i18n/it_IT.po | 4 +- addons/process/i18n/lt_LT.po | 4 +- addons/process/i18n/nl_BE.po | 4 +- addons/process/i18n/nl_NL.po | 4 +- addons/process/i18n/pl_PL.po | 4 +- addons/process/i18n/process.pot | 4 +- addons/process/i18n/pt_BR.po | 4 +- addons/process/i18n/pt_PT.po | 4 +- addons/process/i18n/ro_RO.po | 4 +- addons/process/i18n/ru_RU.po | 4 +- addons/process/i18n/sl_SL.po | 4 +- addons/process/i18n/sv_SE.po | 4 +- addons/process/i18n/sv_SV.po | 9 +- addons/process/i18n/tr_TR.po | 4 +- addons/process/i18n/uk_UK.po | 4 +- addons/process/i18n/zh_CN.po | 4 +- addons/process/i18n/zh_TW.po | 4 +- addons/product/i18n/ar_AR.po | 84 +- addons/product/i18n/bg_BG.po | 84 +- addons/product/i18n/bs_BS.po | 84 +- addons/product/i18n/ca_ES.po | 92 +- addons/product/i18n/cs_CS.po | 36 +- addons/product/i18n/cs_CZ.po | 90 +- addons/product/i18n/de_DE.po | 92 +- addons/product/i18n/es_AR.po | 84 +- addons/product/i18n/es_ES.po | 92 +- addons/product/i18n/et_EE.po | 309 +- addons/product/i18n/fr_FR.po | 92 +- addons/product/i18n/hr_HR.po | 84 +- addons/product/i18n/hu_HU.po | 88 +- addons/product/i18n/it_IT.po | 92 +- addons/product/i18n/lt_LT.po | 84 +- addons/product/i18n/nb_NB.po | 730 +- addons/product/i18n/nl_BE.po | 84 +- addons/product/i18n/nl_NL.po | 92 +- addons/product/i18n/pl_PL.po | 84 +- addons/product/i18n/product.pot | 84 +- addons/product/i18n/pt_BR.po | 92 +- addons/product/i18n/pt_PT.po | 92 +- addons/product/i18n/ro_RO.po | 88 +- addons/product/i18n/ru_RU.po | 92 +- addons/product/i18n/sl_SL.po | 94 +- addons/product/i18n/sv_SE.po | 88 +- addons/product/i18n/sv_SV.po | 36 +- addons/product/i18n/tr_TR.po | 84 +- addons/product/i18n/uk_UK.po | 92 +- addons/product/i18n/zh_CN.po | 90 +- addons/product/i18n/zh_TW.po | 88 +- addons/product_margin/i18n/ar_AR.po | 4 +- addons/product_margin/i18n/bg_BG.po | 4 +- addons/product_margin/i18n/bs_BS.po | 4 +- addons/product_margin/i18n/ca_ES.po | 4 +- addons/product_margin/i18n/cs_CS.po | 4 +- addons/product_margin/i18n/cs_CZ.po | 4 +- addons/product_margin/i18n/de_DE.po | 4 +- addons/product_margin/i18n/es_AR.po | 4 +- addons/product_margin/i18n/es_ES.po | 4 +- addons/product_margin/i18n/et_EE.po | 98 +- addons/product_margin/i18n/fr_FR.po | 4 +- addons/product_margin/i18n/hr_HR.po | 4 +- addons/product_margin/i18n/hu_HU.po | 4 +- addons/product_margin/i18n/it_IT.po | 4 +- addons/product_margin/i18n/lt_LT.po | 4 +- addons/product_margin/i18n/nl_BE.po | 4 +- addons/product_margin/i18n/nl_NL.po | 4 +- addons/product_margin/i18n/pl_PL.po | 4 +- addons/product_margin/i18n/product_margin.pot | 4 +- addons/product_margin/i18n/pt_BR.po | 4 +- addons/product_margin/i18n/pt_PT.po | 4 +- addons/product_margin/i18n/ro_RO.po | 4 +- addons/product_margin/i18n/ru_RU.po | 4 +- addons/product_margin/i18n/sl_SL.po | 4 +- addons/product_margin/i18n/sv_SE.po | 4 +- addons/product_margin/i18n/sv_SV.po | 6 +- addons/product_margin/i18n/tr_TR.po | 4 +- addons/product_margin/i18n/uk_UK.po | 4 +- addons/product_margin/i18n/zh_CN.po | 4 +- addons/product_margin/i18n/zh_TW.po | 4 +- addons/profile_accounting/i18n/ar_AR.po | 4 +- addons/profile_accounting/i18n/bg_BG.po | 4 +- addons/profile_accounting/i18n/bs_BS.po | 4 +- addons/profile_accounting/i18n/ca_ES.po | 4 +- addons/profile_accounting/i18n/cs_CS.po | 9 +- addons/profile_accounting/i18n/cs_CZ.po | 4 +- addons/profile_accounting/i18n/de_DE.po | 4 +- addons/profile_accounting/i18n/es_AR.po | 4 +- addons/profile_accounting/i18n/es_ES.po | 4 +- addons/profile_accounting/i18n/et_EE.po | 12 +- addons/profile_accounting/i18n/fr_FR.po | 4 +- addons/profile_accounting/i18n/hr_HR.po | 4 +- addons/profile_accounting/i18n/hu_HU.po | 4 +- addons/profile_accounting/i18n/it_IT.po | 4 +- addons/profile_accounting/i18n/lt_LT.po | 4 +- addons/profile_accounting/i18n/nl_BE.po | 4 +- addons/profile_accounting/i18n/nl_NL.po | 4 +- addons/profile_accounting/i18n/pl_PL.po | 4 +- .../i18n/profile_accounting.pot | 4 +- addons/profile_accounting/i18n/pt_BR.po | 4 +- addons/profile_accounting/i18n/pt_PT.po | 4 +- addons/profile_accounting/i18n/ro_RO.po | 4 +- addons/profile_accounting/i18n/ru_RU.po | 4 +- addons/profile_accounting/i18n/sl_SL.po | 4 +- addons/profile_accounting/i18n/sv_SE.po | 4 +- addons/profile_accounting/i18n/sv_SV.po | 9 +- addons/profile_accounting/i18n/tr_TR.po | 4 +- addons/profile_accounting/i18n/uk_UK.po | 4 +- addons/profile_accounting/i18n/zh_CN.po | 4 +- addons/profile_accounting/i18n/zh_TW.po | 4 +- addons/profile_association/i18n/ar_AR.po | 4 +- addons/profile_association/i18n/bg_BG.po | 4 +- addons/profile_association/i18n/bs_BS.po | 4 +- addons/profile_association/i18n/ca_ES.po | 4 +- addons/profile_association/i18n/cs_CS.po | 9 +- addons/profile_association/i18n/cs_CZ.po | 4 +- addons/profile_association/i18n/de_DE.po | 4 +- addons/profile_association/i18n/es_AR.po | 4 +- addons/profile_association/i18n/es_ES.po | 4 +- addons/profile_association/i18n/et_EE.po | 44 +- addons/profile_association/i18n/fr_FR.po | 4 +- addons/profile_association/i18n/hr_HR.po | 4 +- addons/profile_association/i18n/hu_HU.po | 4 +- addons/profile_association/i18n/it_IT.po | 4 +- addons/profile_association/i18n/lt_LT.po | 4 +- addons/profile_association/i18n/nl_BE.po | 4 +- addons/profile_association/i18n/nl_NL.po | 4 +- addons/profile_association/i18n/pl_PL.po | 4 +- .../i18n/profile_association.pot | 4 +- addons/profile_association/i18n/pt_BR.po | 4 +- addons/profile_association/i18n/pt_PT.po | 4 +- addons/profile_association/i18n/ro_RO.po | 4 +- addons/profile_association/i18n/ru_RU.po | 4 +- addons/profile_association/i18n/sl_SL.po | 4 +- addons/profile_association/i18n/sv_SE.po | 4 +- addons/profile_association/i18n/sv_SV.po | 9 +- addons/profile_association/i18n/tr_TR.po | 4 +- addons/profile_association/i18n/uk_UK.po | 4 +- addons/profile_association/i18n/zh_CN.po | 4 +- addons/profile_association/i18n/zh_TW.po | 4 +- addons/profile_auction/i18n/ar_AR.po | 4 +- addons/profile_auction/i18n/bg_BG.po | 4 +- addons/profile_auction/i18n/bs_BS.po | 4 +- addons/profile_auction/i18n/ca_ES.po | 4 +- addons/profile_auction/i18n/cs_CS.po | 4 +- addons/profile_auction/i18n/cs_CZ.po | 4 +- addons/profile_auction/i18n/de_DE.po | 4 +- addons/profile_auction/i18n/es_AR.po | 4 +- addons/profile_auction/i18n/es_ES.po | 4 +- addons/profile_auction/i18n/et_EE.po | 6 +- addons/profile_auction/i18n/fr_FR.po | 4 +- addons/profile_auction/i18n/hr_HR.po | 4 +- addons/profile_auction/i18n/hu_HU.po | 4 +- addons/profile_auction/i18n/it_IT.po | 4 +- addons/profile_auction/i18n/lt_LT.po | 4 +- addons/profile_auction/i18n/nl_BE.po | 4 +- addons/profile_auction/i18n/nl_NL.po | 4 +- addons/profile_auction/i18n/pl_PL.po | 4 +- .../profile_auction/i18n/profile_auction.pot | 4 +- addons/profile_auction/i18n/pt_BR.po | 4 +- addons/profile_auction/i18n/pt_PT.po | 4 +- addons/profile_auction/i18n/ro_RO.po | 4 +- addons/profile_auction/i18n/ru_RU.po | 4 +- addons/profile_auction/i18n/sl_SL.po | 4 +- addons/profile_auction/i18n/sv_SE.po | 4 +- addons/profile_auction/i18n/sv_SV.po | 4 +- addons/profile_auction/i18n/tr_TR.po | 4 +- addons/profile_auction/i18n/uk_UK.po | 4 +- addons/profile_auction/i18n/zh_CN.po | 4 +- addons/profile_auction/i18n/zh_TW.po | 4 +- addons/profile_crm/i18n/ar_AR.po | 4 +- addons/profile_crm/i18n/bg_BG.po | 4 +- addons/profile_crm/i18n/bs_BS.po | 4 +- addons/profile_crm/i18n/ca_ES.po | 4 +- addons/profile_crm/i18n/cs_CS.po | 4 +- addons/profile_crm/i18n/cs_CZ.po | 4 +- addons/profile_crm/i18n/de_DE.po | 4 +- addons/profile_crm/i18n/es_AR.po | 4 +- addons/profile_crm/i18n/es_ES.po | 4 +- addons/profile_crm/i18n/et_EE.po | 6 +- addons/profile_crm/i18n/fr_FR.po | 4 +- addons/profile_crm/i18n/hr_HR.po | 4 +- addons/profile_crm/i18n/hu_HU.po | 4 +- addons/profile_crm/i18n/it_IT.po | 4 +- addons/profile_crm/i18n/lt_LT.po | 4 +- addons/profile_crm/i18n/nl_BE.po | 4 +- addons/profile_crm/i18n/nl_NL.po | 4 +- addons/profile_crm/i18n/pl_PL.po | 4 +- addons/profile_crm/i18n/profile_crm.pot | 4 +- addons/profile_crm/i18n/pt_BR.po | 4 +- addons/profile_crm/i18n/pt_PT.po | 4 +- addons/profile_crm/i18n/ro_RO.po | 4 +- addons/profile_crm/i18n/ru_RU.po | 4 +- addons/profile_crm/i18n/sl_SL.po | 4 +- addons/profile_crm/i18n/sv_SE.po | 4 +- addons/profile_crm/i18n/sv_SV.po | 4 +- addons/profile_crm/i18n/tr_TR.po | 4 +- addons/profile_crm/i18n/uk_UK.po | 4 +- addons/profile_crm/i18n/zh_CN.po | 4 +- addons/profile_crm/i18n/zh_TW.po | 4 +- addons/profile_manufacturing/i18n/ar_AR.po | 4 +- addons/profile_manufacturing/i18n/bg_BG.po | 4 +- addons/profile_manufacturing/i18n/bs_BS.po | 4 +- addons/profile_manufacturing/i18n/ca_ES.po | 4 +- addons/profile_manufacturing/i18n/cs_CS.po | 9 +- addons/profile_manufacturing/i18n/cs_CZ.po | 4 +- addons/profile_manufacturing/i18n/de_DE.po | 4 +- addons/profile_manufacturing/i18n/es_AR.po | 4 +- addons/profile_manufacturing/i18n/es_ES.po | 4 +- addons/profile_manufacturing/i18n/et_EE.po | 6 +- addons/profile_manufacturing/i18n/fr_FR.po | 4 +- addons/profile_manufacturing/i18n/hr_HR.po | 4 +- addons/profile_manufacturing/i18n/hu_HU.po | 4 +- addons/profile_manufacturing/i18n/it_IT.po | 4 +- addons/profile_manufacturing/i18n/lt_LT.po | 4 +- addons/profile_manufacturing/i18n/nl_BE.po | 4 +- addons/profile_manufacturing/i18n/nl_NL.po | 4 +- addons/profile_manufacturing/i18n/pl_PL.po | 4 +- .../i18n/profile_manufacturing.pot | 4 +- addons/profile_manufacturing/i18n/pt_BR.po | 4 +- addons/profile_manufacturing/i18n/pt_PT.po | 4 +- addons/profile_manufacturing/i18n/ro_RO.po | 4 +- addons/profile_manufacturing/i18n/ru_RU.po | 4 +- addons/profile_manufacturing/i18n/sl_SL.po | 4 +- addons/profile_manufacturing/i18n/sv_SE.po | 4 +- addons/profile_manufacturing/i18n/sv_SV.po | 9 +- addons/profile_manufacturing/i18n/tr_TR.po | 4 +- addons/profile_manufacturing/i18n/uk_UK.po | 4 +- addons/profile_manufacturing/i18n/zh_CN.po | 4 +- addons/profile_manufacturing/i18n/zh_TW.po | 4 +- addons/profile_service/i18n/ar_AR.po | 4 +- addons/profile_service/i18n/bg_BG.po | 4 +- addons/profile_service/i18n/bs_BS.po | 4 +- addons/profile_service/i18n/ca_ES.po | 4 +- addons/profile_service/i18n/cs_CS.po | 17 +- addons/profile_service/i18n/cs_CZ.po | 4 +- addons/profile_service/i18n/de_DE.po | 4 +- addons/profile_service/i18n/es_AR.po | 4 +- addons/profile_service/i18n/es_ES.po | 4 +- addons/profile_service/i18n/et_EE.po | 12 +- addons/profile_service/i18n/fr_FR.po | 4 +- addons/profile_service/i18n/hr_HR.po | 4 +- addons/profile_service/i18n/hu_HU.po | 4 +- addons/profile_service/i18n/it_IT.po | 4 +- addons/profile_service/i18n/lt_LT.po | 4 +- addons/profile_service/i18n/nl_BE.po | 4 +- addons/profile_service/i18n/nl_NL.po | 4 +- addons/profile_service/i18n/pl_PL.po | 4 +- .../profile_service/i18n/profile_service.pot | 4 +- addons/profile_service/i18n/pt_BR.po | 4 +- addons/profile_service/i18n/pt_PT.po | 4 +- addons/profile_service/i18n/ro_RO.po | 4 +- addons/profile_service/i18n/ru_RU.po | 4 +- addons/profile_service/i18n/sl_SL.po | 4 +- addons/profile_service/i18n/sv_SE.po | 4 +- addons/profile_service/i18n/sv_SV.po | 17 +- addons/profile_service/i18n/tr_TR.po | 4 +- addons/profile_service/i18n/uk_UK.po | 4 +- addons/profile_service/i18n/zh_CN.po | 4 +- addons/profile_service/i18n/zh_TW.po | 4 +- addons/project/i18n/ar_AR.po | 60 +- addons/project/i18n/bg_BG.po | 64 +- addons/project/i18n/bs_BS.po | 60 +- addons/project/i18n/ca_ES.po | 70 +- addons/project/i18n/cs_CS.po | 79 +- addons/project/i18n/cs_CZ.po | 64 +- addons/project/i18n/de_DE.po | 70 +- addons/project/i18n/es_AR.po | 60 +- addons/project/i18n/es_ES.po | 70 +- addons/project/i18n/et_EE.po | 99 +- addons/project/i18n/fr_FR.po | 70 +- addons/project/i18n/hr_HR.po | 60 +- addons/project/i18n/hu_HU.po | 60 +- addons/project/i18n/it_IT.po | 64 +- addons/project/i18n/lt_LT.po | 60 +- addons/project/i18n/nl_BE.po | 60 +- addons/project/i18n/nl_NL.po | 64 +- addons/project/i18n/pl_PL.po | 60 +- addons/project/i18n/project.pot | 60 +- addons/project/i18n/pt_BR.po | 68 +- addons/project/i18n/pt_PT.po | 64 +- addons/project/i18n/ro_RO.po | 60 +- addons/project/i18n/ru_RU.po | 64 +- addons/project/i18n/sl_SL.po | 60 +- addons/project/i18n/sv_SE.po | 60 +- addons/project/i18n/sv_SV.po | 75 +- addons/project/i18n/tr_TR.po | 60 +- addons/project/i18n/uk_UK.po | 64 +- addons/project/i18n/zh_CN.po | 64 +- addons/project/i18n/zh_TW.po | 60 +- addons/project_gtd/i18n/ar_AR.po | 10 +- addons/project_gtd/i18n/bg_BG.po | 10 +- addons/project_gtd/i18n/bs_BS.po | 10 +- addons/project_gtd/i18n/ca_ES.po | 10 +- addons/project_gtd/i18n/cs_CS.po | 58 +- addons/project_gtd/i18n/cs_CZ.po | 10 +- addons/project_gtd/i18n/de_DE.po | 10 +- addons/project_gtd/i18n/es_AR.po | 10 +- addons/project_gtd/i18n/es_ES.po | 10 +- addons/project_gtd/i18n/et_EE.po | 112 +- addons/project_gtd/i18n/fr_FR.po | 10 +- addons/project_gtd/i18n/hr_HR.po | 10 +- addons/project_gtd/i18n/hu_HU.po | 10 +- addons/project_gtd/i18n/it_IT.po | 10 +- addons/project_gtd/i18n/lt_LT.po | 10 +- addons/project_gtd/i18n/nl_BE.po | 10 +- addons/project_gtd/i18n/nl_NL.po | 10 +- addons/project_gtd/i18n/pl_PL.po | 10 +- addons/project_gtd/i18n/project_gtd.pot | 10 +- addons/project_gtd/i18n/pt_BR.po | 10 +- addons/project_gtd/i18n/pt_PT.po | 10 +- addons/project_gtd/i18n/ro_RO.po | 10 +- addons/project_gtd/i18n/ru_RU.po | 10 +- addons/project_gtd/i18n/sl_SL.po | 10 +- addons/project_gtd/i18n/sv_SE.po | 10 +- addons/project_gtd/i18n/sv_SV.po | 58 +- addons/project_gtd/i18n/tr_TR.po | 10 +- addons/project_gtd/i18n/uk_UK.po | 10 +- addons/project_gtd/i18n/zh_CN.po | 10 +- addons/project_gtd/i18n/zh_TW.po | 10 +- addons/project_mrp/i18n/ar_AR.po | 4 +- addons/project_mrp/i18n/bg_BG.po | 4 +- addons/project_mrp/i18n/bs_BS.po | 4 +- addons/project_mrp/i18n/ca_ES.po | 4 +- addons/project_mrp/i18n/cs_CS.po | 4 +- addons/project_mrp/i18n/cs_CZ.po | 4 +- addons/project_mrp/i18n/de_DE.po | 4 +- addons/project_mrp/i18n/es_AR.po | 4 +- addons/project_mrp/i18n/es_ES.po | 4 +- addons/project_mrp/i18n/et_EE.po | 24 +- addons/project_mrp/i18n/fr_FR.po | 4 +- addons/project_mrp/i18n/hr_HR.po | 4 +- addons/project_mrp/i18n/hu_HU.po | 4 +- addons/project_mrp/i18n/it_IT.po | 4 +- addons/project_mrp/i18n/lt_LT.po | 4 +- addons/project_mrp/i18n/nl_BE.po | 4 +- addons/project_mrp/i18n/nl_NL.po | 4 +- addons/project_mrp/i18n/pl_PL.po | 4 +- addons/project_mrp/i18n/project_mrp.pot | 4 +- addons/project_mrp/i18n/pt_BR.po | 4 +- addons/project_mrp/i18n/pt_PT.po | 4 +- addons/project_mrp/i18n/ro_RO.po | 4 +- addons/project_mrp/i18n/ru_RU.po | 4 +- addons/project_mrp/i18n/sl_SL.po | 4 +- addons/project_mrp/i18n/sv_SE.po | 4 +- addons/project_mrp/i18n/sv_SV.po | 4 +- addons/project_mrp/i18n/tr_TR.po | 4 +- addons/project_mrp/i18n/uk_UK.po | 4 +- addons/project_mrp/i18n/zh_CN.po | 4 +- addons/project_mrp/i18n/zh_TW.po | 4 +- addons/project_retro_planning/i18n/ar_AR.po | 4 +- addons/project_retro_planning/i18n/bg_BG.po | 4 +- addons/project_retro_planning/i18n/bs_BS.po | 4 +- addons/project_retro_planning/i18n/ca_ES.po | 4 +- addons/project_retro_planning/i18n/cs_CS.po | 4 +- addons/project_retro_planning/i18n/cs_CZ.po | 4 +- addons/project_retro_planning/i18n/de_DE.po | 4 +- addons/project_retro_planning/i18n/es_AR.po | 4 +- addons/project_retro_planning/i18n/es_ES.po | 4 +- addons/project_retro_planning/i18n/et_EE.po | 6 +- addons/project_retro_planning/i18n/fr_FR.po | 4 +- addons/project_retro_planning/i18n/hr_HR.po | 4 +- addons/project_retro_planning/i18n/hu_HU.po | 4 +- addons/project_retro_planning/i18n/it_IT.po | 4 +- addons/project_retro_planning/i18n/lt_LT.po | 4 +- addons/project_retro_planning/i18n/nl_BE.po | 4 +- addons/project_retro_planning/i18n/nl_NL.po | 4 +- addons/project_retro_planning/i18n/pl_PL.po | 4 +- .../i18n/project_retro_planning.pot | 4 +- addons/project_retro_planning/i18n/pt_BR.po | 4 +- addons/project_retro_planning/i18n/pt_PT.po | 4 +- addons/project_retro_planning/i18n/ro_RO.po | 4 +- addons/project_retro_planning/i18n/ru_RU.po | 4 +- addons/project_retro_planning/i18n/sl_SL.po | 4 +- addons/project_retro_planning/i18n/sv_SE.po | 4 +- addons/project_retro_planning/i18n/sv_SV.po | 4 +- addons/project_retro_planning/i18n/tr_TR.po | 4 +- addons/project_retro_planning/i18n/uk_UK.po | 4 +- addons/project_retro_planning/i18n/zh_CN.po | 4 +- addons/project_retro_planning/i18n/zh_TW.po | 4 +- addons/project_timesheet/i18n/ar_AR.po | 4 +- addons/project_timesheet/i18n/bg_BG.po | 4 +- addons/project_timesheet/i18n/bs_BS.po | 4 +- addons/project_timesheet/i18n/ca_ES.po | 4 +- addons/project_timesheet/i18n/cs_CS.po | 4 +- addons/project_timesheet/i18n/cs_CZ.po | 4 +- addons/project_timesheet/i18n/de_DE.po | 4 +- addons/project_timesheet/i18n/es_AR.po | 4 +- addons/project_timesheet/i18n/es_ES.po | 4 +- addons/project_timesheet/i18n/et_EE.po | 8 +- addons/project_timesheet/i18n/fr_FR.po | 4 +- addons/project_timesheet/i18n/hr_HR.po | 4 +- addons/project_timesheet/i18n/hu_HU.po | 4 +- addons/project_timesheet/i18n/it_IT.po | 4 +- addons/project_timesheet/i18n/lt_LT.po | 4 +- addons/project_timesheet/i18n/nl_BE.po | 4 +- addons/project_timesheet/i18n/nl_NL.po | 4 +- addons/project_timesheet/i18n/pl_PL.po | 4 +- .../i18n/project_timesheet.pot | 4 +- addons/project_timesheet/i18n/pt_BR.po | 4 +- addons/project_timesheet/i18n/pt_PT.po | 4 +- addons/project_timesheet/i18n/ro_RO.po | 4 +- addons/project_timesheet/i18n/ru_RU.po | 4 +- addons/project_timesheet/i18n/sl_SL.po | 4 +- addons/project_timesheet/i18n/sv_SE.po | 4 +- addons/project_timesheet/i18n/sv_SV.po | 4 +- addons/project_timesheet/i18n/tr_TR.po | 4 +- addons/project_timesheet/i18n/uk_UK.po | 4 +- addons/project_timesheet/i18n/zh_CN.po | 4 +- addons/project_timesheet/i18n/zh_TW.po | 4 +- addons/purchase/i18n/ar_AR.po | 14 +- addons/purchase/i18n/bg_BG.po | 14 +- addons/purchase/i18n/bs_BS.po | 14 +- addons/purchase/i18n/ca_ES.po | 14 +- addons/purchase/i18n/cs_CS.po | 19 +- addons/purchase/i18n/cs_CZ.po | 14 +- addons/purchase/i18n/de_DE.po | 14 +- addons/purchase/i18n/es_AR.po | 14 +- addons/purchase/i18n/es_ES.po | 14 +- addons/purchase/i18n/et_EE.po | 179 +- addons/purchase/i18n/fr_FR.po | 14 +- addons/purchase/i18n/hr_HR.po | 14 +- addons/purchase/i18n/hu_HU.po | 14 +- addons/purchase/i18n/it_IT.po | 14 +- addons/purchase/i18n/lt_LT.po | 14 +- addons/purchase/i18n/nl_BE.po | 14 +- addons/purchase/i18n/nl_NL.po | 14 +- addons/purchase/i18n/pl_PL.po | 14 +- addons/purchase/i18n/pt_BR.po | 14 +- addons/purchase/i18n/pt_PT.po | 14 +- addons/purchase/i18n/purchase.pot | 14 +- addons/purchase/i18n/ro_RO.po | 14 +- addons/purchase/i18n/ru_RU.po | 14 +- addons/purchase/i18n/sl_SL.po | 14 +- addons/purchase/i18n/sv_SE.po | 14 +- addons/purchase/i18n/sv_SV.po | 19 +- addons/purchase/i18n/tr_TR.po | 14 +- addons/purchase/i18n/uk_UK.po | 14 +- addons/purchase/i18n/zh_CN.po | 14 +- addons/purchase/i18n/zh_TW.po | 14 +- addons/purchase_analytic_plans/i18n/ar_AR.po | 4 +- addons/purchase_analytic_plans/i18n/bg_BG.po | 4 +- addons/purchase_analytic_plans/i18n/bs_BS.po | 4 +- addons/purchase_analytic_plans/i18n/ca_ES.po | 4 +- addons/purchase_analytic_plans/i18n/cs_CS.po | 4 +- addons/purchase_analytic_plans/i18n/cs_CZ.po | 4 +- addons/purchase_analytic_plans/i18n/de_DE.po | 4 +- addons/purchase_analytic_plans/i18n/es_AR.po | 4 +- addons/purchase_analytic_plans/i18n/es_ES.po | 4 +- addons/purchase_analytic_plans/i18n/et_EE.po | 8 +- addons/purchase_analytic_plans/i18n/fr_FR.po | 4 +- addons/purchase_analytic_plans/i18n/hr_HR.po | 4 +- addons/purchase_analytic_plans/i18n/hu_HU.po | 4 +- addons/purchase_analytic_plans/i18n/it_IT.po | 4 +- addons/purchase_analytic_plans/i18n/lt_LT.po | 4 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 4 +- addons/purchase_analytic_plans/i18n/nl_NL.po | 4 +- addons/purchase_analytic_plans/i18n/pl_PL.po | 4 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 4 +- addons/purchase_analytic_plans/i18n/pt_PT.po | 4 +- .../i18n/purchase_analytic_plans.pot | 4 +- addons/purchase_analytic_plans/i18n/ro_RO.po | 4 +- addons/purchase_analytic_plans/i18n/ru_RU.po | 4 +- addons/purchase_analytic_plans/i18n/sl_SL.po | 4 +- addons/purchase_analytic_plans/i18n/sv_SE.po | 4 +- addons/purchase_analytic_plans/i18n/sv_SV.po | 4 +- addons/purchase_analytic_plans/i18n/tr_TR.po | 4 +- addons/purchase_analytic_plans/i18n/uk_UK.po | 4 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 4 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 4 +- addons/report_account/i18n/ar_AR.po | 233 +- addons/report_account/i18n/bg_BG.po | 201 +- addons/report_account/i18n/bs_BS.po | 199 +- addons/report_account/i18n/ca_ES.po | 207 +- addons/report_account/i18n/cs_CS.po | 209 +- addons/report_account/i18n/cs_CZ.po | 233 +- addons/report_account/i18n/de_DE.po | 207 +- addons/report_account/i18n/es_AR.po | 233 +- addons/report_account/i18n/es_ES.po | 207 +- addons/report_account/i18n/et_EE.po | 211 +- addons/report_account/i18n/fr_FR.po | 207 +- addons/report_account/i18n/hr_HR.po | 233 +- addons/report_account/i18n/hu_HU.po | 233 +- addons/report_account/i18n/id_ID.po | 79 +- addons/report_account/i18n/it_IT.po | 207 +- addons/report_account/i18n/lt_LT.po | 233 +- addons/report_account/i18n/nl_BE.po | 233 +- addons/report_account/i18n/nl_NL.po | 207 +- addons/report_account/i18n/pl_PL.po | 201 +- addons/report_account/i18n/pt_BR.po | 201 +- addons/report_account/i18n/pt_PT.po | 207 +- addons/report_account/i18n/report_account.pot | 233 +- addons/report_account/i18n/ro_RO.po | 233 +- addons/report_account/i18n/ru_RU.po | 207 +- addons/report_account/i18n/sl_SL.po | 201 +- addons/report_account/i18n/sv_SE.po | 233 +- addons/report_account/i18n/sv_SV.po | 209 +- addons/report_account/i18n/tr_TR.po | 199 +- addons/report_account/i18n/uk_UK.po | 207 +- addons/report_account/i18n/zh_CN.po | 233 +- addons/report_account/i18n/zh_TW.po | 233 +- addons/report_analytic/i18n/ar_AR.po | 4 +- addons/report_analytic/i18n/bg_BG.po | 4 +- addons/report_analytic/i18n/bs_BS.po | 4 +- addons/report_analytic/i18n/ca_ES.po | 4 +- addons/report_analytic/i18n/cs_CS.po | 9 +- addons/report_analytic/i18n/cs_CZ.po | 4 +- addons/report_analytic/i18n/de_DE.po | 4 +- addons/report_analytic/i18n/es_AR.po | 4 +- addons/report_analytic/i18n/es_ES.po | 4 +- addons/report_analytic/i18n/et_EE.po | 10 +- addons/report_analytic/i18n/fr_FR.po | 4 +- addons/report_analytic/i18n/hr_HR.po | 4 +- addons/report_analytic/i18n/hu_HU.po | 4 +- addons/report_analytic/i18n/it_IT.po | 4 +- addons/report_analytic/i18n/lt_LT.po | 4 +- addons/report_analytic/i18n/nl_BE.po | 4 +- addons/report_analytic/i18n/nl_NL.po | 4 +- addons/report_analytic/i18n/pl_PL.po | 4 +- addons/report_analytic/i18n/pt_BR.po | 4 +- addons/report_analytic/i18n/pt_PT.po | 4 +- .../report_analytic/i18n/report_analytic.pot | 4 +- addons/report_analytic/i18n/ro_RO.po | 4 +- addons/report_analytic/i18n/ru_RU.po | 4 +- addons/report_analytic/i18n/sl_SL.po | 4 +- addons/report_analytic/i18n/sv_SE.po | 4 +- addons/report_analytic/i18n/sv_SV.po | 9 +- addons/report_analytic/i18n/tr_TR.po | 4 +- addons/report_analytic/i18n/uk_UK.po | 4 +- addons/report_analytic/i18n/zh_CN.po | 4 +- addons/report_analytic/i18n/zh_TW.po | 4 +- addons/report_analytic_line/i18n/ar_AR.po | 4 +- addons/report_analytic_line/i18n/bg_BG.po | 4 +- addons/report_analytic_line/i18n/bs_BS.po | 4 +- addons/report_analytic_line/i18n/ca_ES.po | 4 +- addons/report_analytic_line/i18n/cs_CS.po | 9 +- addons/report_analytic_line/i18n/cs_CZ.po | 4 +- addons/report_analytic_line/i18n/de_DE.po | 4 +- addons/report_analytic_line/i18n/es_AR.po | 4 +- addons/report_analytic_line/i18n/es_ES.po | 4 +- addons/report_analytic_line/i18n/et_EE.po | 6 +- addons/report_analytic_line/i18n/fr_FR.po | 4 +- addons/report_analytic_line/i18n/hr_HR.po | 4 +- addons/report_analytic_line/i18n/hu_HU.po | 4 +- addons/report_analytic_line/i18n/it_IT.po | 4 +- addons/report_analytic_line/i18n/lt_LT.po | 4 +- addons/report_analytic_line/i18n/nl_BE.po | 4 +- addons/report_analytic_line/i18n/nl_NL.po | 4 +- addons/report_analytic_line/i18n/pl_PL.po | 4 +- addons/report_analytic_line/i18n/pt_BR.po | 4 +- addons/report_analytic_line/i18n/pt_PT.po | 4 +- .../i18n/report_analytic_line.pot | 4 +- addons/report_analytic_line/i18n/ro_RO.po | 4 +- addons/report_analytic_line/i18n/ru_RU.po | 4 +- addons/report_analytic_line/i18n/sl_SL.po | 4 +- addons/report_analytic_line/i18n/sv_SE.po | 4 +- addons/report_analytic_line/i18n/sv_SV.po | 9 +- addons/report_analytic_line/i18n/tr_TR.po | 4 +- addons/report_analytic_line/i18n/uk_UK.po | 4 +- addons/report_analytic_line/i18n/zh_CN.po | 4 +- addons/report_analytic_line/i18n/zh_TW.po | 4 +- addons/report_analytic_planning/i18n/ar_AR.po | 4 +- addons/report_analytic_planning/i18n/bg_BG.po | 4 +- addons/report_analytic_planning/i18n/bs_BS.po | 4 +- addons/report_analytic_planning/i18n/ca_ES.po | 4 +- addons/report_analytic_planning/i18n/cs_CS.po | 19 +- addons/report_analytic_planning/i18n/cs_CZ.po | 4 +- addons/report_analytic_planning/i18n/de_DE.po | 4 +- addons/report_analytic_planning/i18n/es_AR.po | 4 +- addons/report_analytic_planning/i18n/es_ES.po | 4 +- addons/report_analytic_planning/i18n/et_EE.po | 16 +- addons/report_analytic_planning/i18n/fr_FR.po | 4 +- addons/report_analytic_planning/i18n/hr_HR.po | 4 +- addons/report_analytic_planning/i18n/hu_HU.po | 4 +- addons/report_analytic_planning/i18n/it_IT.po | 4 +- addons/report_analytic_planning/i18n/lt_LT.po | 4 +- addons/report_analytic_planning/i18n/nl_BE.po | 4 +- addons/report_analytic_planning/i18n/nl_NL.po | 4 +- addons/report_analytic_planning/i18n/pl_PL.po | 4 +- addons/report_analytic_planning/i18n/pt_BR.po | 4 +- addons/report_analytic_planning/i18n/pt_PT.po | 4 +- .../i18n/report_analytic_planning.pot | 4 +- addons/report_analytic_planning/i18n/ro_RO.po | 4 +- addons/report_analytic_planning/i18n/ru_RU.po | 4 +- addons/report_analytic_planning/i18n/sl_SL.po | 4 +- addons/report_analytic_planning/i18n/sv_SE.po | 4 +- addons/report_analytic_planning/i18n/sv_SV.po | 19 +- addons/report_analytic_planning/i18n/tr_TR.po | 4 +- addons/report_analytic_planning/i18n/uk_UK.po | 4 +- addons/report_analytic_planning/i18n/zh_CN.po | 4 +- addons/report_analytic_planning/i18n/zh_TW.po | 4 +- addons/report_crm/i18n/ar_AR.po | 146 +- addons/report_crm/i18n/bg_BG.po | 148 +- addons/report_crm/i18n/bs_BS.po | 146 +- addons/report_crm/i18n/ca_ES.po | 156 +- addons/report_crm/i18n/cs_CS.po | 151 +- addons/report_crm/i18n/cs_CZ.po | 146 +- addons/report_crm/i18n/de_DE.po | 156 +- addons/report_crm/i18n/es_AR.po | 146 +- addons/report_crm/i18n/es_ES.po | 156 +- addons/report_crm/i18n/et_EE.po | 171 +- addons/report_crm/i18n/fr_FR.po | 156 +- addons/report_crm/i18n/hr_HR.po | 146 +- addons/report_crm/i18n/hu_HU.po | 146 +- addons/report_crm/i18n/it_IT.po | 156 +- addons/report_crm/i18n/lt_LT.po | 146 +- addons/report_crm/i18n/nl_BE.po | 148 +- addons/report_crm/i18n/nl_NL.po | 148 +- addons/report_crm/i18n/pl_PL.po | 148 +- addons/report_crm/i18n/pt_BR.po | 156 +- addons/report_crm/i18n/pt_PT.po | 156 +- addons/report_crm/i18n/report_crm.pot | 146 +- addons/report_crm/i18n/ro_RO.po | 146 +- addons/report_crm/i18n/ru_RU.po | 148 +- addons/report_crm/i18n/sl_SL.po | 148 +- addons/report_crm/i18n/sv_SE.po | 148 +- addons/report_crm/i18n/sv_SV.po | 155 +- addons/report_crm/i18n/tr_TR.po | 146 +- addons/report_crm/i18n/uk_UK.po | 156 +- addons/report_crm/i18n/zh_CN.po | 146 +- addons/report_crm/i18n/zh_TW.po | 146 +- addons/report_document/i18n/ar_AR.po | 4 +- addons/report_document/i18n/bg_BG.po | 4 +- addons/report_document/i18n/bs_BS.po | 4 +- addons/report_document/i18n/ca_ES.po | 4 +- addons/report_document/i18n/cs_CS.po | 9 +- addons/report_document/i18n/cs_CZ.po | 4 +- addons/report_document/i18n/de_DE.po | 4 +- addons/report_document/i18n/es_AR.po | 4 +- addons/report_document/i18n/es_ES.po | 4 +- addons/report_document/i18n/et_EE.po | 12 +- addons/report_document/i18n/fr_FR.po | 4 +- addons/report_document/i18n/hr_HR.po | 4 +- addons/report_document/i18n/hu_HU.po | 4 +- addons/report_document/i18n/it_IT.po | 4 +- addons/report_document/i18n/lt_LT.po | 4 +- addons/report_document/i18n/nl_BE.po | 4 +- addons/report_document/i18n/nl_NL.po | 4 +- addons/report_document/i18n/pl_PL.po | 4 +- addons/report_document/i18n/pt_BR.po | 4 +- addons/report_document/i18n/pt_PT.po | 4 +- .../report_document/i18n/report_document.pot | 4 +- addons/report_document/i18n/ro_RO.po | 4 +- addons/report_document/i18n/ru_RU.po | 4 +- addons/report_document/i18n/sl_SL.po | 4 +- addons/report_document/i18n/sv_SE.po | 4 +- addons/report_document/i18n/sv_SV.po | 13 +- addons/report_document/i18n/tr_TR.po | 4 +- addons/report_document/i18n/uk_UK.po | 4 +- addons/report_document/i18n/zh_CN.po | 4 +- addons/report_document/i18n/zh_TW.po | 4 +- addons/report_intrastat/i18n/ar_AR.po | 28 +- addons/report_intrastat/i18n/bg_BG.po | 28 +- addons/report_intrastat/i18n/bs_BS.po | 28 +- addons/report_intrastat/i18n/ca_ES.po | 30 +- addons/report_intrastat/i18n/cs_CS.po | 33 +- addons/report_intrastat/i18n/cs_CZ.po | 28 +- addons/report_intrastat/i18n/de_DE.po | 30 +- addons/report_intrastat/i18n/es_AR.po | 28 +- addons/report_intrastat/i18n/es_ES.po | 30 +- addons/report_intrastat/i18n/et_EE.po | 50 +- addons/report_intrastat/i18n/fr_FR.po | 28 +- addons/report_intrastat/i18n/hr_HR.po | 28 +- addons/report_intrastat/i18n/hu_HU.po | 28 +- addons/report_intrastat/i18n/it_IT.po | 28 +- addons/report_intrastat/i18n/lt_LT.po | 28 +- addons/report_intrastat/i18n/nl_BE.po | 28 +- addons/report_intrastat/i18n/nl_NL.po | 28 +- addons/report_intrastat/i18n/pl_PL.po | 28 +- addons/report_intrastat/i18n/pt_BR.po | 28 +- addons/report_intrastat/i18n/pt_PT.po | 28 +- .../i18n/report_intrastat.pot | 28 +- addons/report_intrastat/i18n/ro_RO.po | 28 +- addons/report_intrastat/i18n/ru_RU.po | 28 +- addons/report_intrastat/i18n/sl_SL.po | 28 +- addons/report_intrastat/i18n/sv_SE.po | 28 +- addons/report_intrastat/i18n/sv_SV.po | 33 +- addons/report_intrastat/i18n/tr_TR.po | 28 +- addons/report_intrastat/i18n/uk_UK.po | 28 +- addons/report_intrastat/i18n/zh_CN.po | 28 +- addons/report_intrastat/i18n/zh_TW.po | 28 +- addons/report_mrp/i18n/ar_AR.po | 4 +- addons/report_mrp/i18n/bg_BG.po | 4 +- addons/report_mrp/i18n/bs_BS.po | 4 +- addons/report_mrp/i18n/ca_ES.po | 4 +- addons/report_mrp/i18n/cs_CS.po | 13 +- addons/report_mrp/i18n/cs_CZ.po | 4 +- addons/report_mrp/i18n/de_DE.po | 4 +- addons/report_mrp/i18n/es_AR.po | 4 +- addons/report_mrp/i18n/es_ES.po | 4 +- addons/report_mrp/i18n/et_EE.po | 8 +- addons/report_mrp/i18n/fr_FR.po | 4 +- addons/report_mrp/i18n/hr_HR.po | 4 +- addons/report_mrp/i18n/hu_HU.po | 4 +- addons/report_mrp/i18n/it_IT.po | 4 +- addons/report_mrp/i18n/lt_LT.po | 4 +- addons/report_mrp/i18n/nl_BE.po | 4 +- addons/report_mrp/i18n/nl_NL.po | 4 +- addons/report_mrp/i18n/pl_PL.po | 4 +- addons/report_mrp/i18n/pt_BR.po | 4 +- addons/report_mrp/i18n/pt_PT.po | 4 +- addons/report_mrp/i18n/report_mrp.pot | 4 +- addons/report_mrp/i18n/ro_RO.po | 4 +- addons/report_mrp/i18n/ru_RU.po | 4 +- addons/report_mrp/i18n/sl_SL.po | 4 +- addons/report_mrp/i18n/sv_SE.po | 4 +- addons/report_mrp/i18n/sv_SV.po | 15 +- addons/report_mrp/i18n/tr_TR.po | 4 +- addons/report_mrp/i18n/uk_UK.po | 4 +- addons/report_mrp/i18n/zh_CN.po | 4 +- addons/report_mrp/i18n/zh_TW.po | 4 +- addons/report_project/i18n/ar_AR.po | 4 +- addons/report_project/i18n/bg_BG.po | 4 +- addons/report_project/i18n/bs_BS.po | 4 +- addons/report_project/i18n/ca_ES.po | 4 +- addons/report_project/i18n/cs_CS.po | 137 +- addons/report_project/i18n/cs_CZ.po | 4 +- addons/report_project/i18n/de_DE.po | 4 +- addons/report_project/i18n/es_AR.po | 4 +- addons/report_project/i18n/es_ES.po | 4 +- addons/report_project/i18n/et_EE.po | 8 +- addons/report_project/i18n/fr_FR.po | 4 +- addons/report_project/i18n/hr_HR.po | 4 +- addons/report_project/i18n/hu_HU.po | 4 +- addons/report_project/i18n/it_IT.po | 4 +- addons/report_project/i18n/lt_LT.po | 4 +- addons/report_project/i18n/nl_BE.po | 4 +- addons/report_project/i18n/nl_NL.po | 4 +- addons/report_project/i18n/pl_PL.po | 4 +- addons/report_project/i18n/pt_BR.po | 4 +- addons/report_project/i18n/pt_PT.po | 4 +- addons/report_project/i18n/report_project.pot | 4 +- addons/report_project/i18n/ro_RO.po | 4 +- addons/report_project/i18n/ru_RU.po | 4 +- addons/report_project/i18n/sl_SL.po | 4 +- addons/report_project/i18n/sv_SE.po | 4 +- addons/report_project/i18n/sv_SV.po | 125 +- addons/report_project/i18n/tr_TR.po | 4 +- addons/report_project/i18n/uk_UK.po | 4 +- addons/report_project/i18n/zh_CN.po | 4 +- addons/report_project/i18n/zh_TW.po | 4 +- addons/report_purchase/i18n/ar_AR.po | 4 +- addons/report_purchase/i18n/bg_BG.po | 4 +- addons/report_purchase/i18n/bs_BS.po | 4 +- addons/report_purchase/i18n/ca_ES.po | 4 +- addons/report_purchase/i18n/cs_CS.po | 19 +- addons/report_purchase/i18n/cs_CZ.po | 4 +- addons/report_purchase/i18n/de_DE.po | 4 +- addons/report_purchase/i18n/es_AR.po | 4 +- addons/report_purchase/i18n/es_ES.po | 4 +- addons/report_purchase/i18n/et_EE.po | 15 +- addons/report_purchase/i18n/fr_FR.po | 4 +- addons/report_purchase/i18n/hr_HR.po | 4 +- addons/report_purchase/i18n/hu_HU.po | 4 +- addons/report_purchase/i18n/it_IT.po | 4 +- addons/report_purchase/i18n/lt_LT.po | 4 +- addons/report_purchase/i18n/nl_BE.po | 4 +- addons/report_purchase/i18n/nl_NL.po | 4 +- addons/report_purchase/i18n/pl_PL.po | 4 +- addons/report_purchase/i18n/pt_BR.po | 4 +- addons/report_purchase/i18n/pt_PT.po | 4 +- .../report_purchase/i18n/report_purchase.pot | 4 +- addons/report_purchase/i18n/ro_RO.po | 4 +- addons/report_purchase/i18n/ru_RU.po | 4 +- addons/report_purchase/i18n/sl_SL.po | 4 +- addons/report_purchase/i18n/sv_SE.po | 4 +- addons/report_purchase/i18n/sv_SV.po | 21 +- addons/report_purchase/i18n/tr_TR.po | 4 +- addons/report_purchase/i18n/uk_UK.po | 4 +- addons/report_purchase/i18n/zh_CN.po | 4 +- addons/report_purchase/i18n/zh_TW.po | 4 +- addons/report_sale/i18n/ar_AR.po | 107 +- addons/report_sale/i18n/bg_BG.po | 107 +- addons/report_sale/i18n/bs_BS.po | 107 +- addons/report_sale/i18n/ca_ES.po | 113 +- addons/report_sale/i18n/cs_CS.po | 118 +- addons/report_sale/i18n/cs_CZ.po | 107 +- addons/report_sale/i18n/de_DE.po | 113 +- addons/report_sale/i18n/es_AR.po | 109 +- addons/report_sale/i18n/es_ES.po | 113 +- addons/report_sale/i18n/et_EE.po | 141 +- addons/report_sale/i18n/fr_FR.po | 113 +- addons/report_sale/i18n/hr_HR.po | 107 +- addons/report_sale/i18n/hu_HU.po | 107 +- addons/report_sale/i18n/it_IT.po | 113 +- addons/report_sale/i18n/lt_LT.po | 107 +- addons/report_sale/i18n/nl_BE.po | 107 +- addons/report_sale/i18n/nl_NL.po | 109 +- addons/report_sale/i18n/pl_PL.po | 107 +- addons/report_sale/i18n/pt_BR.po | 107 +- addons/report_sale/i18n/pt_PT.po | 113 +- addons/report_sale/i18n/report_sale.pot | 107 +- addons/report_sale/i18n/ro_RO.po | 107 +- addons/report_sale/i18n/ru_RU.po | 107 +- addons/report_sale/i18n/sl_SL.po | 107 +- addons/report_sale/i18n/sv_SE.po | 107 +- addons/report_sale/i18n/sv_SV.po | 120 +- addons/report_sale/i18n/tr_TR.po | 107 +- addons/report_sale/i18n/uk_UK.po | 107 +- addons/report_sale/i18n/zh_CN.po | 107 +- addons/report_sale/i18n/zh_TW.po | 107 +- addons/report_task/i18n/ar_AR.po | 172 + addons/report_task/i18n/bg_BG.po | 160 + addons/report_task/i18n/bs_BS.po | 168 + addons/report_task/i18n/ca_ES.po | 164 + addons/report_task/i18n/cs_CS.po | 172 + addons/report_task/i18n/cs_CZ.po | 172 + addons/report_task/i18n/de_DE.po | 164 + addons/report_task/i18n/es_AR.po | 172 + addons/report_task/i18n/es_ES.po | 163 + addons/report_task/i18n/et_EE.po | 163 + addons/report_task/i18n/fr_FR.po | 163 + addons/report_task/i18n/hr_HR.po | 172 + addons/report_task/i18n/hu_HU.po | 172 + addons/report_task/i18n/it_IT.po | 163 + addons/report_task/i18n/lt_LT.po | 172 + addons/report_task/i18n/nl_BE.po | 168 + addons/report_task/i18n/nl_NL.po | 165 + addons/report_task/i18n/pl_PL.po | 163 + addons/report_task/i18n/pt_BR.po | 164 + addons/report_task/i18n/pt_PT.po | 164 + addons/report_task/i18n/report_task.pot | 172 + addons/report_task/i18n/ro_RO.po | 172 + addons/report_task/i18n/ru_RU.po | 160 + addons/report_task/i18n/sl_SL.po | 164 + addons/report_task/i18n/sv_SE.po | 168 + addons/report_task/i18n/sv_SV.po | 168 + addons/report_task/i18n/tr_TR.po | 168 + addons/report_task/i18n/uk_UK.po | 160 + addons/report_task/i18n/zh_CN.po | 172 + addons/report_task/i18n/zh_TW.po | 172 + addons/report_timesheet/i18n/ar_AR.po | 65 +- addons/report_timesheet/i18n/bg_BG.po | 65 +- addons/report_timesheet/i18n/bs_BS.po | 65 +- addons/report_timesheet/i18n/ca_ES.po | 71 +- addons/report_timesheet/i18n/cs_CS.po | 106 +- addons/report_timesheet/i18n/cs_CZ.po | 65 +- addons/report_timesheet/i18n/de_DE.po | 71 +- addons/report_timesheet/i18n/es_AR.po | 65 +- addons/report_timesheet/i18n/es_ES.po | 71 +- addons/report_timesheet/i18n/et_EE.po | 79 +- addons/report_timesheet/i18n/fr_FR.po | 71 +- addons/report_timesheet/i18n/hr_HR.po | 65 +- addons/report_timesheet/i18n/hu_HU.po | 65 +- addons/report_timesheet/i18n/it_IT.po | 71 +- addons/report_timesheet/i18n/lt_LT.po | 65 +- addons/report_timesheet/i18n/nl_BE.po | 65 +- addons/report_timesheet/i18n/nl_NL.po | 71 +- addons/report_timesheet/i18n/pl_PL.po | 65 +- addons/report_timesheet/i18n/pt_BR.po | 65 +- addons/report_timesheet/i18n/pt_PT.po | 71 +- .../i18n/report_timesheet.pot | 65 +- addons/report_timesheet/i18n/ro_RO.po | 65 +- addons/report_timesheet/i18n/ru_RU.po | 71 +- addons/report_timesheet/i18n/sl_SL.po | 65 +- addons/report_timesheet/i18n/sv_SE.po | 65 +- addons/report_timesheet/i18n/sv_SV.po | 106 +- addons/report_timesheet/i18n/tr_TR.po | 65 +- addons/report_timesheet/i18n/uk_UK.po | 71 +- addons/report_timesheet/i18n/zh_CN.po | 65 +- addons/report_timesheet/i18n/zh_TW.po | 65 +- addons/sale/i18n/ar_AR.po | 4 +- addons/sale/i18n/bg_BG.po | 4 +- addons/sale/i18n/bs_BS.po | 4 +- addons/sale/i18n/ca_ES.po | 4 +- addons/sale/i18n/cs_CS.po | 13 +- addons/sale/i18n/cs_CZ.po | 4 +- addons/sale/i18n/de_DE.po | 4 +- addons/sale/i18n/es_AR.po | 4 +- addons/sale/i18n/es_ES.po | 4 +- addons/sale/i18n/et_EE.po | 302 +- addons/sale/i18n/fr_FR.po | 4 +- addons/sale/i18n/hr_HR.po | 4 +- addons/sale/i18n/hu_HU.po | 4 +- addons/sale/i18n/id_ID.po | 308 +- addons/sale/i18n/it_IT.po | 6 +- addons/sale/i18n/lt_LT.po | 4 +- addons/sale/i18n/nl_BE.po | 4 +- addons/sale/i18n/nl_NL.po | 4 +- addons/sale/i18n/pl_PL.po | 4 +- addons/sale/i18n/pt_BR.po | 6 +- addons/sale/i18n/pt_PT.po | 4 +- addons/sale/i18n/ro_RO.po | 4 +- addons/sale/i18n/ru_RU.po | 4 +- addons/sale/i18n/sale.pot | 4 +- addons/sale/i18n/sl_SL.po | 4 +- addons/sale/i18n/sv_SE.po | 4 +- addons/sale/i18n/sv_SV.po | 15 +- addons/sale/i18n/tr_TR.po | 4 +- addons/sale/i18n/uk_UK.po | 4 +- addons/sale/i18n/zh_CN.po | 4 +- addons/sale/i18n/zh_TW.po | 4 +- addons/sale_analytic_plans/i18n/ar_AR.po | 4 +- addons/sale_analytic_plans/i18n/bg_BG.po | 4 +- addons/sale_analytic_plans/i18n/bs_BS.po | 4 +- addons/sale_analytic_plans/i18n/ca_ES.po | 4 +- addons/sale_analytic_plans/i18n/cs_CS.po | 4 +- addons/sale_analytic_plans/i18n/cs_CZ.po | 4 +- addons/sale_analytic_plans/i18n/de_DE.po | 4 +- addons/sale_analytic_plans/i18n/es_AR.po | 4 +- addons/sale_analytic_plans/i18n/es_ES.po | 4 +- addons/sale_analytic_plans/i18n/et_EE.po | 8 +- addons/sale_analytic_plans/i18n/fr_FR.po | 4 +- addons/sale_analytic_plans/i18n/hr_HR.po | 4 +- addons/sale_analytic_plans/i18n/hu_HU.po | 4 +- addons/sale_analytic_plans/i18n/it_IT.po | 4 +- addons/sale_analytic_plans/i18n/lt_LT.po | 4 +- addons/sale_analytic_plans/i18n/nl_BE.po | 4 +- addons/sale_analytic_plans/i18n/nl_NL.po | 4 +- addons/sale_analytic_plans/i18n/pl_PL.po | 4 +- addons/sale_analytic_plans/i18n/pt_BR.po | 4 +- addons/sale_analytic_plans/i18n/pt_PT.po | 4 +- addons/sale_analytic_plans/i18n/ro_RO.po | 4 +- addons/sale_analytic_plans/i18n/ru_RU.po | 4 +- .../i18n/sale_analytic_plans.pot | 4 +- addons/sale_analytic_plans/i18n/sl_SL.po | 4 +- addons/sale_analytic_plans/i18n/sv_SE.po | 4 +- addons/sale_analytic_plans/i18n/sv_SV.po | 4 +- addons/sale_analytic_plans/i18n/tr_TR.po | 4 +- addons/sale_analytic_plans/i18n/uk_UK.po | 4 +- addons/sale_analytic_plans/i18n/zh_CN.po | 4 +- addons/sale_analytic_plans/i18n/zh_TW.po | 4 +- addons/sale_crm/i18n/ar_AR.po | 30 +- addons/sale_crm/i18n/bg_BG.po | 30 +- addons/sale_crm/i18n/bs_BS.po | 30 +- addons/sale_crm/i18n/ca_ES.po | 32 +- addons/sale_crm/i18n/cs_CS.po | 30 +- addons/sale_crm/i18n/cs_CZ.po | 30 +- addons/sale_crm/i18n/de_DE.po | 32 +- addons/sale_crm/i18n/es_AR.po | 30 +- addons/sale_crm/i18n/es_ES.po | 32 +- addons/sale_crm/i18n/et_EE.po | 68 +- addons/sale_crm/i18n/fr_FR.po | 32 +- addons/sale_crm/i18n/hr_HR.po | 30 +- addons/sale_crm/i18n/hu_HU.po | 30 +- addons/sale_crm/i18n/it_IT.po | 32 +- addons/sale_crm/i18n/lt_LT.po | 30 +- addons/sale_crm/i18n/nl_BE.po | 30 +- addons/sale_crm/i18n/nl_NL.po | 30 +- addons/sale_crm/i18n/pl_PL.po | 30 +- addons/sale_crm/i18n/pt_BR.po | 32 +- addons/sale_crm/i18n/pt_PT.po | 30 +- addons/sale_crm/i18n/ro_RO.po | 30 +- addons/sale_crm/i18n/ru_RU.po | 30 +- addons/sale_crm/i18n/sale_crm.pot | 30 +- addons/sale_crm/i18n/sl_SL.po | 30 +- addons/sale_crm/i18n/sv_SE.po | 30 +- addons/sale_crm/i18n/sv_SV.po | 30 +- addons/sale_crm/i18n/tr_TR.po | 30 +- addons/sale_crm/i18n/uk_UK.po | 30 +- addons/sale_crm/i18n/zh_CN.po | 30 +- addons/sale_crm/i18n/zh_TW.po | 30 +- addons/sale_delivery_report/i18n/ar_AR.po | 4 +- addons/sale_delivery_report/i18n/bg_BG.po | 4 +- addons/sale_delivery_report/i18n/bs_BS.po | 4 +- addons/sale_delivery_report/i18n/ca_ES.po | 4 +- addons/sale_delivery_report/i18n/cs_CS.po | 4 +- addons/sale_delivery_report/i18n/cs_CZ.po | 4 +- addons/sale_delivery_report/i18n/de_DE.po | 4 +- addons/sale_delivery_report/i18n/es_AR.po | 4 +- addons/sale_delivery_report/i18n/es_ES.po | 4 +- addons/sale_delivery_report/i18n/et_EE.po | 10 +- addons/sale_delivery_report/i18n/fr_FR.po | 4 +- addons/sale_delivery_report/i18n/hr_HR.po | 4 +- addons/sale_delivery_report/i18n/hu_HU.po | 4 +- addons/sale_delivery_report/i18n/it_IT.po | 4 +- addons/sale_delivery_report/i18n/lt_LT.po | 4 +- addons/sale_delivery_report/i18n/nl_BE.po | 4 +- addons/sale_delivery_report/i18n/nl_NL.po | 4 +- addons/sale_delivery_report/i18n/pl_PL.po | 4 +- addons/sale_delivery_report/i18n/pt_BR.po | 4 +- addons/sale_delivery_report/i18n/pt_PT.po | 4 +- addons/sale_delivery_report/i18n/ro_RO.po | 4 +- addons/sale_delivery_report/i18n/ru_RU.po | 4 +- .../i18n/sale_delivery_report.pot | 4 +- addons/sale_delivery_report/i18n/sl_SL.po | 4 +- addons/sale_delivery_report/i18n/sv_SE.po | 4 +- addons/sale_delivery_report/i18n/sv_SV.po | 4 +- addons/sale_delivery_report/i18n/tr_TR.po | 4 +- addons/sale_delivery_report/i18n/uk_UK.po | 4 +- addons/sale_delivery_report/i18n/zh_CN.po | 4 +- addons/sale_delivery_report/i18n/zh_TW.po | 4 +- addons/sale_journal/i18n/ar_AR.po | 4 +- addons/sale_journal/i18n/bg_BG.po | 4 +- addons/sale_journal/i18n/bs_BS.po | 4 +- addons/sale_journal/i18n/ca_ES.po | 4 +- addons/sale_journal/i18n/cs_CS.po | 9 +- addons/sale_journal/i18n/cs_CZ.po | 4 +- addons/sale_journal/i18n/de_DE.po | 4 +- addons/sale_journal/i18n/es_AR.po | 4 +- addons/sale_journal/i18n/es_ES.po | 4 +- addons/sale_journal/i18n/et_EE.po | 10 +- addons/sale_journal/i18n/fr_FR.po | 4 +- addons/sale_journal/i18n/hr_HR.po | 4 +- addons/sale_journal/i18n/hu_HU.po | 4 +- addons/sale_journal/i18n/it_IT.po | 4 +- addons/sale_journal/i18n/lt_LT.po | 4 +- addons/sale_journal/i18n/nl_BE.po | 4 +- addons/sale_journal/i18n/nl_NL.po | 4 +- addons/sale_journal/i18n/pl_PL.po | 4 +- addons/sale_journal/i18n/pt_BR.po | 4 +- addons/sale_journal/i18n/pt_PT.po | 4 +- addons/sale_journal/i18n/ro_RO.po | 4 +- addons/sale_journal/i18n/ru_RU.po | 4 +- addons/sale_journal/i18n/sale_journal.pot | 4 +- addons/sale_journal/i18n/sl_SL.po | 4 +- addons/sale_journal/i18n/sv_SE.po | 4 +- addons/sale_journal/i18n/sv_SV.po | 11 +- addons/sale_journal/i18n/tr_TR.po | 4 +- addons/sale_journal/i18n/uk_UK.po | 4 +- addons/sale_journal/i18n/zh_CN.po | 4 +- addons/sale_journal/i18n/zh_TW.po | 4 +- addons/scrum/i18n/ar_AR.po | 9 +- addons/scrum/i18n/bg_BG.po | 9 +- addons/scrum/i18n/bs_BS.po | 9 +- addons/scrum/i18n/ca_ES.po | 9 +- addons/scrum/i18n/cs_CS.po | 27 +- addons/scrum/i18n/cs_CZ.po | 9 +- addons/scrum/i18n/de_DE.po | 9 +- addons/scrum/i18n/es_AR.po | 9 +- addons/scrum/i18n/es_ES.po | 9 +- addons/scrum/i18n/et_EE.po | 137 +- addons/scrum/i18n/fr_FR.po | 9 +- addons/scrum/i18n/hr_HR.po | 9 +- addons/scrum/i18n/hu_HU.po | 9 +- addons/scrum/i18n/it_IT.po | 9 +- addons/scrum/i18n/lt_LT.po | 9 +- addons/scrum/i18n/nl_BE.po | 9 +- addons/scrum/i18n/nl_NL.po | 9 +- addons/scrum/i18n/pl_PL.po | 9 +- addons/scrum/i18n/pt_BR.po | 9 +- addons/scrum/i18n/pt_PT.po | 9 +- addons/scrum/i18n/ro_RO.po | 9 +- addons/scrum/i18n/ru_RU.po | 9 +- addons/scrum/i18n/scrum.pot | 9 +- addons/scrum/i18n/sl_SL.po | 9 +- addons/scrum/i18n/sv_SE.po | 9 +- addons/scrum/i18n/sv_SV.po | 27 +- addons/scrum/i18n/tr_TR.po | 9 +- addons/scrum/i18n/uk_UK.po | 9 +- addons/scrum/i18n/zh_CN.po | 9 +- addons/scrum/i18n/zh_TW.po | 9 +- addons/stock/i18n/ar_AR.po | 16 +- addons/stock/i18n/bg_BG.po | 18 +- addons/stock/i18n/bs_BS.po | 16 +- addons/stock/i18n/ca_ES.po | 18 +- addons/stock/i18n/cs_CS.po | 72 +- addons/stock/i18n/cs_CZ.po | 16 +- addons/stock/i18n/de_DE.po | 18 +- addons/stock/i18n/es_AR.po | 16 +- addons/stock/i18n/es_ES.po | 18 +- addons/stock/i18n/et_EE.po | 843 +- addons/stock/i18n/fr_FR.po | 18 +- addons/stock/i18n/hr_HR.po | 16 +- addons/stock/i18n/hu_HU.po | 16 +- addons/stock/i18n/it_IT.po | 16 +- addons/stock/i18n/lt_LT.po | 16 +- addons/stock/i18n/nl_BE.po | 16 +- addons/stock/i18n/nl_NL.po | 18 +- addons/stock/i18n/pl_PL.po | 16 +- addons/stock/i18n/pt_BR.po | 16 +- addons/stock/i18n/pt_PT.po | 16 +- addons/stock/i18n/ro_RO.po | 16 +- addons/stock/i18n/ru_RU.po | 16 +- addons/stock/i18n/sl_SL.po | 16 +- addons/stock/i18n/stock.pot | 16 +- addons/stock/i18n/sv_SE.po | 16 +- addons/stock/i18n/sv_SV.po | 74 +- addons/stock/i18n/th_TH.po | 104 +- addons/stock/i18n/tr_TR.po | 16 +- addons/stock/i18n/uk_UK.po | 16 +- addons/stock/i18n/zh_CN.po | 16 +- addons/stock/i18n/zh_TW.po | 16 +- addons/stock_invoice_directly/i18n/ar_AR.po | 4 +- addons/stock_invoice_directly/i18n/bg_BG.po | 4 +- addons/stock_invoice_directly/i18n/bs_BS.po | 4 +- addons/stock_invoice_directly/i18n/ca_ES.po | 4 +- addons/stock_invoice_directly/i18n/cs_CS.po | 4 +- addons/stock_invoice_directly/i18n/cs_CZ.po | 4 +- addons/stock_invoice_directly/i18n/de_DE.po | 4 +- addons/stock_invoice_directly/i18n/es_AR.po | 4 +- addons/stock_invoice_directly/i18n/es_ES.po | 4 +- addons/stock_invoice_directly/i18n/et_EE.po | 6 +- addons/stock_invoice_directly/i18n/fr_FR.po | 4 +- addons/stock_invoice_directly/i18n/hr_HR.po | 4 +- addons/stock_invoice_directly/i18n/hu_HU.po | 4 +- addons/stock_invoice_directly/i18n/it_IT.po | 4 +- addons/stock_invoice_directly/i18n/lt_LT.po | 4 +- addons/stock_invoice_directly/i18n/nl_BE.po | 4 +- addons/stock_invoice_directly/i18n/nl_NL.po | 4 +- addons/stock_invoice_directly/i18n/pl_PL.po | 4 +- addons/stock_invoice_directly/i18n/pt_BR.po | 4 +- addons/stock_invoice_directly/i18n/pt_PT.po | 4 +- addons/stock_invoice_directly/i18n/ro_RO.po | 4 +- addons/stock_invoice_directly/i18n/ru_RU.po | 4 +- addons/stock_invoice_directly/i18n/sl_SL.po | 4 +- .../i18n/stock_invoice_directly.pot | 4 +- addons/stock_invoice_directly/i18n/sv_SE.po | 4 +- addons/stock_invoice_directly/i18n/sv_SV.po | 4 +- addons/stock_invoice_directly/i18n/tr_TR.po | 4 +- addons/stock_invoice_directly/i18n/uk_UK.po | 4 +- addons/stock_invoice_directly/i18n/zh_CN.po | 4 +- addons/stock_invoice_directly/i18n/zh_TW.po | 4 +- addons/stock_location/i18n/ar_AR.po | 4 +- addons/stock_location/i18n/bg_BG.po | 4 +- addons/stock_location/i18n/bs_BS.po | 4 +- addons/stock_location/i18n/ca_ES.po | 4 +- addons/stock_location/i18n/cs_CS.po | 4 +- addons/stock_location/i18n/cs_CZ.po | 4 +- addons/stock_location/i18n/de_DE.po | 4 +- addons/stock_location/i18n/es_AR.po | 4 +- addons/stock_location/i18n/es_ES.po | 4 +- addons/stock_location/i18n/et_EE.po | 9 +- addons/stock_location/i18n/fr_FR.po | 4 +- addons/stock_location/i18n/hr_HR.po | 4 +- addons/stock_location/i18n/hu_HU.po | 4 +- addons/stock_location/i18n/it_IT.po | 4 +- addons/stock_location/i18n/lt_LT.po | 4 +- addons/stock_location/i18n/nl_BE.po | 4 +- addons/stock_location/i18n/nl_NL.po | 4 +- addons/stock_location/i18n/pl_PL.po | 4 +- addons/stock_location/i18n/pt_BR.po | 4 +- addons/stock_location/i18n/pt_PT.po | 4 +- addons/stock_location/i18n/ro_RO.po | 4 +- addons/stock_location/i18n/ru_RU.po | 4 +- addons/stock_location/i18n/sl_SL.po | 4 +- addons/stock_location/i18n/stock_location.pot | 4 +- addons/stock_location/i18n/sv_SE.po | 4 +- addons/stock_location/i18n/sv_SV.po | 4 +- addons/stock_location/i18n/tr_TR.po | 4 +- addons/stock_location/i18n/uk_UK.po | 4 +- addons/stock_location/i18n/zh_CN.po | 4 +- addons/stock_location/i18n/zh_TW.po | 4 +- addons/stock_no_autopicking/i18n/ar_AR.po | 4 +- addons/stock_no_autopicking/i18n/bg_BG.po | 4 +- addons/stock_no_autopicking/i18n/bs_BS.po | 4 +- addons/stock_no_autopicking/i18n/ca_ES.po | 4 +- addons/stock_no_autopicking/i18n/cs_CS.po | 4 +- addons/stock_no_autopicking/i18n/cs_CZ.po | 4 +- addons/stock_no_autopicking/i18n/de_DE.po | 4 +- addons/stock_no_autopicking/i18n/es_AR.po | 4 +- addons/stock_no_autopicking/i18n/es_ES.po | 4 +- addons/stock_no_autopicking/i18n/et_EE.po | 4 +- addons/stock_no_autopicking/i18n/fr_FR.po | 4 +- addons/stock_no_autopicking/i18n/hr_HR.po | 4 +- addons/stock_no_autopicking/i18n/hu_HU.po | 4 +- addons/stock_no_autopicking/i18n/it_IT.po | 4 +- addons/stock_no_autopicking/i18n/lt_LT.po | 4 +- addons/stock_no_autopicking/i18n/nl_BE.po | 4 +- addons/stock_no_autopicking/i18n/nl_NL.po | 4 +- addons/stock_no_autopicking/i18n/pl_PL.po | 4 +- addons/stock_no_autopicking/i18n/pt_BR.po | 4 +- addons/stock_no_autopicking/i18n/pt_PT.po | 4 +- addons/stock_no_autopicking/i18n/ro_RO.po | 4 +- addons/stock_no_autopicking/i18n/ru_RU.po | 4 +- addons/stock_no_autopicking/i18n/sl_SL.po | 4 +- .../i18n/stock_no_autopicking.pot | 4 +- addons/stock_no_autopicking/i18n/sv_SE.po | 4 +- addons/stock_no_autopicking/i18n/sv_SV.po | 4 +- addons/stock_no_autopicking/i18n/tr_TR.po | 4 +- addons/stock_no_autopicking/i18n/uk_UK.po | 4 +- addons/stock_no_autopicking/i18n/zh_CN.po | 4 +- addons/stock_no_autopicking/i18n/zh_TW.po | 4 +- addons/subscription/i18n/ar_AR.po | 4 +- addons/subscription/i18n/bg_BG.po | 4 +- addons/subscription/i18n/bs_BS.po | 4 +- addons/subscription/i18n/ca_ES.po | 4 +- addons/subscription/i18n/cs_CS.po | 9 +- addons/subscription/i18n/cs_CZ.po | 4 +- addons/subscription/i18n/de_DE.po | 4 +- addons/subscription/i18n/es_AR.po | 4 +- addons/subscription/i18n/es_ES.po | 4 +- addons/subscription/i18n/et_EE.po | 10 +- addons/subscription/i18n/fr_FR.po | 4 +- addons/subscription/i18n/hr_HR.po | 4 +- addons/subscription/i18n/hu_HU.po | 4 +- addons/subscription/i18n/it_IT.po | 4 +- addons/subscription/i18n/lt_LT.po | 4 +- addons/subscription/i18n/nl_BE.po | 4 +- addons/subscription/i18n/nl_NL.po | 4 +- addons/subscription/i18n/pl_PL.po | 4 +- addons/subscription/i18n/pt_BR.po | 4 +- addons/subscription/i18n/pt_PT.po | 4 +- addons/subscription/i18n/ro_RO.po | 4 +- addons/subscription/i18n/ru_RU.po | 4 +- addons/subscription/i18n/sl_SL.po | 4 +- addons/subscription/i18n/subscription.pot | 4 +- addons/subscription/i18n/sv_SE.po | 4 +- addons/subscription/i18n/sv_SV.po | 9 +- addons/subscription/i18n/tr_TR.po | 4 +- addons/subscription/i18n/uk_UK.po | 4 +- addons/subscription/i18n/zh_CN.po | 4 +- addons/subscription/i18n/zh_TW.po | 4 +- addons/warning/i18n/ar_AR.po | 165 +- addons/warning/i18n/bg_BG.po | 163 +- addons/warning/i18n/bs_BS.po | 163 +- addons/warning/i18n/ca_ES.po | 179 +- addons/warning/i18n/cs_CS.po | 165 +- addons/warning/i18n/cs_CZ.po | 165 +- addons/warning/i18n/de_DE.po | 179 +- addons/warning/i18n/es_AR.po | 165 +- addons/warning/i18n/es_ES.po | 179 +- addons/warning/i18n/et_EE.po | 179 +- addons/warning/i18n/fr_FR.po | 177 +- addons/warning/i18n/hr_HR.po | 165 +- addons/warning/i18n/hu_HU.po | 165 +- addons/warning/i18n/it_IT.po | 171 +- addons/warning/i18n/lt_LT.po | 165 +- addons/warning/i18n/nl_BE.po | 165 +- addons/warning/i18n/nl_NL.po | 179 +- addons/warning/i18n/pl_PL.po | 163 +- addons/warning/i18n/pt_BR.po | 163 +- addons/warning/i18n/pt_PT.po | 167 +- addons/warning/i18n/ro_RO.po | 165 +- addons/warning/i18n/ru_RU.po | 163 +- addons/warning/i18n/sl_SL.po | 163 +- addons/warning/i18n/sv_SE.po | 165 +- addons/warning/i18n/sv_SV.po | 165 +- addons/warning/i18n/tr_TR.po | 163 +- addons/warning/i18n/uk_UK.po | 163 +- addons/warning/i18n/warning.pot | 165 +- addons/warning/i18n/zh_CN.po | 165 +- addons/warning/i18n/zh_TW.po | 165 +- addons/wiki/i18n/ar_AR.po | 4 +- addons/wiki/i18n/bg_BG.po | 4 +- addons/wiki/i18n/bs_BS.po | 4 +- addons/wiki/i18n/ca_ES.po | 4 +- addons/wiki/i18n/cs_CS.po | 22 +- addons/wiki/i18n/cs_CZ.po | 4 +- addons/wiki/i18n/de_DE.po | 4 +- addons/wiki/i18n/es_AR.po | 4 +- addons/wiki/i18n/es_ES.po | 4 +- addons/wiki/i18n/et_EE.po | 10 +- addons/wiki/i18n/fr_FR.po | 4 +- addons/wiki/i18n/hr_HR.po | 4 +- addons/wiki/i18n/hu_HU.po | 4 +- addons/wiki/i18n/it_IT.po | 4 +- addons/wiki/i18n/lt_LT.po | 4 +- addons/wiki/i18n/nl_BE.po | 4 +- addons/wiki/i18n/nl_NL.po | 4 +- addons/wiki/i18n/pl_PL.po | 4 +- addons/wiki/i18n/pt_BR.po | 4 +- addons/wiki/i18n/pt_PT.po | 4 +- addons/wiki/i18n/ro_RO.po | 4 +- addons/wiki/i18n/ru_RU.po | 4 +- addons/wiki/i18n/sl_SL.po | 4 +- addons/wiki/i18n/sv_SE.po | 4 +- addons/wiki/i18n/sv_SV.po | 124 +- addons/wiki/i18n/tr_TR.po | 4 +- addons/wiki/i18n/uk_UK.po | 4 +- addons/wiki/i18n/wiki.pot | 4 +- addons/wiki/i18n/zh_CN.po | 4 +- addons/wiki/i18n/zh_TW.po | 4 +- 3349 files changed, 86387 insertions(+), 42927 deletions(-) create mode 100644 addons/account/i18n/ko_KO.po create mode 100644 addons/base_vat/i18n/ab_AB.po create mode 100644 addons/l10n_be/i18n/znd_ZND.po create mode 100644 addons/l10n_ch/i18n/cs_CS.po create mode 100644 addons/l10n_ch/i18n/sv_SV.po create mode 100644 addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po create mode 100644 addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index 1e19d892ef4..30afbf53fe8 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/ar_AR.po b/addons/account/i18n/ar_AR.po index a30c87973ed..7d0902f37c8 100644 --- a/addons/account/i18n/ar_AR.po +++ b/addons/account/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/bg_BG.po b/addons/account/i18n/bg_BG.po index 4e2595e10aa..010f2bbe635 100644 --- a/addons/account/i18n/bg_BG.po +++ b/addons/account/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Сметка за данъци" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "Премесетване на избрания ред" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Аналитични записи" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Номер на ваучер" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Приходи и разходи на сметка по дневник" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Валута на сметка" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Печат на аналитичен дневник" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Номер на ваучер" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Аналитични редове" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Количеството изразено в опционално друга валута ако записа е в много валути." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Настройки" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Количеството изразено във възможно друга валута" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "и дневници" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Оставете празно за да бъде изпозван периода на проверка на дадата." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Банков отчет" msgid "Information addendum" msgstr "Допълнителна информация" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "Нерешен" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Уважаеми г-н/г-жо," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Отпратка на фактура" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Отваряне на статус" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Сметка за данъци" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Всички записи на сметки в проект в този msgid "Date of the day" msgstr "Дата на деня" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Приключен" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Платено" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Отметнете за да отбележете записа като според с асоциирания партньор" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Платим лимит" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Баланс на сметка" msgid "Analytic Check" msgstr "Аналитична проверка" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "Възможната друга валута ако записа е в много валути." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Проект" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Платено" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "и дневници" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Главен дневник" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Падеж" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/bs_BS.po b/addons/account/i18n/bs_BS.po index 16f921136b9..975801d68b5 100644 --- a/addons/account/i18n/bs_BS.po +++ b/addons/account/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/ca_ES.po b/addons/account/i18n/ca_ES.po index 8f2196185d0..8d2ac21bc98 100644 --- a/addons/account/i18n/ca_ES.po +++ b/addons/account/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Compte impost" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Plans comptables" msgid "Move line select" msgstr "Selecciona línia moviment" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "Indica la vista utilitzada per introduir o mostrar assentaments en aquest diari. La vista indica a OpenERP els camps que han de ser visibles, requerits o només lectura i en quin ordre. Podeu crear la vostra pròpia vista per codificar més ràpid en cada diari." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Entrades analítiques" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Núm. de justificat" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "account.config.assistent" msgid "Account cost and revenue by journal" msgstr "Cost i retorn del compte per diari" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Import canvi" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Imprimeix diaris analítics" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Núm. de justificat" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Línies analítiques" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "L'import expressat en una altra moneda opcional si és un assentament multi-moneda." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "El mètodo de càlcul de l'import de l'impost." #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opcions" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "La quantitat expressada en una altra moneda opcional." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importa factura" msgid "Some entries are already reconciled !" msgstr "Alguns assentaments ja estan conciliats!" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "i diaris" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Núm. compte" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Deixar-ho buit per utilitzar el període de la data de validació." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Extracte bancari" msgid "Information addendum" msgstr "Informació addicional" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "El mètodo de càlcul de l'import de l'impost." - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "A quadrar" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Estimat Sr./Sra.," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Referència factura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Estat abert" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "Les línies dels assentaments comptables no estan en estat vàlid." +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Compte impost" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Tots els assentaments comptables esborrany d'aquest diari i període ser msgid "Date of the day" msgstr "Data del dia" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Tancat" msgid "Payment Entries" msgstr "Assentaments de pagament" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Per període" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Pagat" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Incloure assentaments conciliats" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Marqueu aquesta caixa per senyalar la línia de l'assentament com un desacord amb l'empresa associada" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Límit a pagar" msgid "Date/Period Filter" msgstr "Filtra data/període" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Número" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "Importa fitxer des de extracte bancari" msgid "Internal Type" msgstr "Tipus intern" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "Balanç en el tancament" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Saldo del compte" msgid "Analytic Check" msgstr "Comprovació analítica" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "L'altra moneda opcional si és un assentament multi-moneda." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "Signe en informes" msgid "This period is already closed !" msgstr "Aquest període ja està tancat!" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Esborrany" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Pagat" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "En data" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "i diaris" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Diari general" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Venciment" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Normalment 1 o -1." -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "Si utilitza terminis de pagament, la data de venciment es calcularà automàticament en la generació d'assentaments comptables. Si deixeu buits el termini de pagament i la data de venciment, significa pagament directe." - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/cs_CS.po b/addons/account/i18n/cs_CS.po index 9607b29f63c..07e8beb79bd 100644 --- a/addons/account/i18n/cs_CS.po +++ b/addons/account/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,6 +58,11 @@ msgstr "" msgid "Asset" msgstr "" +#. module: account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format @@ -70,9 +75,13 @@ msgid "Select Message" msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:product.category,property_account_income_categ:0 +msgid "This account will be used to value incoming stock for the current product category" +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -119,17 +128,6 @@ msgstr "" msgid "Residual" msgstr "" -#. module: account -#: view:account.subscription:0 -msgid "Subscription Periods" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft invoice." -msgstr "" - #. module: account #: field:account.tax,base_sign:0 #: field:account.tax,ref_base_sign:0 @@ -189,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -287,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -304,8 +309,9 @@ msgid "Warning !" msgstr "" #. module: account -#: model:ir.actions.report.xml,name:account.account_overdue -msgid "Overdue Payments" +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not delete posted movement: \"%s\"!" msgstr "" #. module: account @@ -400,11 +406,23 @@ msgstr "" msgid "Journal Name" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "No period found !" +msgstr "" + #. module: account #: view:account.payment.term:0 msgid "Description on invoices" msgstr "" +#. module: account +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "" + #. module: account #: field:account.bank.statement.reconcile,total_entry:0 msgid "Total entries" @@ -427,6 +445,17 @@ msgstr "" msgid "Payment Reconcilation" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Can not %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: model:account.journal,name:account.expenses_journal +msgid "Journal de frais" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal msgid "All Analytic Entries" @@ -634,11 +663,12 @@ msgid "Entry Controls" msgstr "" #. module: account -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive account." +#: help:account.model.line,sequence:0 +msgid "The sequence field is used to order the resources from lower sequences to higher ones" msgstr "" #. module: account +#: wizard_view:account.analytic.account.chart,init:0 #: wizard_view:account.analytic.line,init:0 msgid "(Keep empty to open the current situation)" msgstr "" @@ -648,11 +678,6 @@ msgstr "" msgid "Fiscal Position Accounts Mapping" msgstr "" -#. module: account -#: model:account.journal,name:account.sales_journal -msgid "x Sales Journal" -msgstr "" - #. module: account #: field:account.analytic.account,contact_id:0 msgid "Contact" @@ -707,6 +732,11 @@ msgstr "" msgid "Analytic Accounting" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + #. module: account #: field:account.analytic.account,line_ids:0 #: view:account.analytic.line:0 @@ -755,8 +785,8 @@ msgid "Customer Refund" msgstr "" #. module: account -#: field:wizard.multi.charts.accounts,seq_journal:0 -msgid "Separated Journal Sequences" +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Select the Period for Analysis" msgstr "" #. module: account @@ -888,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -903,6 +938,12 @@ msgstr "" msgid "Templates for Accounts" msgstr "" +#. module: account +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_form #: model:ir.model,name:account.model_account_analytic_account @@ -955,6 +996,15 @@ msgstr "" msgid "Amount Currency" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" @@ -1119,12 +1169,6 @@ msgstr "" msgid "Amount paid" msgstr "" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_general_journal -#: model:ir.ui.menu,name:account.menu_general_journal -msgid "Print General journal" -msgstr "" - #. module: account #: selection:account.invoice,type:0 #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -1217,8 +1261,13 @@ msgid "wizard.multi.charts.accounts" msgstr "" #. module: account -#: field:account.move.line,tax_amount:0 -msgid "Tax/Base Amount" +#: model:account.journal,name:account.sales_journal +msgid "Journal de vente" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." msgstr "" #. module: account @@ -1238,6 +1287,7 @@ msgid "Tax Report" msgstr "" #. module: account +#: wizard_button:account.analytic.account.chart,init,open:0 #: wizard_button:account.chart,init,open:0 msgid "Open Charts" msgstr "" @@ -1303,6 +1353,11 @@ msgstr "" msgid "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + #. module: account #: help:wizard.multi.charts.accounts,code_digits:0 msgid "No. of Digits to use for account code" @@ -1402,6 +1457,7 @@ msgstr "" #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 #: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 msgid "All" msgstr "" @@ -1412,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -1449,9 +1505,8 @@ msgid "Sequences" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_account_type_form -#: model:ir.ui.menu,name:account.menu_action_account_type_form -msgid "Account Types" +#: wizard_button:account.subscription.generate,init,generate:0 +msgid "Compute Entry Dates" msgstr "" #. module: account @@ -1524,8 +1579,9 @@ msgid "Write-Off" msgstr "" #. module: account -#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 -msgid "With Currency" +#: help:account.invoice,partner_bank:0 +msgid "The partner bank account to pay\n" +"Keep empty to use the default" msgstr "" #. module: account @@ -1545,7 +1601,6 @@ msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Crédit" msgstr "" @@ -1571,6 +1626,8 @@ msgstr "" #. module: account #: wizard_view:account.general.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_general_journal +#: model:ir.ui.menu,name:account.menu_general_journal msgid "Print General Journal" msgstr "" @@ -1614,6 +1671,11 @@ msgstr "" msgid "Open for reconciliation" msgstr "Otevřeno pro vyrovnání(Open for reconciliation)" +#. module: account +#: model:account.journal,name:account.bilan_journal +msgid "Journal d'ouverture" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -1686,8 +1748,8 @@ msgid "Close Period" msgstr "" #. module: account -#: selection:account.account.type,close_method:0 -msgid "Detail" +#: rml:account.overdue:0 +msgid "Due" msgstr "" #. module: account @@ -1797,6 +1859,12 @@ msgstr "" msgid "Pre-generated invoice from control" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Valid Entries" +msgstr "" + #. module: account #: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 msgid "Cost Legder for period" @@ -1809,6 +1877,7 @@ msgid "New Statement" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,from_date:0 #: wizard_field:account.analytic.line,init,from_date:0 msgid "From" msgstr "" @@ -1821,6 +1890,8 @@ msgstr "" #. module: account #: wizard_view:account.central.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_central_journal +#: model:ir.ui.menu,name:account.menu_central_journal msgid "Print Central Journal" msgstr "" @@ -1959,6 +2030,11 @@ msgstr "" msgid "Pay invoice" msgstr "Zaplatit fakturu" +#. module: account +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree5 #: model:ir.ui.menu,name:account.menu_invoice_draft @@ -2067,6 +2143,11 @@ msgstr "" msgid "Customer Refunds" msgstr "" +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -2130,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Možnosti(Options)" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2251,14 +2327,21 @@ msgstr "" msgid "Draft Supplier Invoices" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "Unable to find a valid period !" +msgstr "" + #. module: account #: wizard_field:account.invoice.refund,init,period:0 msgid "Force period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Due" +#: selection:account.account.type,close_method:0 +msgid "Detail" msgstr "" #. module: account @@ -2272,11 +2355,6 @@ msgstr "" msgid "Root Account" msgstr "" -#. module: account -#: help:account.model.line,sequence:0 -msgid "The sequence field is used to order the resources from lower sequences to higher ones" -msgstr "" - #. module: account #: code:addons/account/account_bank_statement.py:0 #, python-format @@ -2295,7 +2373,6 @@ msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Débit" msgstr "" @@ -2319,11 +2396,6 @@ msgstr "" msgid "Your journal must have a default credit and debit account." msgstr "" -#. module: account -#: rml:account.overdue:0 -msgid "Sub-Total:" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_generate_subscription #: model:ir.ui.menu,name:account.menu_generate_subscription @@ -2443,6 +2515,11 @@ msgstr "" msgid "Chart of Accounts Template" msgstr "" +#. module: account +#: model:account.journal,name:account.refund_sales_journal +msgid "Journal d'extourne" +msgstr "" + #. module: account #: rml:account.journal.period.print:0 msgid "Voucher No" @@ -2465,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2491,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2525,12 +2602,6 @@ msgstr "" msgid "Entry Lines" msgstr "" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_central_journal -#: model:ir.ui.menu,name:account.menu_central_journal -msgid "Print Central journal" -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/invoice.py:0 @@ -2593,17 +2664,17 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Entries Reconcile" msgstr "" +#. module: account +#: help:account.bank.statement.reconcile,total_second_amount:0 +msgid "The amount in the currency of the journal" +msgstr "" + #. module: account #: wizard_field:account.general.ledger.report,checktype,landscape:0 msgid "Landscape Mode" @@ -2621,6 +2692,7 @@ msgstr "" #: wizard_button:account.aged.trial.balance,init,end:0 #: wizard_button:account.analytic.account.analytic.check.report,init,end:0 #: wizard_button:account.analytic.account.balance.report,init,end:0 +#: wizard_button:account.analytic.account.chart,init,end:0 #: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 #: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 #: wizard_button:account.analytic.account.journal.report,init,end:0 @@ -2750,11 +2822,6 @@ msgstr "" msgid "Create Invoice" msgstr "" -#. module: account -#: model:account.journal,name:account.refund_sales_journal -msgid "x Sales Credit Note Journal" -msgstr "" - #. module: account #: model:account.account.type,name:account.account_type_cash_equity msgid "Equity" @@ -2776,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2809,9 +2887,10 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 -#: model:ir.ui.menu,name:account.account_analytic_chart +#: model:ir.actions.wizard,name:account.wizard_analytic_account_chart #: model:ir.ui.menu,name:account.account_analytic_chart_balance #: model:ir.ui.menu,name:account.account_analytic_def_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Analytic Chart of Accounts" msgstr "" @@ -2870,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -2969,8 +3049,12 @@ msgid "Open State" msgstr "" #. module: account -#: field:account.journal,entry_posted:0 -msgid "Skip 'Draft' State for Created Entries" +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "No records found for your selection!" msgstr "" #. module: account @@ -2979,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3016,8 +3106,8 @@ msgid "Accounting Statement" msgstr "" #. module: account -#: help:product.category,property_account_income_categ:0 -msgid "This account will be used to value incoming stock for the current product category" +#: rml:account.overdue:0 +msgid "Document: Customer account statement" msgstr "" #. module: account @@ -3139,9 +3229,17 @@ msgstr "" msgid "Situation" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date to must be set between %s and %s" +msgstr "" + #. module: account #: rml:account.invoice:0 -#: rml:account.overdue:0 #: xsl:account.transfer:0 msgid "Document" msgstr "" @@ -3290,6 +3388,11 @@ msgstr "" msgid "Account" msgstr "" +#. module: account +#: model:account.journal,name:account.bank_journal +msgid "Journal de Banque CHF" +msgstr "" + #. module: account #: selection:account.account.balance.report,checktype,state:0 #: selection:account.general.ledger.report,checktype,state:0 @@ -3298,6 +3401,12 @@ msgstr "" msgid "By Date and Period" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_state_open.py:0 +#, python-format +msgid "Invoice is already reconciled" +msgstr "" + #. module: account #: view:account.account:0 #: view:account.account.template:0 @@ -3439,8 +3548,8 @@ msgid "Root Tax Code" msgstr "" #. module: account -#: help:account.bank.statement.reconcile,total_second_amount:0 -msgid "The amount in the currency of the journal" +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." msgstr "" #. module: account @@ -3522,11 +3631,6 @@ msgstr "" msgid "This account will be used instead of the default one as the receivable account for the current partner" msgstr "" -#. module: account -#: rml:account.vat.declaration:0 -msgid "Solde" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement msgid "Bank statements" @@ -3585,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -3659,6 +3768,11 @@ msgstr "" msgid "Fiscal year" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Balance :" +msgstr "" + #. module: account #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 @@ -3691,6 +3805,11 @@ msgstr "" msgid "Entry Model" msgstr "" +#. module: account +#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 +msgid "With Currency" +msgstr "" + #. module: account #: view:account.account:0 msgid "Chart of accounts" @@ -3892,6 +4011,12 @@ msgstr "" msgid "Invoice Date" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The old fiscal year does not have any entry to reconcile!" +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format @@ -3949,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -3998,11 +4128,6 @@ msgstr "" msgid "Encode manually the statement" msgstr "" -#. module: account -#: rml:account.overdue:0 -msgid "Customer account statement" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_account_journal_form #: model:ir.ui.menu,name:account.menu_action_account_journal_form @@ -4018,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4122,6 +4247,7 @@ msgstr "" #: field:account.move.line,credit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,cost:0 msgid "Credit" msgstr "" @@ -4190,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4209,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4227,6 +4355,11 @@ msgstr "" msgid "Credit Trans." msgstr "" +#. module: account +#: field:wizard.multi.charts.accounts,seq_journal:0 +msgid "Separated Journal Sequences" +msgstr "" + #. module: account #: help:account.bank.statement.reconcile,total_second_currency:0 msgid "The currency of the journal" @@ -4442,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -4623,9 +4751,9 @@ msgid "Number of entries are generated" msgstr "" #. module: account -#: model:process.transition,name:account.process_transition_suppliervalidentries0 -#: model:process.transition,name:account.process_transition_validentries0 -msgid "Valid Entries" +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Can not pay draft/proforma/cancel invoice." msgstr "" #. module: account @@ -4698,6 +4826,11 @@ msgstr "" msgid "You can not deactivate an account that contains account moves." msgstr "" +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Analytic Account Charts" +msgstr "" + #. module: account #: wizard_field:account.aged.trial.balance,init,result_selection:0 msgid "Filter on Partners" @@ -4749,12 +4882,6 @@ msgstr "" msgid "Running" msgstr "" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" -msgstr "" - #. module: account #: help:account.tax,include_base_amount:0 msgid "Indicate if the amount of tax must be included in the base amount for the computation of the next taxes" @@ -4817,10 +4944,15 @@ msgstr "" #: code:addons/account/account.py:0 #: code:addons/account/account_move_line.py:0 #: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 #: code:addons/account/wizard/wizard_automatic_reconcile.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 #: code:addons/account/wizard/wizard_journal.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "UserError" msgstr "" @@ -4936,6 +5068,15 @@ msgstr "OK(OK)" msgid "Control Invoice" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date not in a defined fiscal year" +msgstr "" + #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 @@ -4957,13 +5098,9 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_state_open.py:0 #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format msgid "Warning" @@ -5069,6 +5206,7 @@ msgstr "" #: field:account.move.line,debit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,revenue:0 msgid "Debit" msgstr "" @@ -5078,11 +5216,6 @@ msgstr "" msgid "All Months" msgstr "" -#. module: account -#: model:account.journal,name:account.bank_journal -msgid "x Bank Journal" -msgstr "" - #. module: account #: wizard_field:account.invoice.refund,init,date:0 msgid "Operation date" @@ -5285,8 +5418,8 @@ msgid "Account Tax Code Template" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Balance:" +#: view:account.subscription:0 +msgid "Subscription Periods" msgstr "" #. module: account @@ -5366,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5437,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5537,7 +5680,6 @@ msgstr "" #. module: account #: rml:account.account.balance:0 #: rml:account.general.journal:0 -#: rml:account.overdue:0 msgid ":" msgstr "" @@ -5552,13 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "" - -#. module: account -#: model:account.journal,name:account.expenses_journal -msgid "x Expenses Journal" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5640,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -5663,11 +5801,6 @@ msgstr "" msgid "Taxes missing !" msgstr "" -#. module: account -#: help:account.invoice,partner_bank:0 -msgid "The bank account to pay to or to be paid from" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Refund" @@ -5690,6 +5823,11 @@ msgstr "" msgid "Analytic Journal Definition" msgstr "" +#. module: account +#: field:account.journal,entry_posted:0 +msgid "Skip 'Draft' State for Created Entries" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "account.tax.template" @@ -5790,6 +5928,7 @@ msgid "Total amount due:" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,to_date:0 #: wizard_field:account.analytic.line,init,to_date:0 msgid "To" msgstr "" @@ -5948,12 +6087,6 @@ msgstr "" msgid "Customer" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft invoice." -msgstr "" - #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" @@ -6012,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6091,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" @@ -6178,6 +6307,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#, python-format +msgid "You must enter a period length that cannot be 0 or below !" +msgstr "" + #. module: account #: wizard_button:account.wizard_paid_open,init,yes:0 msgid "Yes" @@ -6189,7 +6324,7 @@ msgid "Check this if the user is allowed to reconcile entries in this account." msgstr "" #. module: account -#: wizard_button:account.subscription.generate,init,generate:0 -msgid "Compute Entry Dates" +#: model:ir.actions.report.xml,name:account.account_overdue +msgid "Overdue Payments" msgstr "" diff --git a/addons/account/i18n/cs_CZ.po b/addons/account/i18n/cs_CZ.po index 4da95554d41..c385c707eea 100644 --- a/addons/account/i18n/cs_CZ.po +++ b/addons/account/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Možnosti(Options)" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/de_DE.po b/addons/account/i18n/de_DE.po index 9681d087578..393734a204f 100644 --- a/addons/account/i18n/de_DE.po +++ b/addons/account/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Steuerkonto" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Kontenplan Finanzkonten" msgid "Move line select" msgstr "Auswahl Buchungszeile" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "zeigt die Ansicht des Journalberichtes. Open ERP wird gezeigt welche Felder sichtbar sein sollen, welche erforderlich sind oder keine Schreibrechte habe und in der Reihenfolge der Auftragsnummern. Sie können einen eigenen View für eine schnellere Buchungsbearbeitung herstellen." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -745,6 +751,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Analytische Buchungen" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Gutschein Nummer" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -911,6 +922,11 @@ msgstr "account.config.wizard" msgid "Account cost and revenue by journal" msgstr "Summen und Salden nach Journal" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -988,6 +1004,7 @@ msgstr "Währungsbetrag" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1179,11 +1196,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Druck Analytische Journale" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Gutschein Nummer" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1257,6 +1269,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1455,9 +1472,9 @@ msgid "Analytic lines" msgstr "Analytische Buchungen" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Dieser Betrag erlaubt eine parallele Währung falls Sie eine weitere Währung benötigen." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "Die Berechnungsmethode für die Höhe der Steuern." #. module: account #: code:addons/account/account_move_line.py:0 @@ -2198,11 +2215,6 @@ msgstr "" msgid "Options" msgstr "Einstellungen" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Der Betrag in anderer Währung." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2534,6 +2546,11 @@ msgstr "Importiere Rechnungen" msgid "Some entries are already reconciled !" msgstr "Einige Einträge wurden bereits ausgeglichen!" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "und Journale" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2560,11 +2577,6 @@ msgstr "Konto Nummer" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Frei lassen für Periode des Validierungsdatums." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2656,11 +2668,6 @@ msgstr "Bankauszug" msgid "Information addendum" msgstr "Informationsbeilage" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "Die Berechnungsmethode für die Höhe der Steuern." - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2840,11 +2847,22 @@ msgstr "Lfd. Verfahren" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Sehr geehrte Damen und Herren," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2935,6 +2953,7 @@ msgstr "Rechnungsreferenz" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3037,6 +3056,7 @@ msgstr "Status Offen" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3047,6 +3067,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "Die Buchungspositionen sind nicht im Stadium \"Bestätigt\" (Valid)" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Steuerkonto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3667,6 +3693,11 @@ msgstr "Alle Buchungen dieses Journals im Entwurf Stadium werden validiert. Dies msgid "Date of the day" msgstr "Tagesdatum" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4047,6 +4078,11 @@ msgstr "Beendet" msgid "Payment Entries" msgstr "Zahlungsvorschlagsliste" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4111,9 +4147,9 @@ msgid "By Period" msgstr "Nach Periode" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "bezahlt am" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4284,6 +4320,13 @@ msgstr " Inklusive Ausgeglichener Posten" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Sie können eine Haken setzen, zwecks Markierung dieser Rechnung als Rechtsstreitigkeit mit dem assoziierten Partner." +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4303,11 +4346,6 @@ msgstr "Kreditlimit" msgid "Date/Period Filter" msgstr "Filter Datum (Zeitraum)" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Nummer" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4541,11 +4579,6 @@ msgstr "Importiere Datei Ihres Bankkontoauszugs" msgid "Internal Type" msgstr "Intern" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "Endsaldo" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5069,11 +5102,6 @@ msgstr "Salden nach Konten und Perioden" msgid "Analytic Check" msgstr "Details Finanzkonto" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "Optionale Währung bei Multi - Währungs - Buchung" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5475,6 +5503,11 @@ msgstr "Sign On Reports" msgid "This period is already closed !" msgstr "Diese Periode ist bereits abgeschlossen!" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5546,6 +5579,11 @@ msgstr "" msgid "Draft" msgstr "Entwurf" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "bezahlt am" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5660,9 +5698,9 @@ msgid "At Date" msgstr "Tageskurs" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "und Journale" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5743,6 +5781,7 @@ msgid "General Journal" msgstr "Journal Sachkonten" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6110,6 +6149,7 @@ msgstr "Fällig am" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6189,11 +6229,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Normal 1 oder -1" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "Falls Sie Zahlungsbedingungen einsetzen wird das Fälligkeitsdatum für die Rechnungen automatisch berechnet." - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 78d32d7b8f2..e271e4af472 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Cuenta del Impuesto" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Monto - Moneda" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opciones" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Extracto de Cuenta Bancaria" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "En litigio" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Referencia Factura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Cuenta del Impuesto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "Fecha del día" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/es_ES.po b/addons/account/i18n/es_ES.po index 42988933375..93c1d1f3bfa 100644 --- a/addons/account/i18n/es_ES.po +++ b/addons/account/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Cuenta impuesto" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Planes contables" msgid "Move line select" msgstr "Seleccionar línea movimineto" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "Indica la vista utilizada para introducir o mostrar asientos en este diario. La vista indica a OpenERP que campos deberían ser visibles, requeridos o sólo lectura y en qué orden. Puede crear su propia vista para codificar más rápido en cada diario." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Asientos analíticos" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Núm. de bono" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "account.config.asistente" msgid "Account cost and revenue by journal" msgstr "Costo y retorno de la cuenta por diario" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Importe cambio" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Imprimir diarios analíticos" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Núm. de bono" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Líneas analíticas" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "El importe expresado en otra moneda opcional si es un asiento multi-moneda." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "El método de cálculo del importe del impuesto." #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opciones" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "La cantidad expresada en una otra moneda opcional." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importar factura" msgid "Some entries are already reconciled !" msgstr "¡Algunos asientos ya están conciliados!" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "y diarios" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Núm. cuenta" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Dejarlo vacío para usar el período de la fecha de validación." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Extracto bancario" msgid "Information addendum" msgstr "Información adicional" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "El método de cálculo del importe del impuesto." - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "A cuadrar" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Apreciado Sr./Sra.," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Referencia factura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Estado abierto" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "Las líneas de los asientos contables no están en estado válido." +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Cuenta impuesto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Todos los asientos contables borrador de este diario y período serán v msgid "Date of the day" msgstr "Fecha del día" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Cerrado" msgid "Payment Entries" msgstr "Asientos de pago" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Por periodo" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Pagado" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Incluir asientos conciliados" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Marque esta opción para señalar la línea de asiento en desacuerdo con la empresa asociada" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Límite a pagar" msgid "Date/Period Filter" msgstr "Filtrar fecha/periodo" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Número" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "Importar archivo desde extracto bancario" msgid "Internal Type" msgstr "Tipo interno" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "Balance en el cierre" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Saldo cuenta" msgid "Analytic Check" msgstr "Comprobación analítica" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "La otra moneda opcional si es un asiento multi-moneda." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "Signo en informes" msgid "This period is already closed !" msgstr "¡Este periodo ya está cerrado!" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Borrador" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Pagado" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "En fecha" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "y diarios" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Diario general" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Vencimiento" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Normalmente 1 o -1." -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "Si utiliza plazos de pago, la fecha de vencimiento se calculará automáticamente en la generación de asientos contables. Si deja vacíos el plazo de pago y la fecha de vencimiento, significa pago directo." - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/et_EE.po b/addons/account/i18n/et_EE.po index 2ce9b05a4bc..57faa9183a0 100644 --- a/addons/account/i18n/et_EE.po +++ b/addons/account/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Konto maksukood" #: model:ir.actions.act_window,name:account.action_invoice_tree9 #: model:ir.ui.menu,name:account.menu_action_invoice_tree9 msgid "Unpaid Supplier Invoices" -msgstr "Maksmatta Ostuarved" +msgstr "Maksmata ostuarved" #. module: account #: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 @@ -61,7 +61,7 @@ msgstr "Vara" #. module: account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account #: code:addons/account/wizard/wizard_validate_account_move.py:0 @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Maksuraamatupidamine" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Kontoplaanid" msgid "Move line select" msgstr "Liiguta valitud rida" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -356,7 +362,7 @@ msgstr "" #. module: account #: rml:account.central.journal:0 msgid "Account Num." -msgstr "" +msgstr "Konto nr." #. module: account #: rml:account.analytic.account.analytic.check:0 @@ -385,7 +391,7 @@ msgstr "" #: field:account.move.line,analytic_account_id:0 #: field:report.hr.timesheet.invoice.journal,account_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: account #: field:account.tax,child_depend:0 @@ -499,7 +505,7 @@ msgstr "Olek" #: model:ir.actions.act_window,name:account.action_invoice_tree13 #: model:ir.ui.menu,name:account.menu_action_invoice_tree13 msgid "Unpaid Supplier Refunds" -msgstr "" +msgstr "Maksmata tarnija hüvitised" #. module: account #: view:account.tax:0 @@ -696,7 +702,7 @@ msgstr "" #. module: account #: field:account.invoice.line,discount:0 msgid "Discount (%)" -msgstr "" +msgstr "Allahindlus (%)" #. module: account #: code:addons/account/account_move_line.py:0 @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -771,7 +782,7 @@ msgstr "" #. module: account #: selection:account.invoice,type:0 msgid "Customer Refund" -msgstr "" +msgstr "Kliendi hüvitis" #. module: account #: wizard_view:account.analytic.account.chart,init:0 @@ -862,7 +873,7 @@ msgstr "" #. module: account #: field:account.account.type,partner_account:0 msgid "Partner account" -msgstr "" +msgstr "Partneri konto" #. module: account #: wizard_view:account.subscription.generate,init:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -920,7 +936,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_account_template msgid "Templates for Accounts" -msgstr "" +msgstr "Mallid kontodele" #. module: account #: model:ir.actions.act_window,name:account.action_account_type_form @@ -984,6 +1000,7 @@ msgstr "Valuuta Kogus" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -1669,12 +1686,12 @@ msgstr "" #: selection:account.tax,tax_group:0 #: selection:account.tax.template,tax_group:0 msgid "VAT" -msgstr "" +msgstr "KM" #. module: account #: rml:account.analytic.account.journal:0 msgid "Account n°" -msgstr "" +msgstr "Konto nr." #. module: account #: code:addons/account/invoice.py:0 @@ -1772,7 +1789,7 @@ msgstr "" #. module: account #: wizard_button:account.invoice.refund,init,refund:0 msgid "Refund Invoice" -msgstr "" +msgstr "Hüvitusarve" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_tree @@ -1789,12 +1806,12 @@ msgstr "" #. module: account #: constraint:account.account:0 msgid "Error ! You can not create recursive accounts." -msgstr "" +msgstr "Viga! Sa ei saa luua rekursiivseid kontosid." #. module: account #: rml:account.tax.code.entries:0 msgid "Account Number" -msgstr "" +msgstr "Konto number" #. module: account #: view:account.config.wizard:0 @@ -2022,7 +2039,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree5 #: model:ir.ui.menu,name:account.menu_invoice_draft msgid "Draft Customer Invoices" -msgstr "" +msgstr "Kliendi mustandarved" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -2124,7 +2141,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "" +msgstr "Kliendi hüvitused" #. module: account #: rml:account.vat.declaration:0 @@ -2177,7 +2194,7 @@ msgstr "" #. module: account #: rml:account.invoice:0 msgid "Draft Invoice" -msgstr "" +msgstr "Mustandarve" #. module: account #: model:account.account.type,name:account.account_type_expense @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2243,7 +2255,7 @@ msgstr "Valuuta" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid invoices" -msgstr "Maksmatta arved" +msgstr "Maksmata arved" #. module: account #: model:process.transition,name:account.process_transition_paymentreconcile0 @@ -2313,7 +2325,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree8 #: model:ir.ui.menu,name:account.menu_action_invoice_tree8 msgid "Draft Supplier Invoices" -msgstr "" +msgstr "Tarnija mustandarved" #. module: account #: code:addons/account/account.py:0 @@ -2357,7 +2369,7 @@ msgstr "" #. module: account #: rml:account.invoice:0 msgid "VAT :" -msgstr "" +msgstr "KM :" #. module: account #: rml:account.partner.balance:0 @@ -2408,7 +2420,7 @@ msgstr "Kliendi Maksud" #. module: account #: field:account.invoice,date_invoice:0 msgid "Date Invoiced" -msgstr "Arvekstegemise kuupäev" +msgstr "Arveldamise kuupäev" #. module: account #: help:account.account.balance.report,checktype,periods:0 @@ -2530,10 +2542,15 @@ msgstr "Impordi arve" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" -msgstr "" +msgstr "Hüvituste päevik" #. module: account #: view:account.tax:0 @@ -2549,18 +2566,13 @@ msgstr "Otsetee" #. module: account #: field:account.bank.accounts.wizard,acc_no:0 msgid "Account No." -msgstr "" +msgstr "Konto nr." #. module: account #: help:account.tax,child_depend:0 msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Jäta tühjaks kasutamaks perioodi kinnitamise kuupäeva." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Pangabilanss" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2889,7 +2907,7 @@ msgstr "" #. module: account #: field:account.invoice,number:0 msgid "Invoice Number" -msgstr "" +msgstr "Arve number" #. module: account #: field:account.period,date_stop:0 @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3022,7 +3041,7 @@ msgstr "" #. module: account #: wizard_view:account.invoice.refund,init:0 msgid "Are you sure you want to refund this invoice ?" -msgstr "" +msgstr "Oled sa kindel, et soovid hüvitada seda arvet?" #. module: account #: model:ir.actions.wizard,name:account.wizard_paid_open @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Maksukonto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3051,7 +3077,7 @@ msgstr "" #. module: account #: field:account.analytic.account,complete_name:0 msgid "Full Account Name" -msgstr "" +msgstr "Täielik konto nimi" #. module: account #: rml:account.account.balance:0 @@ -3072,7 +3098,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree12 #: model:ir.ui.menu,name:account.menu_action_invoice_tree12 msgid "Draft Supplier Refunds" -msgstr "" +msgstr "Tarnija hüvituste mustandid" #. module: account #: model:process.node,name:account.process_node_accountingstatemententries0 @@ -3179,7 +3205,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree10 #: model:ir.ui.menu,name:account.menu_action_invoice_tree10 msgid "Draft Customer Refunds" -msgstr "" +msgstr "Kliendi hüvituste mustandid" #. module: account #: code:addons/account/account.py:0 @@ -3284,7 +3310,7 @@ msgstr "" #: view:account.period:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "" +msgstr "Sea mustandiks" #. module: account #: help:account.invoice,origin:0 @@ -3360,7 +3386,7 @@ msgstr "" #: wizard_field:account.move.line.unreconcile.select,init,account_id:0 #: model:ir.model,name:account.model_account_account msgid "Account" -msgstr "" +msgstr "Konto" #. module: account #: model:account.journal,name:account.bank_journal @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "Päeva kuupäev" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -3676,7 +3707,7 @@ msgstr "Ülem maksukonto" #: field:account.analytic.account,type:0 #: model:ir.model,name:account.model_account_account_type msgid "Account Type" -msgstr "Konto Tüüp" +msgstr "Konto tüüp" #. module: account #: view:res.partner:0 @@ -3767,7 +3798,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree4_new #: model:ir.ui.menu,name:account.menu_action_invoice_tree4_new msgid "New Supplier Refund" -msgstr "" +msgstr "Uus tarnija hüvitus" #. module: account #: view:account.model:0 @@ -3824,7 +3855,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Compute Taxes" -msgstr "" +msgstr "Arvuta maksud" #. module: account #: field:wizard.multi.charts.accounts,code_digits:0 @@ -3968,7 +3999,7 @@ msgstr "" #: model:process.node,name:account.process_node_draftinvoices0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "" +msgstr "Mustandarved" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -4043,6 +4074,11 @@ msgstr "Suletud" msgid "Payment Entries" msgstr "Makse kirjed" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4225,7 +4261,7 @@ msgstr "" #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "" +msgstr "Hüvituse maksukonto" #. module: account #: field:account.tax.code,child_ids:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "Kuupäev/Periood filter" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4459,7 +4497,7 @@ msgstr "Maksud:" #: model:ir.actions.act_window,name:account.action_invoice_tree7 #: model:ir.ui.menu,name:account.menu_action_invoice_tree7 msgid "Unpaid Customer Invoices" -msgstr "Maksmatta Müügiarved" +msgstr "Maksmata müügiarved" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -4537,11 +4575,6 @@ msgstr "Impordi fail oma pangabilansist" msgid "Internal Type" msgstr "Sisemine tüüp" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -4747,7 +4780,7 @@ msgstr "Kuupäeva järgi" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "" +msgstr "Tarnija hüvitused" #. module: account #: help:account.model.line,date:0 @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5081,7 +5109,7 @@ msgstr "" #. module: account #: rml:account.overdue:0 msgid "VAT:" -msgstr "" +msgstr "KM:" #. module: account #: rml:account.analytic.account.cost_ledger:0 @@ -5217,7 +5245,7 @@ msgstr "" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "" +msgstr "Hüvituse maksukood" #. module: account #: field:account.invoice.tax,name:0 @@ -5331,7 +5359,7 @@ msgstr "" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Definition" -msgstr "MAksu Definitsioon" +msgstr "Maksu definitsioon" #. module: account #: field:account.tax,tax_group:0 @@ -5343,7 +5371,7 @@ msgstr "Maksu Grupp" #: model:ir.actions.act_window,name:account.action_invoice_tree3_new #: model:ir.ui.menu,name:account.menu_action_invoice_tree3_new msgid "New Customer Refund" -msgstr "" +msgstr "Uus kliendi hüvitus" #. module: account #: help:wizard.multi.charts.accounts,seq_journal:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "See periood on juba suletud !" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5540,13 +5573,18 @@ msgstr "" #: selection:account.period,state:0 #: selection:account.subscription,state:0 msgid "Draft" +msgstr "Mustand" + +#. module: account +#: rml:account.overdue:0 +msgid "Paid" msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 msgid "Unpaid Customer Refunds" -msgstr "" +msgstr "Maksmata kliendi hüvitused" #. module: account #: help:account.invoice,residual:0 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5665,7 +5703,7 @@ msgstr "" #: view:account.bank.statement.reconcile:0 #: view:account.subscription:0 msgid "Compute" -msgstr "" +msgstr "Arvuta" #. module: account #: help:account.invoice.line,account_id:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -5765,7 +5804,7 @@ msgstr "Maks puudub !" #. module: account #: rml:account.invoice:0 msgid "Refund" -msgstr "" +msgstr "Hüvita" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -5961,7 +6000,7 @@ msgstr "" #: field:account.tax.code,info:0 #: field:account.tax.code.template,info:0 msgid "Description" -msgstr "" +msgstr "Kirjeldus" #. module: account #: help:product.template,property_account_income:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6131,7 +6171,7 @@ msgstr "Jäta tühjaks kõigi avatud majandusaastate joks" #: rml:account.invoice:0 #: selection:account.invoice,type:0 msgid "Supplier Refund" -msgstr "" +msgstr "Tarnija hüvitus" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/fr_FR.po b/addons/account/i18n/fr_FR.po index bc147cf76ae..c3588020e51 100644 --- a/addons/account/i18n/fr_FR.po +++ b/addons/account/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Compte de taxe" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Plan de comptes" msgid "Move line select" msgstr "Déplacer la ligne sélectionnée" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "Indique la vue utilisée lors de la saisie ou de la recherche d'écritures dans ce journal. La vue précise les champs utilisés par le logiciel avec leurs propriétés. Vous pouvez créer votre propre vue pour accélérer votre saisie dans les journaux." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Ecritures analytiques" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Numéro de pièce" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "account.config.wizard" msgid "Account cost and revenue by journal" msgstr "Compte de charges et produits par journal" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Devise" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Imprimer les journaux analytiques" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Numéro de pièce" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Lignes analytiques" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Le montant exprimé dans une autre devise optionnelle si c'est une entrée multi-devise." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "Méthode de calcul du montant" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Réglages" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Le montant exprimé dans une autre devise optionnelle." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importer une facture" msgid "Some entries are already reconciled !" msgstr "Des écritures semblent déjà lettrées !" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "et journaux" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Compte n°." msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Laissez vide pour utiliser la période de la date de validation" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Relevé bancaire" msgid "Information addendum" msgstr "Informations supplémentaires" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "Méthode de calcul du montant" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "En litige" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Chère Madame, Cher Monsieur," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Référence facture" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "État Ouvert" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "Les lignes d'écritures ne sont pas dans un état validé." +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Compte de taxe" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Toutes les entrées de comptes brouillon dans ce journal et cette pério msgid "Date of the day" msgstr "Date du jour" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Clôturé" msgid "Payment Entries" msgstr "Écritures de règlement" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Par période" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Payé" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Inclus les écritures lettrées" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Vous pouvez cocher cette boîte pour marquer la ligne d'entrée comme un litige avec le partenaire associé" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Plafond autorisé" msgid "Date/Period Filter" msgstr "Date/période choisie" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Nombre" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "Importer ce fichier depuis le relevé de banque" msgid "Internal Type" msgstr "Type interne" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Solde du compte" msgid "Analytic Check" msgstr "Contrôle analytique" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "L'autre devise optionnelle si c'est une entrée multi-devise." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "Cette période est déjà cloturée !" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Brouillon" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Payé" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "et journaux" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Journal Général" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Échu" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Couramment 1 ou -1." -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "Si vous utilisez les termes de paiement, la date de livraison sera calculée automatiquement lors de la génération des entrées comptables. Si vous laissez les termes de paiement et la date de livraison vides, cela indique un paiement direct." - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/hr_HR.po b/addons/account/i18n/hr_HR.po index b638ff72ce1..a40d728746a 100644 --- a/addons/account/i18n/hr_HR.po +++ b/addons/account/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/hu_HU.po b/addons/account/i18n/hu_HU.po index db1c566fe1f..fc84a8d0ab1 100644 --- a/addons/account/i18n/hu_HU.po +++ b/addons/account/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Adó számla" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Számla hivatkozás" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Adó számla" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/id_ID.po b/addons/account/i18n/id_ID.po index 626ca4aca37..3276bb61c12 100644 --- a/addons/account/i18n/id_ID.po +++ b/addons/account/i18n/id_ID.po @@ -7,22 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2009-02-03 06:29+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 12:58+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:27+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Integrity Error !" -msgstr "" - #. module: account #: field:account.tax.template,description:0 msgid "Internal Name" @@ -34,21 +28,10 @@ msgid "Account Tax Code" msgstr "Kode Rekening Pajak" #. module: account -#: help:account.tax,domain:0 -msgid "" -"This field is only used if you develop your own module allowing developpers " -"to create specific taxes in a custom domain." -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_entries -msgid "Entries Encoding" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement from draft" -msgstr "" +#: model:ir.actions.act_window,name:account.action_invoice_tree9 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 +msgid "Unpaid Supplier Invoices" +msgstr "Hutang supplier yang belum terbaya" #. module: account #: model:account.account.type,name:account.account_type_asset @@ -76,11 +59,6 @@ msgstr "Pilih pesan" msgid "Tax Account" msgstr "Akun Pajak" -#. module: account -#: wizard_view:account.automatic.reconcile,reconcile:0 -msgid "Reconciliation result" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled msgid "Unreconciled entries" @@ -109,47 +87,17 @@ msgstr "Cetak Laporan Pajak" msgid "Parent" msgstr "Induk" -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Account move line \"%s\" is not valid" -msgstr "" - #. module: account #: field:account.invoice,residual:0 msgid "Residual" msgstr "Sisa" -#. module: account -#: view:account.subscription:0 -msgid "Subscription Periods" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft invoice." -msgstr "Tidak dapat %s draft invoice" - -#. module: account -#: field:account.tax,base_sign:0 -#: field:account.tax,ref_base_sign:0 -#: field:account.tax.template,base_sign:0 -#: field:account.tax.template,ref_base_sign:0 -msgid "Base Code Sign" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_unreconcile_select #: model:ir.ui.menu,name:account.menu_unreconcile_select msgid "Unreconcile entries" msgstr "Transaksi belum direkonsolidasi" -#. module: account -#: wizard_view:account_use_models,create:0 -msgid "Use Model" -msgstr "" - #. module: account #: view:account.bank.statement.reconcile:0 #: field:account.bank.statement.reconcile,line_ids:0 @@ -171,38 +119,9 @@ msgid "Confirm draft invoices" msgstr "Konfirmasi draft invoice" #. module: account -#: help:account.payment.term.line,days2:0 -msgid "" -"Day of the month, set -1 for the last day of the current month. If it's " -"positive, it gives the day of the next month. Set 0 for net days (otherwise " -"it's based on the beginning of the month)." -msgstr "" - -#. module: account -#: help:account.account,currency_mode:0 -msgid "" -"This will select how is computed the current currency rate for outgoing " -"transactions. In most countries the legal method is \"average\" but only a " -"few softwares are able to manage this. So if you import from another " -"software, you may have to use the rate at date. Incoming transactions, " -"always use the rate at date." -msgstr "" - -#. module: account -#: field:account.config.wizard,charts:0 -msgid "Charts of Account" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_move_line_select -msgid "Move line select" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Keep empty to use the expense account" -msgstr "" +#: view:account.move:0 +msgid "Total Credit" +msgstr "Total Kredit" #. module: account #: rml:account.journal.period.print:0 @@ -239,16 +158,6 @@ msgstr "Anda harus menyediakan rekening untuk penghapusan" msgid "Account Entry Line" msgstr "Baris Entri Rekening" -#. module: account -#: wizard_view:account.aged.trial.balance,init:0 -msgid "Aged Trial Balance" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries -msgid "Recurrent Entries" -msgstr "" - #. module: account #: field:account.analytic.line,amount:0 #: field:account.bank.statement.line,amount:0 @@ -262,13 +171,6 @@ msgstr "" msgid "Amount" msgstr "Jumlah" -#. module: account -#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger -#: model:ir.actions.wizard,name:account.wizard_third_party_ledger -#: model:ir.ui.menu,name:account.menu_third_party_ledger -msgid "Partner Ledger" -msgstr "" - #. module: account #: field:product.template,supplier_taxes_id:0 msgid "Supplier Taxes" @@ -279,37 +181,12 @@ msgstr "Pajak supplier" msgid "Total Debit" msgstr "Total Debit" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Accounting Entries-" -msgstr "" - -#. module: account -#: help:account.journal,view_id:0 -msgid "" -"Gives the view used when writing or browsing entries in this journal. The " -"view tell Open ERP which fields should be visible, required or readonly and " -"in which order. You can create your own view for a faster encoding in each " -"journal." -msgstr "" - #. module: account #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "Fixed" msgstr "Baku" -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_overdue -msgid "Overdue Payments" -msgstr "" - #. module: account #: wizard_view:account.account.balance.report,checktype:0 #: wizard_view:account.analytic.account.analytic.check.report,init:0 @@ -321,89 +198,21 @@ msgstr "" msgid "Select period" msgstr "Pilih periode" -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "" -"Please verify the price of the invoice !\n" -"The real total does not match the computed total." -msgstr "" - #. module: account #: field:account.invoice,origin:0 #: field:account.invoice.line,origin:0 msgid "Origin" msgstr "Asal" -#. module: account -#: field:account.account,reconcile:0 -#: wizard_button:account.automatic.reconcile,init,reconcile:0 -#: field:account.bank.statement.line,reconcile_id:0 -#: view:account.bank.statement.reconcile:0 -#: field:account.bank.statement.reconcile.line,line_id:0 -#: field:account.move.line,reconcile_id:0 -#: wizard_button:account.move.line.reconcile,addendum,reconcile:0 -#: wizard_button:account.move.line.reconcile,init_full,reconcile:0 -msgid "Reconcile" -msgstr "" - #. module: account #: xsl:account.transfer:0 msgid "Reference" msgstr "Referensi" #. module: account -#: wizard_view:account.subscription.generate,init:0 -msgid "Subscription Compute" -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Account Num." -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Delta Debit" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: field:account.invoice,amount_tax:0 -#: field:account.move.line,account_tax_id:0 -msgid "Tax" -msgstr "Pajak" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "No analytic journal !" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "Debit Trans." -msgstr "" - -#. module: account -#: field:account.analytic.line,account_id:0 -#: field:account.invoice.line,account_analytic_id:0 -#: field:account.move.line,analytic_account_id:0 -#: field:report.hr.timesheet.invoice.journal,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account -#: wizard_button:account.automatic.reconcile,reconcile,end:0 -msgid "OK" -msgstr "OK" - -#. module: account -#: rml:account.central.journal:0 -#: rml:account.general.journal:0 -#: field:account.journal,name:0 -msgid "Journal Name" -msgstr "" +#: field:account.chart.template,property_account_receivable:0 +msgid "Receivable Account" +msgstr "Akun Piutang" #. module: account #: view:account.payment.term:0 @@ -415,33 +224,6 @@ msgstr "Keterangan pada invoice" msgid "Total entries" msgstr "Total Transaksi" -#. module: account -#: field:account.fiscal.position.account,account_src_id:0 -#: field:account.fiscal.position.account.template,account_src_id:0 -msgid "Account Source" -msgstr "" - -#. module: account -#: field:account.journal,update_posted:0 -msgid "Allow Cancelling Entries" -msgstr "" - -#. module: account -#: field:account.analytic.account,quantity_max:0 -msgid "Maximal quantity" -msgstr "Kwantitas maksimal" - -#. module: account -#: model:process.transition,name:account.process_transition_paymentorderbank0 -#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 -msgid "Payment Reconcilation" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal -msgid "All Analytic Entries" -msgstr "" - #. module: account #: rml:account.overdue:0 msgid "Date:" @@ -457,24 +239,6 @@ msgstr "Potongan (%)" msgid "Negative" msgstr "Negatif" -#. module: account -#: field:account.analytic.line,move_id:0 -msgid "Move Line" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "" -"Would your payment have been carried out after this mail was sent, please " -"consider the present one as void. Do not hesitate to contact our accounting " -"departement at +32 81 81 37 00." -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Contra" -msgstr "" - #. module: account #: field:account.analytic.account,state:0 #: field:account.bank.statement,state:0 @@ -485,29 +249,12 @@ msgstr "" msgid "State" msgstr "Status" -#. module: account -#: help:account.tax,base_code_id:0 -#: help:account.tax,ref_base_code_id:0 -#: help:account.tax,ref_tax_code_id:0 -#: help:account.tax,tax_code_id:0 -#: help:account.tax.template,base_code_id:0 -#: help:account.tax.template,ref_base_code_id:0 -#: help:account.tax.template,ref_tax_code_id:0 -#: help:account.tax.template,tax_code_id:0 -msgid "Use this code for the VAT declaration." -msgstr "" - #. module: account #: view:account.tax:0 #: view:account.tax.template:0 msgid "Special Computation" msgstr "Perhitungan khusus" -#. module: account -#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement with/without reconciliation from draft statement" -msgstr "" - #. module: account #: wizard_view:account.move.bank.reconcile,init:0 #: model:ir.actions.wizard,name:account.action_account_bank_reconcile_tree @@ -520,75 +267,25 @@ msgstr "Rekonsiliasi Bank" #: field:account.model,ref:0 #: field:account.move,ref:0 #: rml:account.overdue:0 +#: field:account.subscription,ref:0 msgid "Ref" msgstr "Ref" -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "View Account Analytic Lines" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_periodical_processing -msgid "Periodical Processing" -msgstr "" - #. module: account #: view:report.hr.timesheet.invoice.journal:0 msgid "Analytic Entries Stats" msgstr "Status Transaksi Analisis" -#. module: account -#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form -#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form -msgid "Tax Code Templates" -msgstr "" - #. module: account #: view:account.invoice:0 msgid "Supplier invoice" msgstr "Faktur Pembelian" -#. module: account -#: model:process.transition,name:account.process_transition_reconcilepaid0 -#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 -msgid "Reconcile Paid" -msgstr "" - -#. module: account -#: wizard_field:account.chart,init,target_move:0 -msgid "Target Moves" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_tax_template_form -#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form -msgid "Tax Templates" -msgstr "" - #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" msgstr "Terbayar/Cocok" -#. module: account -#: field:account.account.type,close_method:0 -msgid "Deferral Method" -msgstr "" - -#. module: account -#: help:res.partner,property_payment_term:0 -msgid "" -"This payment term will be used, instead of the default one, for the current " -"partner" -msgstr "" - -#. module: account -#: field:account.tax,ref_base_code_id:0 -#: field:account.tax.template,ref_base_code_id:0 -msgid "Refund Base Code" -msgstr "" - #. module: account #: view:account.invoice.line:0 msgid "Line" @@ -600,93 +297,21 @@ msgstr "Baris" msgid "True" msgstr "Benar" -#. module: account -#: help:account.payment.term.line,days:0 -msgid "" -"Number of days to add before computation of the day of month.If Date=15/01, " -"Number of Days=22, Day of Month=-1, then the due date is 28/02." -msgstr "" - #. module: account #: model:ir.model,name:account.model_account_tax msgid "account.tax" msgstr "akun.pajak" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Bank Journal " -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Printing Date" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -msgid "Mvt" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use this general account in this journal !" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_aged_trial_balance -#: model:ir.ui.menu,name:account.menu_aged_trial_balance -msgid "Aged Partner Balance" -msgstr "" - #. module: account #: view:account.journal:0 msgid "Entry Controls" msgstr "Kontrol Inputan" -#. module: account -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive account." -msgstr "" - -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "(Keep empty to open the current situation)" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_account -msgid "Fiscal Position Accounts Mapping" -msgstr "" - -#. module: account -#: model:account.journal,name:account.sales_journal -msgid "x Sales Journal" -msgstr "" - #. module: account #: field:account.analytic.account,contact_id:0 msgid "Contact" msgstr "Kontak" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not validate a non balanced entry !" -msgstr "" - -#. module: account -#: selection:account.model.line,date:0 -#: selection:account.model.line,date_maturity:0 -msgid "Partner Payment Term" -msgstr "" - -#. module: account -#: view:account.move.reconcile:0 -msgid "Account Entry Reconcile" -msgstr "" - #. module: account #: wizard_button:account.move.bank.reconcile,init,open:0 msgid "Open for bank reconciliation" @@ -697,107 +322,11 @@ msgstr "Buka untuk rekonsiliasi bank" msgid "Discount (%)" msgstr "Potongan (%)" -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not add/modify entries in a closed journal." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "" -"You can not do this modification on a reconciled entry ! Please note that " -"you can just change some non important fields !" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Global taxes defined, but not in invoice lines !" -msgstr "" - -#. module: account -#: field:account.analytic.account,child_ids:0 -msgid "Childs Accounts" -msgstr "" - -#. module: account -#: help:account.fiscalyear,company_id:0 -msgid "Keep empty if the fiscal year belongs to several companies." -msgstr "" - #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" msgstr "Akuntansi Analisis" -#. module: account -#: view:account.analytic.line:0 -#: code:addons/account/project/wizard/wizard_account_analytic_line.py:0 -#: model:ir.actions.act_window,name:account.action_account_analytic_line_form -#: model:ir.ui.menu,name:account.next_id_41 -#, python-format -msgid "Analytic Entries" -msgstr "" - -#. module: account -#: help:product.category,property_account_expense_categ:0 -msgid "" -"This account will be used, instead of the default one, to value outgoing " -"stock for the current product category" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "No. Voucher" - -#. module: account -#: field:account.analytic.line,user_id:0 -#: field:account.journal,user_id:0 -msgid "User" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form -msgid "account.analytic.line.extended" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "You must first select a partner !" -msgstr "" - -#. module: account -#: field:account.invoice,comment:0 -msgid "Additional Information" -msgstr "" - -#. module: account -#: selection:account.invoice,type:0 -msgid "Customer Refund" -msgstr "" - -#. module: account -#: wizard_view:populate_statement_from_inv,init:0 -msgid "Import invoices in statement" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,seq_journal:0 -msgid "Separated Journal Sequences" -msgstr "" - -#. module: account -#: field:account.tax,ref_tax_sign:0 -#: field:account.tax,tax_sign:0 -#: field:account.tax.template,ref_tax_sign:0 -#: field:account.tax.template,tax_sign:0 -msgid "Tax Code Sign" -msgstr "" - #. module: account #: selection:account.move,type:0 msgid "Journal Voucher" @@ -808,61 +337,11 @@ msgstr "Jurnal Voucer" msgid "St." msgstr "St." -#. module: account -#: model:ir.actions.act_window,name:account.action_tax_code_line_open -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" msgstr "Nama Kolom" -#. module: account -#: field:account.tax.code,sign:0 -#: field:account.tax.code.template,sign:0 -msgid "Sign for parent" -msgstr "" - -#. module: account -#: field:account.fiscalyear,end_journal_period_id:0 -msgid "End of Year Entries Journal" -msgstr "" - -#. module: account -#: help:res.partner,property_account_payable:0 -msgid "" -"This account will be used, instead of the default one, as the payable " -"account for the current partner" -msgstr "" - -#. module: account -#: help:account.move.line,amount_currency:0 -msgid "" -"The amount expressed in an optionnal other currency if it is a multi-" -"currency entry." -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_paymententries0 -msgid "Can be draft or validated" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.pay,init,reconcile:0 -msgid "Partial Payment" -msgstr "" - -#. module: account -#: wizard_view:account_use_models,create:0 -msgid "Move Lines Created." -msgstr "" - #. module: account #: field:account.fiscalyear,state:0 #: field:account.journal.period,state:0 @@ -873,17 +352,6 @@ msgstr "" msgid "Status" msgstr "Status" -#. module: account -#: field:account.tax,child_ids:0 -msgid "Childs Tax Account" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Period to" -msgstr "" - #. module: account #: field:account.account.type,partner_account:0 msgid "Partner account" @@ -894,84 +362,23 @@ msgstr "Akun rekanan" msgid "Generate entries before:" msgstr "Membuat transaksi sebelum:" -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger -#: model:ir.actions.wizard,name:account.account_analytic_account_cost_ledger_report -msgid "Cost Ledger" -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "(Keep empty for all open fiscal years)" -msgstr "" - -#. module: account -#: field:account.invoice,move_lines:0 -msgid "Move Lines" -msgstr "" - -#. module: account -#: view:account.move:0 -msgid "Total Credit" -msgstr "Total Kredit" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The opening journal must not have any entry in the new fiscal year !" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_config_wizard -msgid "account.config.wizard" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree -#: model:ir.ui.menu,name:account.report_account_analytic_journal_print -msgid "Account cost and revenue by journal" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "6" -msgstr "" - #. module: account #: model:ir.ui.menu,name:account.next_id_30 msgid "Bank Reconciliation" msgstr "Rekonsiliasi Bank" #. module: account -#: model:ir.model,name:account.model_account_account_template -msgid "Templates for Accounts" -msgstr "" +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "Tipe Akun" #. module: account -#: field:account.tax,type_tax_use:0 -#: field:account.tax.template,type_tax_use:0 -msgid "Tax Use in" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_account_form -#: model:ir.model,name:account.model_account_analytic_account -#: model:ir.ui.menu,name:account.account_analytic_def_account -msgid "Analytic Accounts" -msgstr "" - -#. module: account -#: field:account.model,name:0 -msgid "Model Name" -msgstr "Nama model" - -#. module: account -#: model:ir.model,name:account.model_account_bank_accounts_wizard -msgid "account.bank.accounts.wizard" -msgstr "" +#: wizard_view:account.print.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_print_journal +#: model:ir.ui.menu,name:account.menu_print_journal +msgid "Print Journal" +msgstr "Cetak Jurnal" #. module: account #: field:account.move.line,date_created:0 @@ -979,48 +386,22 @@ msgstr "" msgid "Creation date" msgstr "Tanggal pembuatan" -#. module: account -#: wizard_button:account.invoice.refund,init,cancel_invoice:0 -msgid "Cancel Invoice" -msgstr "" - -#. module: account -#: field:account.journal.column,required:0 -msgid "Required" -msgstr "" - #. module: account #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" msgstr "Akun Biaya" -#. module: account -#: field:account.model.line,amount_currency:0 -#: field:account.move.line,amount_currency:0 -msgid "Amount Currency" -msgstr "" - #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" msgstr "Akun Kategori Biaya" -#. module: account -#: wizard_field:account.fiscalyear.close,init,fy2_id:0 -msgid "New Fiscal Year" -msgstr "" - #. module: account #: wizard_field:account.open_closed_fiscalyear,init,fyear_id:0 msgid "Fiscal Year to Open" msgstr "Tahun buku yang dibuka" -#. module: account -#: view:account.config.wizard:0 -msgid "Select Chart of Accounts" -msgstr "" - #. module: account #: field:account.analytic.account,quantity:0 #: rml:account.analytic.account.balance:0 @@ -1034,46 +415,19 @@ msgstr "" msgid "Quantity" msgstr "Kwantitas" -#. module: account -#: rml:account.general.journal:0 -msgid "Printing Date :" -msgstr "" - #. module: account #: wizard_field:account.account.balance.report,checktype,date_to:0 -#: field:account.fiscalyear,date_stop:0 #: wizard_field:account.general.ledger.report,checktype,date_to:0 #: wizard_field:account.partner.balance.report,init,date2:0 #: wizard_field:account.third_party_ledger.report,init,date2:0 msgid "End date" msgstr "Tanggal akhir" -#. module: account -#: field:account.invoice.tax,base_amount:0 -msgid "Base Code Amount" -msgstr "" - -#. module: account -#: field:account.account,child_id:0 -msgid "Children Accounts" -msgstr "" - #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" msgstr "Default Akun Debit" -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_tree -#: model:ir.ui.menu,name:account.menu_bank_statement_tree -msgid "Entries by Statements" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_analyticinvoice0 -msgid "analytic Invoice" -msgstr "" - #. module: account #: wizard_field:account.automatic.reconcile,init,period_id:0 #: field:account.bank.statement,period_id:0 @@ -1103,53 +457,18 @@ msgstr "Grand Total" msgid "Financial Accounting" msgstr "Akutansi Keuangan" -#. module: account -#: rml:account.invoice:0 -msgid "Net Total:" -msgstr "" - -#. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,name:0 -#: field:account.fiscal.position.account,position_id:0 -#: field:account.fiscal.position.account.template,position_id:0 -#: field:account.fiscal.position.tax,position_id:0 -#: field:account.fiscal.position.tax.template,position_id:0 -#: view:account.fiscal.position.template:0 -#: field:account.invoice,fiscal_position:0 -#: model:ir.model,name:account.model_account_fiscal_position -#: field:res.partner,property_account_position:0 -msgid "Fiscal Position" -msgstr "" - #. module: account #: field:account.analytic.line,product_uom_id:0 #: field:account.move.line,product_uom_id:0 msgid "UoM" msgstr "Satuan" -#. module: account -#: view:product.product:0 -#: view:product.template:0 -msgid "Purchases Properties" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,page_split:0 -msgid "One Partner Per Page" -msgstr "" - #. module: account #: field:account.account,child_parent_ids:0 #: field:account.account.template,child_parent_ids:0 msgid "Children" msgstr "Anak" -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_tax -msgid "Fiscal Position Taxes Mapping" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2_new #: model:ir.ui.menu,name:account.menu_action_invoice_tree2_new @@ -1161,52 +480,21 @@ msgstr "Faktur Pembelian Baru" msgid "Amount paid" msgstr "Jumlah terbayar" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_general_journal -#: model:ir.ui.menu,name:account.menu_general_journal -msgid "Print General journal" -msgstr "" - -#. module: account -#: selection:account.invoice,type:0 -#: model:process.transition,name:account.process_transition_customerinvoice0 -#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 -msgid "Customer Invoice" -msgstr "" - #. module: account #: wizard_view:account.open_closed_fiscalyear,init:0 msgid "Choose Fiscal Year" msgstr "Pilih Tahun Buku" #. module: account -#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 -msgid "Write-Off Journal" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree -#: model:ir.ui.menu,name:account.account_analytic_journal_print -msgid "Print Analytic Journals" -msgstr "" - -#. module: account -#: help:account.payment.term.line,sequence:0 -msgid "" -"The sequence field is used to order the payment term lines from the lowest " -"sequences to the higher ones" -msgstr "" +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "No. Voucher" #. module: account #: field:account.bank.statement.reconcile,total_new:0 msgid "Total write-off" msgstr "Total Penghapusan" -#. module: account -#: view:account.tax.template:0 -msgid "Compute Code for Taxes included prices" -msgstr "" - #. module: account #: view:account.invoice.tax:0 #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -1214,57 +502,18 @@ msgstr "" msgid "Tax codes" msgstr "Kode-kode pajak" -#. module: account -#: field:account.fiscal.position.template,chart_template_id:0 -#: field:account.tax.template,chart_template_id:0 -#: field:wizard.multi.charts.accounts,chart_template_id:0 -msgid "Chart Template" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_income_categ:0 -msgid "Income Category Account" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.analytic_account_form #: model:ir.ui.menu,name:account.account_analytic_form msgid "New Analytic Account" msgstr "Akun Analisis Baru" -#. module: account -#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form -#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template -msgid "Fiscal Position Templates" -msgstr "" - #. module: account #: rml:account.invoice:0 #: field:account.invoice.line,price_unit:0 msgid "Unit Price" msgstr "Harga Satuan" -#. module: account -#: model:ir.actions.wizard,name:account.action_move_journal_line_form_select -msgid "Standard entry" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_wizard_multi_charts_accounts -msgid "wizard.multi.charts.accounts" -msgstr "" - -#. module: account -#: field:account.move.line,tax_amount:0 -msgid "Tax/Base Amount" -msgstr "Jumlah Pajak/Dasar" - -#. module: account -#: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,name:0 -msgid "Fiscal Position Template" -msgstr "" - #. module: account #: field:account.payment.term,line_ids:0 msgid "Terms" @@ -1275,16 +524,6 @@ msgstr "Termin" msgid "Tax Report" msgstr "Laporan Pajak" -#. module: account -#: wizard_button:account.chart,init,open:0 -msgid "Open Charts" -msgstr "" - -#. module: account -#: wizard_view:account.fiscalyear.close.state,init:0 -msgid "Are you sure you want to close the fiscal year ?" -msgstr "" - #. module: account #: selection:account.move,type:0 msgid "Bank Receipt" @@ -1295,52 +534,15 @@ msgstr "Penerimaan Bank" msgid "Bank account" msgstr "Akun Bank" -#. module: account -#: field:account.chart.template,tax_template_ids:0 -msgid "Tax Template List" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_invoiceimport0 -msgid "Invoice import" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Tel. :" -msgstr "" - -#. module: account -#: model:account.journal,name:account.expenses_journal -msgid "x Expenses Journal" -msgstr "x Jurnal Beban" - #. module: account #: field:account.account,company_currency_id:0 msgid "Company Currency" msgstr "Mata uang perusahaan" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "J.C. / Move name" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.reconcile,init_partial,addendum:0 -msgid "Reconcile With Write-Off" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "" -"The expected balance (%.2f) is different than the computed one. (%.2f)" -msgstr "" - -#. module: account -#: help:wizard.multi.charts.accounts,code_digits:0 -msgid "No. of Digits to use for account code" -msgstr "" +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "Jumlah Pajak/Dasar" #. module: account #: field:account.bank.statement,balance_end_real:0 @@ -1357,22 +559,6 @@ msgstr "Pajak-pajak Pembelian" msgid "Line Name" msgstr "Nama Baris" -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree2 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 -msgid "Supplier Invoices" -msgstr "Invoice Pemasok" - -#. module: account -#: selection:account.payment.term.line,value:0 -msgid "Fixed Amount" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Analytic Credit" -msgstr "" - #. module: account #: field:account.move.line,reconcile_partial_id:0 #: wizard_button:account.move.line.reconcile,init_partial,partial:0 @@ -1384,11 +570,6 @@ msgstr "Rekonsiliasi sebagian" msgid "Not reconciled transactions" msgstr "Bukan transaksi yang dapat direkonsiliasi" -#. module: account -#: view:account.config.wizard:0 -msgid "Continue" -msgstr "" - #. module: account #: field:account.payment.term.line,value:0 msgid "Value" @@ -1412,16 +593,6 @@ msgstr "Model" msgid "Close a Fiscal Year" msgstr "Tutup Tahun Pembukuan" -#. module: account -#: field:account.journal,centralisation:0 -msgid "Centralised counterpart" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_supplierpaymentorder0 -msgid "Select invoices you want to pay and manages advances" -msgstr "" - #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 @@ -1431,44 +602,12 @@ msgstr "" msgid "View" msgstr "Tampilan" -#. module: account -#: selection:account.account.balance.report,checktype,display_account:0 -#: selection:account.general.ledger.report,checktype,display_account:0 -msgid "All" -msgstr "" - #. module: account #: field:account.move.line,analytic_lines:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic lines" msgstr "Baris analisis" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "" -"You can not do this modification on a confirmed entry ! Please note that you " -"can just change some non important fields !" -msgstr "" - -#. module: account -#: wizard_view:account.move.line.unreconcile,init:0 -#: wizard_view:account.reconcile.unreconcile,init:0 -msgid "" -"If you unreconciliate transactions, you must also verify all the actions " -"that are linked to those transactions because they will not be disable" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_electronicfile0 -msgid "Electronic File" -msgstr "" - #. module: account #: view:res.partner:0 msgid "Customer Credit" @@ -1479,17 +618,6 @@ msgstr "Hutang Pelanggan" msgid "Tax Lines" msgstr "Baris Pajak" -#. module: account -#: field:account.journal,fy_seq_id:0 -msgid "Sequences" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_type_form -#: model:ir.ui.menu,name:account.menu_action_account_type_form -msgid "Account Types" -msgstr "Tipe Akun" - #. module: account #: wizard_field:account.automatic.reconcile,init,journal_id:0 #: field:account.bank.statement,journal_id:0 @@ -1512,46 +640,12 @@ msgstr "Tipe Akun" msgid "Journal" msgstr "Jurnal" -#. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,tax_ids:0 -#: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,tax_ids:0 -msgid "Taxes Mapping" -msgstr "" - -#. module: account -#: field:account.account,check_history:0 -msgid "Display History" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,date1:0 -msgid " Start date" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,display_account:0 -#: wizard_field:account.general.ledger.report,checktype,display_account:0 -msgid "Display accounts " -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_bank_statement_reconcile_line -msgid "Statement reconcile line" -msgstr "" - #. module: account #: view:account.tax:0 #: view:account.tax.template:0 msgid "Keep empty to use the income account" msgstr "Biarkan kosong untuk menggunkan akun pendapatan" -#. module: account -#: field:account.payment.term.line,value_amount:0 -msgid "Value Amount" -msgstr "" - #. module: account #: view:account.bank.statement.reconcile:0 #: field:account.bank.statement.reconcile,line_new_ids:0 @@ -1560,37 +654,11 @@ msgstr "" msgid "Write-Off" msgstr "Menghapus" -#. module: account -#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 -msgid "With Currency" -msgstr "" - #. module: account #: field:res.partner,debit:0 msgid "Total Payable" msgstr "Total Hutang" -#. module: account -#: wizard_button:account.fiscalyear.close.state,init,close:0 -msgid "Close states" -msgstr "" - -#. module: account -#: view:account.subscription:0 -msgid "Remove Lines" -msgstr "Hapus Baris" - -#. module: account -#: field:account.invoice,address_contact_id:0 -msgid "Contact Address" -msgstr "Alamat Kontak" - -#. module: account -#: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 -msgid "Crédit" -msgstr "" - #. module: account #: model:account.account.type,name:account.account_type_income msgid "Income" @@ -1601,11 +669,6 @@ msgstr "Pendapatan" msgid "Supplier" msgstr "Pemasok" -#. module: account -#: field:account.invoice.tax,tax_amount:0 -msgid "Tax Code Amount" -msgstr "" - #. module: account #: selection:account.account.type,sign:0 msgid "Positive" @@ -1613,48 +676,11 @@ msgstr "Positif" #. module: account #: wizard_view:account.general.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_general_journal +#: model:ir.ui.menu,name:account.menu_general_journal msgid "Print General Journal" msgstr "Cetak Jurnal Umum" -#. module: account -#: help:account.period,special:0 -msgid "These periods can overlap." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_chart_template_form -#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form -msgid "Chart of Accounts Templates" -msgstr "" - -#. module: account -#: field:account.invoice,move_id:0 -msgid "Invoice Movement" -msgstr "" - -#. module: account -#: view:account.journal:0 -msgid "Invoice Sequences" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_wizard_multi_chart -#: model:ir.ui.menu,name:account.menu_wizard -#: view:wizard.multi.charts.accounts:0 -msgid "Generate Chart of Accounts from a Chart Template" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "The statement balance is incorrect !\n" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_legal_statement -msgid "Legal Statements" -msgstr "" - #. module: account #: field:account.tax.code,parent_id:0 #: field:account.tax.code.template,parent_id:0 @@ -1666,28 +692,6 @@ msgstr "Kode Induk" msgid "Open for reconciliation" msgstr "Dibuka untuk rekonsoliasi" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Purchase Journal" -msgstr "" - -#. module: account -#: selection:account.tax,tax_group:0 -#: selection:account.tax.template,tax_group:0 -msgid "VAT" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -msgid "Account n°" -msgstr "" - -#. module: account -#: field:account.analytic.account,type:0 -msgid "Account type" -msgstr "Type akun" - #. module: account #: wizard_field:account.automatic.reconcile,init,account_ids:0 msgid "Account to reconcile" @@ -1700,18 +704,6 @@ msgstr "Akun yang akan direkonsoliasi" msgid "Partner Ref." msgstr "Ref. Rekanan" -#. module: account -#: selection:account.partner.balance.report,init,result_selection:0 -#: selection:account.third_party_ledger.report,init,result_selection:0 -msgid "Receivable and Payable Accounts" -msgstr "" - -#. module: account -#: view:account.subscription:0 -#: field:account.subscription,lines_id:0 -msgid "Subscription Lines" -msgstr "" - #. module: account #: selection:account.analytic.journal,type:0 #: selection:account.journal,type:0 @@ -1737,21 +729,9 @@ msgid "Close Period" msgstr "Tutup Periode" #. module: account -#: code:addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "" -"Selected Move lines does not have any account move enties in draft state" -msgstr "" - -#. module: account -#: selection:account.account.type,close_method:0 -msgid "Detail" -msgstr "Detil" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "Third party" -msgstr "" +#: rml:account.overdue:0 +msgid "Due" +msgstr "Jatuh Tempo" #. module: account #: view:account.journal:0 @@ -1763,18 +743,6 @@ msgstr "Type Akun yang diijinkan(kosongkan jika bebas kontrol)" msgid "Starting Balance" msgstr "Saldo Awal" -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "No Partner Defined !" -msgstr "" - -#. module: account -#: field:account.tax,child_depend:0 -#: field:account.tax.template,child_depend:0 -msgid "Tax on Childs" -msgstr "" - #. module: account #: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,journal:0 #: view:account.journal.period:0 @@ -1783,122 +751,43 @@ msgstr "" msgid "Journals" msgstr "Jurnal-jurnal" -#. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/invoice.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#: code:addons/account/wizard/wizard_journal.py:0 -#, python-format -msgid "UserError" -msgstr "" - #. module: account #: wizard_button:account.invoice.refund,init,refund:0 msgid "Refund Invoice" msgstr "Invoice Kembali" -#. module: account -#: model:ir.actions.act_window,name:account.action_account_period_tree -#: model:ir.actions.wizard,name:account.wizard_period_close -#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree -msgid "Close a Period" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_2_report_hr_timesheet_invoice_journal msgid "Costs & Revenues" msgstr "Biaya dan Pendapatan" -#. module: account -#: constraint:account.account:0 -msgid "Error ! You can not create recursive accounts." -msgstr "" - #. module: account #: rml:account.tax.code.entries:0 msgid "Account Number" msgstr "Nomor Akun" -#. module: account -#: view:account.config.wizard:0 -msgid "Skip" -msgstr "" - -#. module: account -#: field:account.invoice,period_id:0 -msgid "Force Period" -msgstr "" - -#. module: account -#: help:account.account.type,sequence:0 -msgid "Gives the sequence order when displaying a list of account types." -msgstr "" - #. module: account #: view:account.invoice:0 msgid "Re-Open" msgstr "Buka Kembali" #. module: account -#: wizard_view:account.fiscalyear.close,init:0 -msgid "Are you sure you want to create entries?" -msgstr "" +#: wizard_field:account.analytic.account.chart,init,from_date:0 +#: wizard_field:account.analytic.line,init,from_date:0 +msgid "From" +msgstr "Dari" #. module: account -#: field:account.tax,include_base_amount:0 -#: field:account.tax.template,include_base_amount:0 -msgid "Include in base amount" -msgstr "" +#: wizard_field:account.aged.trial.balance,init,period_length:0 +msgid "Period length (days)" +msgstr "Lama periode(hari)" #. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Delta Credit" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile_unreconcile -#: model:ir.actions.wizard,name:account.wizard_unreconcile -msgid "Unreconcile Entries" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_supplierdraftinvoices0 -msgid "Pre-generated invoice from control" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "Cost Legder for period" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_tax_template -msgid "Fiscal Position Template Taxes Mapping" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_reconciliation0 -#: model:process.node,note:account.process_node_supplierreconciliation0 -msgid "Reconciliation of entries from invoice(s) and payment(s)" -msgstr "" - -#. module: account -#: wizard_view:account.central.journal.report,init:0 -msgid "Print Central Journal" -msgstr "" - -#. module: account -#: field:account.analytic.account,code:0 -msgid "Account code" -msgstr "Kode Akun" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use an inactive account!" -msgstr "" +#: rml:account.invoice:0 +#: field:account.invoice,amount_tax:0 +#: field:account.move.line,account_tax_id:0 +msgid "Tax" +msgstr "Pajak" #. module: account #: selection:account.payment.term.line,value:0 @@ -1907,11 +796,6 @@ msgstr "" msgid "Percent" msgstr "Persen" -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_charts -msgid "Charts" -msgstr "" - #. module: account #: selection:account.analytic.journal,type:0 #: selection:account.journal,type:0 @@ -1921,39 +805,9 @@ msgid "Sale" msgstr "Penjualan" #. module: account -#: wizard_button:account.account.balance.report,account_selection,checktype:0 -#: wizard_button:account.general.ledger.report,account_selection,checktype:0 -msgid "Next" -msgstr "" - -#. module: account -#: help:res.partner,property_account_position:0 -msgid "" -"The fiscal position will determine taxes and the accounts used for the the " -"partner." -msgstr "" - -#. module: account -#: field:account.analytic.account,user_id:0 -msgid "Account Manager" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entries are not of the same account or already reconciled ! " -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,debit:0 -#: wizard_field:account.move.line.reconcile,init_partial,debit:0 -msgid "Debit amount" -msgstr "" - -#. module: account -#: help:account.invoice,residual:0 -msgid "Remaining amount due." -msgstr "" +#: selection:account.subscription,period_type:0 +msgid "year" +msgstr "tahun" #. module: account #: wizard_button:account.account.balance.report,checktype,report:0 @@ -1973,15 +827,9 @@ msgid "Print" msgstr "Cetak" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account -#: model:account.journal,name:account.refund_expenses_journal -msgid "x Expenses Credit Notes Journal" -msgstr "" +#: wizard_field:account.account.balance.report,checktype,date_from:0 +msgid "Start date" +msgstr "Tanggal awal" #. module: account #: field:account.analytic.journal,type:0 @@ -1994,11 +842,6 @@ msgstr "" msgid "Type" msgstr "Jenis" -#. module: account -#: field:account.analytic.account,line_ids:0 -msgid "Analytic entries" -msgstr "Transaksi Analisis" - #. module: account #: view:account.journal:0 msgid "Accounts Allowed (empty for no control)" @@ -2009,12 +852,6 @@ msgstr "Akun yang diijinkan(kosongkan jika tanpa kontrol)" msgid "Untaxed amount" msgstr "Jumlah tidak kena pajak" -#. module: account -#: field:account.tax,account_collected_id:0 -#: field:account.tax.template,account_collected_id:0 -msgid "Invoice Tax Account" -msgstr "" - #. module: account #: view:account.move.line:0 msgid "Analytic Lines" @@ -2026,136 +863,41 @@ msgstr "Detil Analisis" msgid "Pay invoice" msgstr "Bayar Invoice" -#. module: account -#: help:res.partner,debit:0 -msgid "Total amount you have to pay to this supplier." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree5 -#: model:ir.ui.menu,name:account.menu_invoice_draft -msgid "Draft Customer Invoices" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_subscription_line -msgid "Account Subscription Line" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "No Filter" -msgstr "" - #. module: account #: field:account.payment.term.line,days:0 msgid "Number of Days" msgstr "Jumlah Hari" -#. module: account -#: help:account.invoice,reference:0 -msgid "The partner reference of this invoice." -msgstr "" - #. module: account #: wizard_field:account.general.ledger.report,checktype,sortbydate:0 msgid "Sort by:" msgstr "Urut berdasarkan" -#. module: account -#: field:account.move,to_check:0 -msgid "To Be Verified" -msgstr "" - -#. module: account -#: help:res.partner,credit:0 -msgid "Total amount this customer owns you." -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "7" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - #. module: account #: model:ir.actions.report.xml,name:account.account_transfers msgid "Transfers" msgstr "Transfer" -#. module: account -#: rml:account.overdue:0 -msgid "Li." -msgstr "" - #. module: account #: wizard_view:account.chart,init:0 msgid "Account charts" msgstr "Tabel Akun" -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Printing date" -msgstr "" - #. module: account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Salah dalam penyusunan format XML" -#. module: account -#: wizard_field:account.partner.balance.report,init,date1:0 -msgid " Start date" -msgstr "" - #. module: account #: wizard_view:account.analytic.account.journal.report,init:0 msgid "Analytic Journal Report" msgstr "Laporan Jurnal Analisis" -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree3 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 -msgid "Customer Refunds" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "No sequence defined in the journal !" -msgstr "" - -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "J.C./Move name" -msgstr "" - #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" msgstr "Nama Periode Jurnal" -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "There are no periods defined on New Fiscal Year." -msgstr "" - -#. module: account -#: field:account.tax.code,name:0 -#: field:account.tax.code.template,name:0 -msgid "Tax Case Name" -msgstr "" - #. module: account #: field:account.bank.statement.line,partner_id:0 #: field:account.bank.statement.reconcile,partner_id:0 @@ -2167,18 +909,6 @@ msgstr "" msgid "Partner" msgstr "Rekanan" -#. module: account -#: help:account.invoice,number:0 -msgid "" -"Unique number of the invoice, computed automatically when the invoice is " -"created." -msgstr "" - -#. module: account -#: field:account.analytic.account,partner_id:0 -msgid "Associated partner" -msgstr "Terhubung dengan rekanan" - #. module: account #: model:account.account.type,name:account.account_type_expense msgid "Expense" @@ -2190,128 +920,9 @@ msgid "Options" msgstr "Pengaturan" #. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - -#. module: account -#: model:process.process,name:account.process_process_invoiceprocess0 -msgid "Customer Invoice Process" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,period_id:0 -msgid "Opening Entries Period" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_validate_account_moves -#: model:ir.actions.wizard,name:account.wizard_validate_account_moves_line -#: model:ir.ui.menu,name:account.menu_validate_account_moves -msgid "Validate Account Moves" -msgstr "" - -#. module: account -#: selection:account.subscription,period_type:0 -msgid "days" -msgstr "" - -#. module: account -#: help:account.tax.template,sequence:0 -msgid "" -"The sequence field is used to order the taxes lines from the lowest " -"sequences to the higher ones. The order is important if you have a tax that " -"have several tax children. In this case, the evaluation order is important." -msgstr "" - -#. module: account -#: selection:account.aged.trial.balance,init,direction_selection:0 -msgid "Past" -msgstr "" - -#. module: account -#: field:account.analytic.account,company_currency_id:0 -#: field:account.bank.accounts.wizard,currency_id:0 -#: field:account.bank.statement,currency:0 -#: field:account.bank.statement.reconcile,total_currency:0 -#: field:account.bank.statement.reconcile,total_second_currency:0 -#: rml:account.general.ledger:0 -#: field:account.invoice,currency_id:0 -#: field:account.journal,currency:0 -#: field:account.model.line,currency_id:0 -#: field:account.move.line,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened -msgid "Unpaid invoices" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_paymentreconcile0 -msgid "Payment Reconcile" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_reconciliation_form -#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_tree -msgid "Statements reconciliation" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_subscription_form_new -#: model:ir.ui.menu,name:account.menu_action_subscription_form_new -msgid "New Subscription" -msgstr "" - -#. module: account -#: view:account.payment.term:0 -msgid "Computation" -msgstr "" - -#. module: account -#: field:account.analytic.account,parent_id:0 -msgid "Parent analytic account" -msgstr "" - -#. module: account -#: view:account.analytic.line:0 -msgid "Analytic Entry" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_accountingentries0 -#: model:process.node,note:account.process_node_supplieraccountingentries0 -msgid "Validated accounting entries." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_tax_code_tree -#: model:ir.ui.menu,name:account.menu_action_tax_code_tree -msgid "Chart of Taxes" -msgstr "" - -#. module: account -#: help:account.tax,sequence:0 -msgid "" -"The sequence field is used to order the taxes lines from the lowest " -"sequences to the higher ones. The order is important if you have a tax that " -"have several tax childs. In this case, the evaluation order is important." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open -msgid "Reconciled entries" -msgstr "" - -#. module: account -#: help:account.journal,entry_posted:0 -msgid "" -"Check this box if you don't want that new account moves pass through the " -"'draft' state and goes direclty to the 'posted state' without any manual " -"validation." -msgstr "" +#: field:account.invoice,address_contact_id:0 +msgid "Contact Address" +msgstr "Alamat Kontak" #. module: account #: view:account.fiscalyear:0 @@ -2324,20 +935,9 @@ msgid "(keep empty to use the current period)" msgstr "(abaikan jika untuk periode ini)" #. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree8 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree8 -msgid "Draft Supplier Invoices" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.refund,init,period:0 -msgid "Force period" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Due" -msgstr "Jatuh Tempo" +#: selection:account.account.type,close_method:0 +msgid "Detail" +msgstr "Detil" #. module: account #: selection:account.account,type:0 @@ -2350,31 +950,6 @@ msgstr "Konsolidasi" msgid "Root Account" msgstr "Akun Induk" -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Configration Error !" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "" -"Exception made of a mistake of our side, it seems that the following bills " -"stay unpaid. Please, take appropriate measures in order to carry out this " -"payment in the next 8 days." -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "VAT :" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 -msgid "Débit" -msgstr "" - #. module: account #: wizard_field:account.general.ledger.report,account_selection,Account_list:0 #: model:ir.actions.act_window,name:account.action_account_tree @@ -2384,67 +959,11 @@ msgstr "" msgid "Chart of Accounts" msgstr "Susunan Akun" -#. module: account -#: model:account.journal,name:account.check_journal -msgid "x Checks Journal" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Your journal must have a default credit and debit account." -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Sub-Total:" -msgstr "Sub-Total :" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_generate_subscription -#: model:ir.ui.menu,name:account.menu_generate_subscription -msgid "Create subscription entries" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,journal_id:0 -msgid "Opening Entries Journal" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Create a Fiscal Year" -msgstr "" - -#. module: account -#: field:product.template,taxes_id:0 -msgid "Customer Taxes" -msgstr "" - #. module: account #: field:account.invoice,date_invoice:0 msgid "Date Invoiced" msgstr "Tanggal Invoice" -#. module: account -#: help:account.account.balance.report,checktype,periods:0 -#: help:account.general.ledger.report,checktype,periods:0 -#: help:account.partner.balance.report,init,periods:0 -#: help:account.third_party_ledger.report,init,periods:0 -#: help:account.vat.declaration,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_liability -msgid "Liability" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "2" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: field:account.analytic.line,date:0 @@ -2464,80 +983,18 @@ msgstr "" msgid "Date" msgstr "Tanggal" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "" -"No period defined for this date !\n" -"Please create a fiscal year." -msgstr "" - -#. module: account -#: field:account.invoice,reference_type:0 -msgid "Reference Type" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.unreconcile,init,unrec:0 -#: wizard_button:account.reconcile.unreconcile,init,unrec:0 -msgid "Unreconcile" -msgstr "" - #. module: account #: field:account.tax,type:0 #: field:account.tax.template,type:0 msgid "Tax Type" msgstr "Jenis Pajak" -#. module: account -#: model:process.transition,name:account.process_transition_statemententries0 -msgid "Statement Entries" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have default credit and debit account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_template_form -#: model:ir.ui.menu,name:account.menu_action_account_template_form -msgid "Account Templates" -msgstr "" - -#. module: account -#: view:account.chart.template:0 -msgid "Chart of Accounts Template" -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "Voucher No" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_automatic_reconcile #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic reconciliation" msgstr "Rekonsoliasi Otomatis" -#. module: account -#: view:account.bank.statement:0 -msgid "Import Invoice" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Some entries are already reconciled !" -msgstr "" - -#. module: account -#: field:account.journal,refund_journal:0 -msgid "Refund Journal" -msgstr "" - #. module: account #: view:account.tax:0 msgid "Account Tax" @@ -2549,32 +1006,6 @@ msgstr "Akun Pajak" msgid "Shortcut" msgstr "Tombol Singkat" -#. module: account -#: field:account.bank.accounts.wizard,acc_no:0 -msgid "Account No." -msgstr "" - -#. module: account -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -msgid "Situation" -msgstr "Situasi" - -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Journal Code" -msgstr "" - -#. module: account -#: field:account.model,lines_id:0 -msgid "Model Entries" -msgstr "" - #. module: account #: field:account.analytic.account,date:0 msgid "Date End" @@ -2582,24 +1013,13 @@ msgstr "Tanggal Akhir" #. module: account #: view:account.bank.statement:0 +#: field:account.move.reconcile,line_id:0 #: model:ir.actions.act_window,name:account.action_move_line_search +#: model:ir.actions.act_window,name:account.action_move_line_tree1 #: model:ir.ui.menu,name:account.menu_action_move_line_search msgid "Entry Lines" msgstr "Baris Input" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_central_journal -#: model:ir.ui.menu,name:account.menu_central_journal -msgid "Print Central journal" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/invoice.py:0 -#, python-format -msgid "No Analytic Journal !" -msgstr "" - #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -2623,61 +1043,19 @@ msgstr "Buka Jurnal" msgid "Python Code" msgstr "Kode Python" -#. module: account -#: model:ir.actions.wizard,name:account.action_account_analytic_line -#: model:ir.actions.wizard,name:account.action_move_journal_line_form -#: model:ir.ui.menu,name:account.account_entries_analytic_entries -#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form -msgid "Entries Encoding by Line" -msgstr "" - -#. module: account -#: help:account.chart.template,tax_template_ids:0 -msgid "List of all the taxes that have to be installed by the wizard" -msgstr "" - #. module: account #: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 msgid "Period from" msgstr "Dari periode" -#. module: account -#: model:ir.model,name:account.model_account_bank_statement -#: model:process.node,name:account.process_node_bankstatement0 -#: model:process.node,name:account.process_node_supplierbankstatement0 -msgid "Bank Statement" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.pay,addendum:0 -#: wizard_view:account.move.line.reconcile,addendum:0 -msgid "Information addendum" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_entriesreconcile0 -#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 -msgid "Entries Reconcile" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,landscape:0 -msgid "Landscape Mode" -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 "" - #. module: account #: wizard_button:account.account.balance.report,account_selection,end:0 #: wizard_button:account.account.balance.report,checktype,end:0 #: wizard_button:account.aged.trial.balance,init,end:0 #: wizard_button:account.analytic.account.analytic.check.report,init,end:0 #: wizard_button:account.analytic.account.balance.report,init,end:0 +#: wizard_button:account.analytic.account.chart,init,end:0 #: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 #: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 #: wizard_button:account.analytic.account.journal.report,init,end:0 @@ -2719,23 +1097,11 @@ msgstr "" msgid "Cancel" msgstr "Batal" -#. module: account -#: help:account.account.type,sign:0 -msgid "" -"Allows to change the displayed amount of the balance in the reports, in " -"order to see positive results instead of negative ones in expenses accounts." -msgstr "" - #. module: account #: field:account.account.type,name:0 msgid "Acc. Type Name" msgstr "Nama Jenis Akun" -#. module: account -#: field:account.move.line,blocked:0 -msgid "Litigation" -msgstr "" - #. module: account #: view:account.move.line:0 #: wizard_view:account.move.validate,init:0 @@ -2743,26 +1109,11 @@ msgstr "" msgid "Information" msgstr "Keterangan" -#. module: account -#: help:account.journal,currency:0 -msgid "The currency used to enter statement" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_tax_report -msgid "Taxes Reports" -msgstr "" - #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" msgstr "Akun Hutang" -#. module: account -#: wizard_view:account.move.validate,init:0 -msgid "Select Period and Journal for Validation" -msgstr "Pilih periode dan jenis Jurnal untuk validasi" - #. module: account #: view:account.invoice:0 msgid "Other Info" @@ -2773,22 +1124,6 @@ msgstr "Info Lain" msgid "Default Credit Account" msgstr "Default Akun Kredit" -#. module: account -#: help:account.journal,user_id:0 -msgid "The responsible user of this journal" -msgstr "User yang bertanggung jawab untuk jurnal ini" - -#. module: account -#: model:process.node,name:account.process_node_supplierpaymentorder0 -msgid "Payment Order" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Already Reconciled" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: model:ir.ui.menu,name:account.next_id_40 @@ -2797,59 +1132,16 @@ msgstr "" msgid "Analytic" msgstr "Analisis" -#. module: account -#: model:process.node,name:account.process_node_invoiceinvoice0 -msgid "Create Invoice" -msgstr "" - -#. module: account -#: model:account.journal,name:account.refund_sales_journal -msgid "x Sales Credit Note Journal" -msgstr "" - #. module: account #: model:account.account.type,name:account.account_type_cash_equity msgid "Equity" msgstr "Modal" -#. module: account -#: model:ir.model,name:account.model_account_tax_code_template -msgid "Tax Code Template" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -msgid "In dispute" -msgstr "" - -#. module: account -#: help:account.tax.code,notprintable:0 -#: help:account.tax.code.template,notprintable:0 -msgid "" -"Check this box if you don't want that any vat related to this Tax Code " -"appears on invoices" -msgstr "" - #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Kepada Bapak/Ibu," -#. module: account -#: model:ir.ui.menu,name:account.menu_generic_report -msgid "Generic Reports" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,power:0 -msgid "Power" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "Account Analytic Lines Analysis" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Price" @@ -2863,55 +1155,23 @@ msgstr "-" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 -#: model:ir.ui.menu,name:account.account_analytic_chart +#: model:ir.actions.wizard,name:account.wizard_analytic_account_chart #: model:ir.ui.menu,name:account.account_analytic_chart_balance #: model:ir.ui.menu,name:account.account_analytic_def_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Analytic Chart of Accounts" msgstr "Susunan Akun Analisis" +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "Select Period and Journal for Validation" +msgstr "Pilih periode dan jenis Jurnal untuk validasi" + #. module: account #: field:account.invoice,number:0 msgid "Invoice Number" msgstr "Nomor Invoice" -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "You have to define an analytic journal of type '%s' !" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: field:account.invoice,amount_total:0 -#: field:account.invoice,check_total:0 -msgid "Total" -msgstr "Total" - -#. module: account -#: wizard_button:populate_statement_from_inv,go,finish:0 -msgid "O_k" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance -#: model:ir.actions.wizard,name:account.account_analytic_account_inverted_balance_report -msgid "Inverted Analytic Balance" -msgstr "" - -#. module: account -#: field:account.tax,applicable_type:0 -#: field:account.tax.template,applicable_type:0 -msgid "Applicable Type" -msgstr "" - -#. module: account -#: field:account.invoice,reference:0 -msgid "Invoice Reference" -msgstr "" - #. module: account #: field:account.account,name:0 #: field:account.account.template,name:0 @@ -2932,34 +1192,11 @@ msgstr "Nama" msgid "Reconciliation transactions" msgstr "Transaksi rekonsiliasi" -#. module: account -#: wizard_field:account.aged.trial.balance,init,direction_selection:0 -msgid "Analysis Direction" -msgstr "" - -#. module: account -#: wizard_button:populate_statement_from_inv,init,go:0 -msgid "_Go" -msgstr "" - -#. module: account -#: field:res.partner,ref_companies:0 -msgid "Companies that refers to partner" -msgstr "" - #. module: account #: field:account.move.line,date:0 msgid "Effective date" msgstr "Tanggal efektif" -#. module: account -#: field:account.journal.column,view_id:0 -#: view:account.journal.view:0 -#: field:account.journal.view,name:0 -#: model:ir.model,name:account.model_account_journal_view -msgid "Journal View" -msgstr "" - #. module: account #: selection:account.move.line,centralisation:0 msgid "Credit Centralisation" @@ -2975,13 +1212,6 @@ msgstr "Ref. Pelanggan" msgid "Partner ID" msgstr "Kode Rekanan" -#. module: account -#: wizard_view:account.automatic.reconcile,init:0 -#: wizard_view:account.invoice.pay,addendum:0 -#: wizard_view:account.move.line.reconcile,addendum:0 -msgid "Write-Off Move" -msgstr "" - #. module: account #: view:account.move.line:0 msgid "Total credit" @@ -2993,118 +1223,30 @@ msgstr "Total Kredit" msgid "New Customer Invoice" msgstr "Faktur Penjulan Baru" -#. 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." msgstr "Hormat kami," -#. module: account -#: model:ir.model,name:account.model_report_hr_timesheet_invoice_journal -msgid "Analytic account costs and revenues" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.refund,init:0 -msgid "Are you sure you want to refund this invoice ?" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_paid_open msgid "Open State" msgstr "Status Terbuka" -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Max.qty:" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "The account entries lines are not in valid state." -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_statemententries0 -msgid "From statement, create entries" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: rml:account.partner.balance:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: rml:account.vat.declaration:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree12 #: model:ir.ui.menu,name:account.menu_action_invoice_tree12 msgid "Draft Supplier Refunds" msgstr "Draft Pengembalian oleh pemasok" -#. module: account -#: model:process.node,name:account.process_node_accountingstatemententries0 -msgid "Accounting Statement" -msgstr "" - -#. module: account -#: view:product.product:0 -#: view:product.template:0 -#: view:res.partner:0 -msgid "Accounting" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Unable to reconcile entry \"%s\": %.2f" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Please set an analytic journal on this financial journal !" -msgstr "" - #. module: account #: wizard_view:account.move.line.unreconcile,init:0 #: wizard_view:account.reconcile.unreconcile,init:0 msgid "Unreconciliation transactions" msgstr "Transaksi belum Rekonsoliasi" -#. module: account -#: model:process.transition,note:account.process_transition_paymentorderbank0 -#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 -msgid "Reconcilation of entries from payment order." -msgstr "" - #. module: account #: field:account.bank.statement,move_line_ids:0 -#: field:account.move.reconcile,line_id:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line #: model:ir.model,name:account.model_account_move_line msgid "Entry lines" @@ -3137,33 +1279,6 @@ msgstr "Pemusatan" msgid "Tax Code" msgstr "Kode Pajak" -#. module: account -#: rml:account.analytic.account.journal:0 -msgid "Analytic Journal -" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "EXJ" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Analytic Debit" -msgstr "" - -#. module: account -#: field:account.account,currency_mode:0 -msgid "Outgoing Currencies Rate" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree10 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree10 -msgid "Draft Customer Refunds" -msgstr "" - #. module: account #: code:addons/account/account.py:0 #, python-format @@ -3176,54 +1291,17 @@ msgid "Readonly" msgstr "Hanya dibaca" #. module: account -#: help:account.model.line,date_maturity:0 -msgid "" -"The maturity date of the generated entries for this model. You can chosse " -"between the date of the creation action or the the date of the creation of " -"the entries plus the partner payment terms." -msgstr "" - -#. module: account -#: constraint:account.fiscalyear:0 -msgid "Error ! The date duration of the Fiscal Year is invalid. " -msgstr "" - -#. module: account -#: help:product.template,property_account_income:0 -msgid "" -"This account will be used, instead of the default one, to value incoming " -"stock for the current product" -msgstr "" +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +msgid "Situation" +msgstr "Situasi" #. module: account #: rml:account.invoice:0 -#: rml:account.overdue:0 #: xsl:account.transfer:0 msgid "Document" msgstr "Dokumen" -#. module: account -#: help:account.move.line,move_id:0 -msgid "The move of this entry line." -msgstr "" - -#. module: account -#: field:account.invoice.line,uos_id:0 -msgid "Unit of Measure" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_receivable:0 -msgid "Receivable Account" -msgstr "Akun Piutang" - -#. module: account -#: constraint:account.period:0 -msgid "" -"Invalid period ! Some periods overlap or the date duration is not in the " -"limit of the fiscal year. " -msgstr "" - #. module: account #: wizard_field:account.move.line.reconcile,init_full,trans_nbr:0 #: wizard_field:account.move.line.reconcile,init_partial,trans_nbr:0 @@ -3244,40 +1322,11 @@ msgstr "Batalkan invoice terpilih" msgid "Analytic Journal" msgstr "Jurnal Analisis" -#. module: account -#: rml:account.general.ledger:0 -msgid "Entry Label" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_paymentreconcile0 -msgid "Reconcilate the entries from payment" -msgstr "" - #. module: account #: rml:account.tax.code.entries:0 msgid "(" msgstr "(" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not modify/delete a journal with entries for this period !" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: view:account.period:0 -#: view:account.subscription:0 -msgid "Set to Draft" -msgstr "" - -#. module: account -#: help:account.invoice,origin:0 -#: help:account.invoice.line,origin:0 -msgid "Reference of the document that produced this invoice." -msgstr "" - #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 @@ -3292,20 +1341,9 @@ msgid "Base" msgstr "Dasar" #. module: account -#: field:account.analytic.account,name:0 -msgid "Account name" -msgstr "Nama akun" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -msgid "Others" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "8" -msgstr "" +#: field:account.model,name:0 +msgid "Model Name" +msgstr "Nama model" #. module: account #: view:account.invoice:0 @@ -3320,16 +1358,6 @@ msgstr "Validasi" msgid "Legend" msgstr "Legenda" -#. module: account -#: model:process.node,note:account.process_node_draftinvoices0 -msgid "Proposed invoice to be checked, validated and printed" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_move_line_select -msgid "account.move.line.select" -msgstr "" - #. module: account #: view:account.account:0 #: rml:account.account.balance:0 @@ -3348,23 +1376,6 @@ msgstr "" msgid "Account" msgstr "Akun" -#. module: account -#: help:account.invoice,payment_term:0 -msgid "" -"If you use payment terms, the due date will be computed automatically at the " -"generation of accounting entries. If you keep the payment term and the due " -"date empty, it means direct payment. The payment term may compute several " -"due dates: 50% now, 50% in one month." -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Date and Period" -msgstr "" - #. module: account #: view:account.account:0 #: view:account.account.template:0 @@ -3375,13 +1386,6 @@ msgstr "" msgid "Notes" msgstr "Catatan" -#. module: account -#: help:account.invoice,reconciled:0 -msgid "" -"The account moves of the invoice have been reconciled with account moves of " -"the payment(s)." -msgstr "" - #. module: account #: rml:account.invoice:0 #: view:account.invoice:0 @@ -3392,28 +1396,6 @@ msgstr "" msgid "Taxes" msgstr "Pajak-pajak" -#. module: account -#: wizard_view:account.fiscalyear.close,init:0 -msgid "Close Fiscal Year with new entries" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "BNK" -msgstr "" - -#. module: account -#: selection:account.account,currency_mode:0 -msgid "Average Rate" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_bankstatement0 -#: model:process.node,note:account.process_node_supplierbankstatement0 -msgid "Statement encoding produces payment entries" -msgstr "" - #. module: account #: field:account.account,code:0 #: rml:account.account.balance:0 @@ -3434,18 +1416,6 @@ msgstr "" msgid "Code" msgstr "Kode" -#. module: account -#: model:ir.ui.menu,name:account.menu_finance -msgid "Financial Management" -msgstr "" - -#. module: account -#: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entries: " -msgstr "" - #. module: account #: selection:account.account.type,close_method:0 #: selection:account.tax,type:0 @@ -3453,23 +1423,6 @@ msgstr "" msgid "None" msgstr "Tidak ada" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close -#: model:ir.ui.menu,name:account.menu_wizard_fy_close -msgid "Generate Fiscal Year Opening Entries" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "The account is not defined to be reconcile !" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile -msgid "Reconcile Entries" -msgstr "" - #. module: account #: wizard_view:account.wizard_paid_open,init:0 msgid "(Invoice should be unreconciled if you want to open it)" @@ -3486,49 +1439,11 @@ msgstr "Informasi Tambahan" msgid "Tax Name" msgstr "Nama Pajak" -#. module: account -#: wizard_view:account.fiscalyear.close.state,init:0 -msgid " Close states of Fiscal year and periods" -msgstr "" - -#. module: account -#: model:account.payment.term,name:account.account_payment_term -msgid "30 Days End of Month" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Couldn't create move between different companies" -msgstr "" - -#. module: account -#: field:account.chart.template,tax_code_root_id:0 -msgid "Root Tax Code" -msgstr "" - -#. module: account -#: help:account.bank.statement.reconcile,total_second_amount:0 -msgid "The amount in the currency of the journal" -msgstr "" - -#. module: account -#: field:account.tax.code,notprintable:0 -#: field:account.tax.code.template,notprintable:0 -msgid "Not Printable in Invoice" -msgstr "" - #. module: account #: field:account.move.line,move_id:0 msgid "Move" msgstr "memindahkan" -#. module: account -#: field:account.fiscal.position.tax,tax_src_id:0 -#: field:account.fiscal.position.tax.template,tax_src_id:0 -msgid "Tax Source" -msgstr "" - #. module: account #: model:ir.actions.report.xml,name:account.account_analytic_account_balance #: model:ir.actions.wizard,name:account.account_analytic_account_balance_report @@ -3540,130 +1455,27 @@ msgstr "Saldo Analisis" msgid "Total debit" msgstr "Total debit" -#. 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 #: selection:account.analytic.account,state:0 msgid "Pending" msgstr "Ditunda" -#. module: account -#: code:addons/account/wizard/wizard_bank_reconcile.py:0 -#, python-format -msgid "" -"You have to define the bank account\n" -"in the journal definition for reconciliation." -msgstr "" - -#. module: account -#: view:wizard.multi.charts.accounts:0 -msgid "Bank Information" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entry \"%s\" is not valid !" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Fax :" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance -#: model:ir.actions.wizard,name:account.wizard_partner_balance_report -#: model:ir.ui.menu,name:account.menu_partner_balance -msgid "Partner Balance" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "Third Party Ledger" -msgstr "" - -#. module: account -#: rml:account.vat.declaration:0 -msgid "Solde" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement -msgid "Bank statements" -msgstr "" - #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partner Accounts" msgstr "Akun Rekanan" -#. module: account -#: help:account.tax,tax_group:0 -#: help:account.tax.template,tax_group:0 -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 -#: view:account.bank.statement:0 -msgid "Real Entries" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_importinvoice0 -msgid "Import invoice" -msgstr "" - #. module: account #: view:account.invoice:0 #: view:wizard.multi.charts.accounts:0 msgid "Create" msgstr "Membuat" -#. module: account -#: model:process.transition.action,name:account.process_transition_action_createentries0 -msgid "Create entry" -msgstr "" - #. module: account #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice line" msgstr "Detail Invoice" -#. module: account -#: help:account.account,currency_id:0 -#: help:account.account.template,currency_id:0 -msgid "Force all moves for this account to have this secondary currency." -msgstr "" - -#. module: account -#: wizard_view:account.move.validate,init:0 -msgid "" -"All draft account entries in this journal and period will be validated. It " -"means you won't be able to modify their accouting fields." -msgstr "" - -#. module: account -#: selection:account.model.line,date:0 -#: selection:account.model.line,date_maturity:0 -msgid "Date of the day" -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 #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -3674,6 +1486,7 @@ msgstr "Induk Akun pajak" #: field:account.account,user_type:0 #: field:account.account.template,user_type:0 #: view:account.account.type:0 +#: field:account.analytic.account,type:0 #: model:ir.model,name:account.model_account_account_type msgid "Account Type" msgstr "Jenis Akun" @@ -3683,14 +1496,6 @@ msgstr "Jenis Akun" msgid "Bank account owner" msgstr "Pemilik akun bank" -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "Filter on Periods" -msgstr "" - #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" @@ -3702,31 +1507,11 @@ msgid "Pay and reconcile" msgstr "Bayar dan rekonsoliasi" #. module: account +#: rml:account.central.journal:0 #: model:ir.actions.report.xml,name:account.account_central_journal msgid "Central Journal" msgstr "Jurnal Pusat" -#. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_bank_statement.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "Balance brought forward" -msgstr "" - -#. module: account -#: field:account.account,child_consol_ids:0 -msgid "Consolidated Children" -msgstr "" - #. module: account #: wizard_field:account.account.balance.report,checktype,fiscalyear:0 #: wizard_field:account.chart,init,fiscalyear:0 @@ -3736,33 +1521,11 @@ msgstr "" msgid "Fiscal year" msgstr "Tahun Pembukuan" -#. module: account -#: selection:account.account.balance.report,checktype,display_account:0 -#: selection:account.general.ledger.report,checktype,display_account:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "3" -msgstr "" - -#. module: account -#: constraint:account.period:0 -msgid "Error ! The date duration of the Period(s) is invalid. " -msgstr "" - #. module: account #: selection:account.journal.period,state:0 msgid "Printed" msgstr "Dicetak" -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree4_new -#: model:ir.ui.menu,name:account.menu_action_invoice_tree4_new -msgid "New Supplier Refund" -msgstr "" - #. module: account #: view:account.model:0 msgid "Entry Model" @@ -3773,11 +1536,6 @@ msgstr "Model Input" msgid "Chart of accounts" msgstr "Susunan akun-akun" -#. module: account -#: field:account.subscription.line,subscription_id:0 -msgid "Subscription" -msgstr "" - #. module: account #: field:account.analytic.journal,code:0 msgid "Journal code" @@ -3794,12 +1552,6 @@ msgstr "Membuat inputan" msgid "Project line" msgstr "Detail proyek" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "SAJ" -msgstr "" - #. module: account #: wizard_field:account.automatic.reconcile,init,max_amount:0 msgid "Maximum write-off amount" @@ -3810,21 +1562,6 @@ msgstr "Jumlah penghapusan maksimum" msgid "Manual" msgstr "Manual" -#. module: account -#: view:account.invoice:0 -msgid "Compute Taxes" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,code_digits:0 -msgid "# of Digits" -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,addendum,period_id:0 -msgid "Write-Off Period" -msgstr "Periode Penghapusan" - #. module: account #: wizard_field:account.invoice.pay,addendum,comment:0 #: wizard_field:account.invoice.pay,init,name:0 @@ -3832,59 +1569,9 @@ msgid "Entry Name" msgstr "Nama Transaksi" #. module: account -#: help:account.invoice,account_id:0 -msgid "The partner account used for this invoice." -msgstr "" - -#. module: account -#: field:account.account.type,sequence:0 -#: field:account.invoice.tax,sequence:0 -#: field:account.journal.column,sequence:0 -#: field:account.model.line,sequence:0 -#: field:account.payment.term.line,sequence:0 -#: field:account.tax,sequence:0 -#: field:account.tax.template,sequence:0 -#: field:fiscalyear.seq,sequence_id:0 -msgid "Sequence" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_template -msgid "Template for Fiscal Position" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -msgid "Entry encoding" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.refund,init:0 -#: model:ir.actions.wizard,name:account.wizard_invoice_refund -msgid "Credit Note" -msgstr "" - -#. module: account -#: model:ir.actions.todo,note:account.config_fiscalyear -msgid "Define Fiscal Years and Select Charts of Account" -msgstr "" - -#. module: account -#: selection:account.config.wizard,period:0 -msgid "3 Months" -msgstr "" - -#. module: account -#: wizard_view:account.move.journal,init:0 -msgid "Standard entries" -msgstr "" - -#. module: account -#: help:account.account,check_history:0 -msgid "" -"Check this box if you want to print all entries when printing the General " -"Ledger, otherwise it will only print its balance." -msgstr "" +#: wizard_field:account.move.line.reconcile,addendum,period_id:0 +msgid "Write-Off Period" +msgstr "Periode Penghapusan" #. module: account #: selection:account.config.wizard,period:0 @@ -3892,73 +1579,12 @@ msgstr "" msgid "Month" msgstr "Bulan" -#. module: account -#: model:ir.model,name:account.model_account_subscription -msgid "Account Subscription" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Cost Ledger -" -msgstr "" - -#. module: account -#: view:account.subscription:0 -msgid "Entry Subscription" -msgstr "" - -#. module: account -#: selection:account.print.journal.report,init,sort_selection:0 -msgid "By date" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_config_wizard_form -msgid "Account Configure Wizard " -msgstr "" - -#. module: account -#: wizard_button:account.wizard_paid_open,init,yes:0 -msgid "Yes" -msgstr "Ya" - -#. module: account -#: wizard_view:account.general.ledger.report,account_selection:0 -msgid "Select Chart" -msgstr "" - #. module: account #: selection:account.chart,init,target_move:0 #: model:ir.actions.report.xml,name:account.account_move_line_list msgid "All Entries" msgstr "Semua Transaksi" -#. module: account -#: model:process.node,name:account.process_node_draftinvoices0 -#: model:process.node,name:account.process_node_supplierdraftinvoices0 -msgid "Draft Invoices" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Invoice Date" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have centralised counterpart" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "" -"You can not modify a posted entry of this journal !\n" -"You should mark the journal to allow canceling entries." -msgstr "" - #. module: account #: selection:account.account.type,close_method:0 msgid "Unreconciled" @@ -3975,18 +1601,6 @@ msgstr "bulan" msgid "Note" msgstr "Catatan" -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Bad total !" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 -#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 -msgid "New Statement" -msgstr "" - #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" @@ -3998,18 +1612,6 @@ msgstr "Urutan Entri" msgid "Closed" msgstr "Ditutup" -#. module: account -#: model:process.node,name:account.process_node_paymententries0 -msgid "Payment Entries" -msgstr "" - -#. module: account -#: help:account.automatic.reconcile,init,account_ids:0 -msgid "" -"If no account is specified, the reconciliation will be made using every " -"accounts that can be reconcilied" -msgstr "" - #. module: account #: model:ir.model,name:account.model_account_payment_term_line msgid "Payment Term Line" @@ -4034,47 +1636,6 @@ msgstr "Jurnal Umum" msgid "Columns" msgstr "Kolom" -#. module: account -#: selection:account.general.ledger.report,checktype,sortbydate:0 -msgid "Movement" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "General Journal -" -msgstr "" - -#. module: account -#: help:product.category,property_account_income_categ:0 -msgid "" -"This account will be used, instead of the default one, to value incoming " -"stock for the current product category" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Balance:" -msgstr "Saldo:" - -#. module: account -#: rml:account.overdue:0 -msgid "Customer account statement" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_journal_form -#: model:ir.ui.menu,name:account.menu_action_account_journal_form -msgid "Financial Journals" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Period" -msgstr "" - #. module: account #: rml:account.overdue:0 msgid "Paid" @@ -4090,24 +1651,11 @@ msgstr "." msgid "Period Name" msgstr "Nama Periode" -#. module: account -#: help:account.analytic.journal,type:0 -msgid "" -"Gives the type of the analytic journal. When a document (eg: an invoice) " -"needs to create analytic entries, Open ERP will look for a matching journal " -"of the same type." -msgstr "" - #. module: account #: field:account.journal,groups_id:0 msgid "Groups" msgstr "Kelompok" -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Code/Date" -msgstr "" - #. module: account #: field:account.account,active:0 #: field:account.analytic.account,active:0 @@ -4119,41 +1667,11 @@ msgstr "" msgid "Active" msgstr "Aktif" -#. module: account -#: model:process.node,note:account.process_node_electronicfile0 -msgid "Import from your bank statements" -msgstr "" - -#. module: account -#: view:account.chart.template:0 -msgid "Properties" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Customer Accounting Properties" -msgstr "" - #. module: account #: view:account.bank.statement:0 msgid "Select entries" msgstr "Pilih transaksi" -#. module: account -#: selection:account.chart,init,target_move:0 -msgid "All Posted Entries" -msgstr "" - -#. module: account -#: wizard_field:account.vat.declaration,init,based_on:0 -msgid "Base on" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Cash Payment" -msgstr "" - #. module: account #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" @@ -4178,51 +1696,22 @@ msgstr "Mata uang kedua" #: field:account.move.line,credit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,cost:0 msgid "Credit" msgstr "Kredit" -#. module: account -#: help:account.tax,child_depend:0 -#: help:account.tax.template,child_depend:0 -msgid "" -"Indicate if the tax computation is based on the value computed for the " -"computation of child taxes or based on the total amount." -msgstr "" - #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" msgstr "Akun Pengbalian Pajak" -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree9 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 -msgid "Unpaid Supplier Invoices" -msgstr "Hutang supplier yang belum terbaya" - -#. module: account -#: field:account.invoice,move_name:0 -msgid "Account Move" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: field:account.bank.statement,line_ids:0 -msgid "Statement lines" -msgstr "" - #. module: account #: field:account.move.line,amount_taxed:0 msgid "Taxed Amount" msgstr "Jumlah Pajak" -#. module: account -#: field:account.subscription,date_start:0 -msgid "Starting date" -msgstr "Tanggal Mulai" - #. module: account #: field:account.invoice.line,price_subtotal:0 msgid "Subtotal w/o tax" @@ -4238,24 +1727,6 @@ msgstr "Ref. Invoice" msgid "General Account" msgstr "Akun Umum" -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "End of Fiscal Year Entry" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,reconcil:0 -msgid " Include Reconciled Entries" -msgstr "" - -#. module: account -#: help:account.move.line,blocked:0 -msgid "" -"You can check this box to mark the entry line as a litigation with the " -"associated partner" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4267,43 +1738,6 @@ msgstr "Faktur Penjualan" msgid "Payable Limit" msgstr "Batas Hutang" -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 -#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 -msgid "Write-Off amount" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,state:0 -#: wizard_field:account.general.ledger.report,checktype,state:0 -#: wizard_field:account.partner.balance.report,init,state:0 -#: wizard_field:account.third_party_ledger.report,init,state:0 -msgid "Date/Period Filter" -msgstr "" - -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -#: selection:account.analytic.journal,type:0 -#: selection:account.bank.statement.line,type:0 -#: selection:account.journal,type:0 -msgid "General" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "Credit Trans." -msgstr "" - -#. module: account -#: help:account.bank.statement.reconcile,total_second_currency:0 -msgid "The currency of the journal" -msgstr "" - #. module: account #: view:account.journal.column:0 #: model:ir.model,name:account.model_account_journal_column @@ -4351,63 +1785,19 @@ msgstr "Invoice" msgid "Open" msgstr "Buka" -#. module: account -#: model:ir.ui.menu,name:account.next_id_29 -msgid "Search Entries" -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 "" - -#. module: account -#: field:account.account,tax_ids:0 -#: field:account.account.template,tax_ids:0 -msgid "Default Taxes" -msgstr "" - #. module: account #: constraint:ir.model:0 msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "Nama Objek harus berawalan _x dan tidak mengandung karakter khusus !" -#. module: account -#: help:account.config.wizard,code:0 -msgid "Name of the fiscal year as displayed in reports." -msgstr "" - -#. module: account -#: help:account.move.line,date_maturity:0 -msgid "" -"This field is used for payable and receivable entries. You can put the limit " -"date for the payment of this entry line." -msgstr "" - #. module: account #: rml:account.tax.code.entries:0 msgid "Third party (Country)" msgstr "Pihak ketiga(Negara)" #. module: account -#: field:account.account,parent_left:0 -msgid "Parent Left" -msgstr "" - -#. module: account -#: help:account.journal,sequence_id:0 -msgid "The sequence gives the display order for a list of journals" -msgstr "" - -#. module: account -#: field:account.journal,type_control_ids:0 -msgid "Type Controls" -msgstr "" - -#. module: account -#: field:account.analytic.account,complete_name:0 +#: field:account.analytic.account,name:0 #: rml:account.analytic.account.analytic.check:0 #: rml:account.analytic.account.balance:0 #: rml:account.analytic.account.inverted.balance:0 @@ -4437,9 +1827,10 @@ msgid "Unpaid Customer Invoices" msgstr "Invoice Pelanggan belum terbayar" #. module: account -#: field:account.subscription,period_total:0 -msgid "Number of period" -msgstr "Jumlah periode" +#: model:ir.actions.act_window,name:account.action_invoice_tree2 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 +msgid "Supplier Invoices" +msgstr "Invoice Pemasok" #. module: account #: field:account.analytic.line,product_id:0 @@ -4448,11 +1839,6 @@ msgstr "Jumlah periode" msgid "Product" msgstr "Produk" -#. module: account -#: rml:account.partner.balance:0 -msgid "Partner name" -msgstr "" - #. module: account #: rml:account.tax.code.entries:0 msgid ")" @@ -4463,196 +1849,48 @@ msgstr ")" msgid "Account period" msgstr "Periode Akun" -#. module: account -#: wizard_field:account.invoice.pay,init,journal_id:0 -msgid "Journal/Payment Mode" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Canceled Invoice" msgstr "Invoice Batal" #. module: account -#: field:account.model.line,date_maturity:0 -#: field:account.move.line,date_maturity:0 -#: rml:account.overdue:0 -msgid "Maturity date" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,soldeinit:0 -#: wizard_field:account.partner.balance.report,init,soldeinit:0 -#: wizard_field:account.third_party_ledger.report,init,soldeinit:0 -msgid "Include initial balances" -msgstr "" - -#. module: account -#: view:account.account.template:0 -msgid "Account Template" -msgstr "" +#: view:account.subscription:0 +msgid "Remove Lines" +msgstr "Hapus Baris" #. module: account #: field:account.tax.code,sum:0 msgid "Year Sum" msgstr "Jumlah Setahun" -#. module: account -#: model:process.transition,note:account.process_transition_filestatement0 -msgid "Import file from your bank statement" -msgstr "" - -#. module: account -#: field:account.account,type:0 -#: field:account.account.template,type:0 -msgid "Internal Type" -msgstr "" - -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Central Journal-" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "9" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_subscription_form_running -#: model:ir.ui.menu,name:account.menu_action_subscription_form_running -msgid "Running Subscriptions" -msgstr "" - -#. module: account -#: help:res.partner,property_account_receivable:0 -msgid "" -"This account will be used, instead of the default one, as the receivable " -"account for the current partner" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Bank Payment" -msgstr "" - #. module: account #: selection:account.move,state:0 msgid "Posted" msgstr "Posted" -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Credit Notes" -msgstr "" - -#. module: account -#: wizard_field:account.aged.trial.balance,init,period_length:0 -msgid "Period length (days)" -msgstr "Lama periode(hari)" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_open_closed_fiscalyear -#: model:ir.ui.menu,name:account.menu_wizard_open_closed_fy -msgid "Cancel Opening Entries" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_invoicemanually0 -msgid "Manually statement" -msgstr "" - -#. module: account -#: field:account.payment.term.line,days2:0 -msgid "Day of the Month" -msgstr "" - #. module: account #: field:account.analytic.journal,line_ids:0 #: field:account.tax.code,line_ids:0 msgid "Lines" msgstr "Baris" -#. module: account -#: model:ir.ui.menu,name:account.menu_account_end_year_treatments -msgid "End of Year Treatments" -msgstr "" - #. module: account #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Declaration" msgstr "Keterangan Pajak" -#. module: account -#: wizard_view:account.chart,init:0 -msgid "(If you do not select Fiscal year it will take all open fiscal year)" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_filestatement0 -msgid "File statement" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Free Reference" -msgstr "" - -#. module: account -#: view:account.model.line:0 -msgid "Entry Model Line" -msgstr "" - -#. module: account -#: view:account.tax.template:0 -msgid "Account Tax Template" -msgstr "" - -#. module: account -#: help:account.model,name:0 -msgid "This is a model for recurring accounting entries" -msgstr "" - #. module: account #: wizard_view:account.wizard_paid_open,init:0 msgid "Open Invoice" msgstr "Buka Invoice" -#. module: account -#: model:process.node,note:account.process_node_draftstatement0 -msgid "Set starting and ending balance for control" -msgstr "" - #. module: account #: wizard_view:account.wizard_paid_open,init:0 msgid "Are you sure you want to open this invoice ?" msgstr "Apakah anda yakin ingin membuka invoice ini ?" -#. module: account -#: help:account.tax,price_include:0 -msgid "" -"Check this is the price you use on the product and invoices is including " -"this tax." -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Supplier Debit" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "JNRL" -msgstr "" - #. module: account #: view:account.fiscalyear:0 #: view:account.period:0 @@ -4672,19 +1910,3228 @@ msgid "Receivables & Payables" msgstr "Piutang dan Hutang" #. module: account -#: rml:account.general.ledger:0 -msgid "General Ledger -" -msgstr "" +#: field:report.hr.timesheet.invoice.journal,quantity:0 +msgid "Quantities" +msgstr "Kwantitas" #. module: account #: field:account.analytic.account,date_start:0 msgid "Date Start" msgstr "Mulai Tanggal" +#. module: account +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: field:account.invoice,amount_total:0 +#: field:account.invoice,check_total:0 +msgid "Total" +msgstr "Total" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,statement_id:0 +#: field:account.move.line,statement_id:0 +msgid "Statement" +msgstr "Pernyataan" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree2 +#: model:ir.ui.menu,name:account.account_analytic_journal_entries +msgid "Analytic Entries by Journal" +msgstr "Transaksi analisis berdasarkan jenis jurnal" + +#. module: account +#: field:account.account,company_id:0 +#: wizard_field:account.account.balance.report,checktype,company_id:0 +#: wizard_field:account.aged.trial.balance,init,company_id:0 +#: field:account.analytic.account,company_id:0 +#: field:account.fiscal.position,company_id:0 +#: field:account.fiscalyear,company_id:0 +#: wizard_field:account.general.ledger.report,checktype,company_id:0 +#: field:account.invoice,company_id:0 +#: field:account.journal,company_id:0 +#: wizard_field:account.partner.balance.report,init,company_id:0 +#: field:account.tax,company_id:0 +#: field:account.tax.code,company_id:0 +#: wizard_field:account.third_party_ledger.report,init,company_id:0 +#: wizard_field:account.vat.declaration,init,company_id:0 +#: field:wizard.multi.charts.accounts,company_id:0 +msgid "Company" +msgstr "Perusahaan" + +#. module: account +#: field:account.analytic.journal,name:0 +msgid "Journal name" +msgstr "Nama jurnal" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile_select +#: model:ir.ui.menu,name:account.menu_reconcile_select +msgid "Reconcile entries" +msgstr "Daftar transaksi Reconsoliasi" + +#. module: account +#: xsl:account.transfer:0 +msgid "Change" +msgstr "Ganti" + +#. module: account +#: field:account.journal.period,icon:0 +msgid "Icon" +msgstr "Icon" + +#. module: account +#: model:ir.model,name:account.model_account_journal_period +msgid "Journal - Period" +msgstr "Periode Jurnal" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,credit:0 +#: wizard_field:account.move.line.reconcile,init_partial,credit:0 +msgid "Credit amount" +msgstr "Jumlah Kredit" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create Monthly Periods" +msgstr "Membuat Periode Bulanan" + +#. module: account +#: field:account.invoice,address_invoice_id:0 +msgid "Invoice Address" +msgstr "Alamat Invoice" + +#. module: account +#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree_month +#: model:ir.ui.menu,name:account.report_account_analytic_journal_print_month +msgid "Account cost and revenue by journal (This Month)" +msgstr "Aku biaya dan pendapatan berdasarkan jurnal(bulan ini)" + +#. module: account +#: wizard_button:account.move.line.unreconcile.select,init,open:0 +msgid "Open for unreconciliation" +msgstr "Buka untuk pembatalan rekonsoliasi" + +#. module: account +#: wizard_button:account.automatic.reconcile,reconcile,end:0 +msgid "OK" +msgstr "OK" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.aged.trial.balance,init,result_selection:0 +msgid "Receivable" +msgstr "Piutang" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_account_balance +#: model:ir.actions.wizard,name:account.wizard_account_balance_report +#: model:ir.actions.wizard,name:account.wizard_balance_report +#: model:ir.ui.menu,name:account.menu_account_balance_report +msgid "Account Balance" +msgstr "Neraca Saldo" + +#. module: account +#: rml:account.overdue:0 +msgid "VAT:" +msgstr "PPN :" + +#. module: account +#: view:product.product:0 +msgid "Sale Taxes" +msgstr "Pajak Penjualan" + +#. module: account +#: model:ir.model,name:account.model_account_move_reconcile +msgid "Account Reconciliation" +msgstr "Akun Rekonsoliasi" + +#. module: account +#: view:account.bank.statement:0 +#: selection:account.bank.statement,state:0 +msgid "Confirm" +msgstr "Konfirmasi" + +#. module: account +#: help:account.tax,domain:0 +#: help:account.tax.template,domain:0 +msgid "" +"This field is only used if you develop your own module allowing developers " +"to create specific taxes in a custom domain." +msgstr "" +"Kolom ini hanya digunakan jika anda membuat perumusan tentang perhitungan " +"pajak sendiri" + +#. module: account +#: field:account.bank.statement.reconcile,total_amount:0 +#: field:account.bank.statement.reconcile,total_second_amount:0 +msgid "Payment amount" +msgstr "Total Pembayaran" + +#. module: account +#: view:account.analytic.account:0 +msgid "Analytic account" +msgstr "Akun Analisis" + +#. module: account +#: rml:account.invoice:0 +#: selection:account.invoice,type:0 +msgid "Supplier Invoice" +msgstr "Faktur Pembelian" + +#. module: account +#: selection:account.move.line,state:0 +msgid "Valid" +msgstr "Valid" + +#. module: account +#: field:account.account,debit:0 +#: rml:account.account.balance:0 +#: field:account.analytic.account,debit:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.central.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: field:account.model.line,debit:0 +#: field:account.move.line,debit:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +#: field:report.hr.timesheet.invoice.journal,revenue:0 +msgid "Debit" +msgstr "Debit" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_42 +msgid "All Months" +msgstr "Semua Bulan" + +#. module: account +#: field:account.invoice,invoice_line:0 +msgid "Invoice Lines" +msgstr "Detail Invoice" + +#. module: account +#: field:account.invoice.tax,name:0 +msgid "Tax Description" +msgstr "Keterangan Pajak" + +#. module: account +#: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 +msgid "Reconciled transactions" +msgstr "Transaksi sudah direkonsoliasi" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reporting +msgid "Reporting" +msgstr "Pelaporan" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "/" +msgstr "/" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_configuration +msgid "Configuration" +msgstr "Pengaturan" + +#. module: account +#: view:account.journal:0 +msgid "Account Journal" +msgstr "Akun Jurnal" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Definition" +msgstr "Pendifinisian Pajak" + +#. module: account +#: field:account.tax,tax_group:0 +#: field:account.tax.template,tax_group:0 +msgid "Tax Group" +msgstr "Kelompok Pajak" + +#. module: account +#: field:account.tax,domain:0 +#: field:account.tax.template,domain:0 +msgid "Domain" +msgstr "Filter" + +#. module: account +#: wizard_field:account.invoice.pay,addendum,writeoff_journal_id:0 +msgid "Write-Off journal" +msgstr "Junal Penghapusan" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_43 +msgid "This Month" +msgstr "Bulan Ini" + +#. module: account +#: selection:account.analytic.account,state:0 +#: selection:account.bank.statement,state:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.invoice,state:0 +#: selection:account.journal.period,state:0 +#: selection:account.move,state:0 +#: selection:account.move.line,state:0 +#: selection:account.period,state:0 +#: selection:account.subscription,state:0 +msgid "Draft" +msgstr "Draft" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Fiscalyear" +msgstr "Tahun Pembukuan" + +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "dan Jurnal-jurnal" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger +#: model:ir.actions.wizard,name:account.account_analytic_account_quantity_cost_ledger_report +msgid "Cost Ledger (Only quantities)" +msgstr "Buku Biaya(Hanya kwantitas)" + +#. module: account +#: field:account.model.line,date:0 +msgid "Current Date" +msgstr "Tanggal Sekarang" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,date1:0 +#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 +#: wizard_field:account.analytic.account.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 +#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.journal.report,init,date1:0 +#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 +#: wizard_field:account.automatic.reconcile,init,date1:0 +msgid "Start of period" +msgstr "Awal Periode" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.act_account_analytic_account_2_account_invoice_line +msgid "Invoice lines" +msgstr "Detail invoice" + +#. module: account +#: field:account.bank.accounts.wizard,bank_account_id:0 +#: field:account.chart.template,bank_account_view_id:0 +#: field:account.invoice,partner_bank:0 +msgid "Bank Account" +msgstr "Akun Bank" + +#. module: account +#: wizard_button:account.wizard_paid_open,init,yes:0 +msgid "Yes" +msgstr "Ya" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Integrity Error !" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 +#, python-format +msgid "No journal for ending writing has been defined for the fiscal year" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_entries +msgid "Entries Encoding" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement from draft" +msgstr "" + +#. module: account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account +#: help:product.category,property_account_income_categ:0 +msgid "" +"This account will be used to value incoming stock for the current product " +"category" +msgstr "" + +#. module: account +#: wizard_view:account.automatic.reconcile,reconcile:0 +msgid "Reconciliation result" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Account move line \"%s\" is not valid" +msgstr "" + +#. module: account +#: field:account.tax,base_sign:0 +#: field:account.tax,ref_base_sign:0 +#: field:account.tax.template,base_sign:0 +#: field:account.tax.template,ref_base_sign:0 +msgid "Base Code Sign" +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "Error ! The duration of the Period(s) is/are invalid. " +msgstr "" + +#. module: account +#: help:account.payment.term.line,days2:0 +msgid "" +"Day of the month, set -1 for the last day of the current month. If it's " +"positive, it gives the day of the next month. Set 0 for net days (otherwise " +"it's based on the beginning of the month)." +msgstr "" + +#. module: account +#: field:account.config.wizard,charts:0 +msgid "Charts of Account" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_move_line_select +msgid "Move line select" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Keep empty to use the expense account" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"You can not modify a posted entry of this journal !\n" +"You should set the journal to allow cancelling entries if you want to do " +"that." +msgstr "" + +#. module: account +#: wizard_view:account.aged.trial.balance,init:0 +msgid "Aged Trial Balance" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries +msgid "Recurrent Entries" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger +#: model:ir.actions.wizard,name:account.wizard_third_party_ledger +#: model:ir.ui.menu,name:account.menu_third_party_ledger +msgid "Partner Ledger" +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Accounting Entries-" +msgstr "" + +#. module: account +#: help:account.journal,view_id:0 +msgid "" +"Gives the view used when writing or browsing entries in this journal. The " +"view tell Open ERP which fields should be visible, required or readonly and " +"in which order. You can create your own view for a faster encoding in each " +"journal." +msgstr "" + +#. module: account +#: help:account.invoice,payment_term:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment. The payment term may compute several " +"due dates, for example 50% now, 50% in one month." +msgstr "" + #. module: account #: code:addons/account/invoice.py:0 #, python-format -msgid "Can not create invoice move on centralised journal" +msgid "Warning !" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not delete posted movement: \"%s\"!" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "" +"Please verify the price of the invoice !\n" +"The real total does not match the computed total." +msgstr "" + +#. module: account +#: field:account.account,reconcile:0 +#: wizard_button:account.automatic.reconcile,init,reconcile:0 +#: field:account.bank.statement.line,reconcile_id:0 +#: view:account.bank.statement.reconcile:0 +#: field:account.bank.statement.reconcile.line,line_id:0 +#: field:account.move.line,reconcile_id:0 +#: wizard_button:account.move.line.reconcile,addendum,reconcile:0 +#: wizard_button:account.move.line.reconcile,init_full,reconcile:0 +msgid "Reconcile" +msgstr "" + +#. module: account +#: wizard_view:account.subscription.generate,init:0 +msgid "Subscription Compute" +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Account Num." +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Delta Debit" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "No analytic journal !" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Debit Trans." +msgstr "" + +#. module: account +#: field:account.analytic.line,account_id:0 +#: field:account.invoice.line,account_analytic_id:0 +#: field:account.move.line,analytic_account_id:0 +#: field:report.hr.timesheet.invoice.journal,account_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account +#: field:account.tax,child_depend:0 +#: field:account.tax.template,child_depend:0 +msgid "Tax on Children" +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +#: rml:account.general.journal:0 +#: field:account.journal,name:0 +msgid "Journal Name" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "No period found !" +msgstr "" + +#. module: account +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_src_id:0 +#: field:account.fiscal.position.account.template,account_src_id:0 +msgid "Account Source" +msgstr "" + +#. module: account +#: field:account.journal,update_posted:0 +msgid "Allow Cancelling Entries" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_paymentorderbank0 +#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 +msgid "Payment Reconcilation" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Can not %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: model:account.journal,name:account.expenses_journal +msgid "Journal de frais" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal +msgid "All Analytic Entries" +msgstr "" + +#. module: account +#: field:account.analytic.line,move_id:0 +msgid "Move Line" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "" +"Would your payment have been carried out after this mail was sent, please " +"consider the present one as void. Do not hesitate to contact our accounting " +"departement at +32 81 81 37 00." +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Contra" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree13 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 +msgid "Unpaid Supplier Refunds" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement with/without reconciliation from draft statement" +msgstr "" + +#. module: account +#: field:account.tax.template,type_tax_use:0 +msgid "Tax Use In" +msgstr "" + +#. module: account +#: help:account.tax.template,include_base_amount:0 +msgid "" +"Set if the amount of tax must be included in the base amount before " +"computing the next taxes." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing +msgid "Periodical Processing" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form +msgid "Tax Code Templates" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_reconcilepaid0 +#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 +msgid "Reconcile Paid" +msgstr "" + +#. module: account +#: wizard_field:account.chart,init,target_move:0 +msgid "Target Moves" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form +msgid "Tax Templates" +msgstr "" + +#. module: account +#: field:account.account.type,close_method:0 +msgid "Deferral Method" +msgstr "" + +#. module: account +#: field:account.tax.template,include_base_amount:0 +msgid "Include in Base Amount" +msgstr "" + +#. module: account +#: field:account.tax,ref_base_code_id:0 +#: field:account.tax.template,ref_base_code_id:0 +msgid "Refund Base Code" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "J.C. or Move name" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days:0 +msgid "" +"Number of days to add before computation of the day of month.If Date=15/01, " +"Number of Days=22, Day of Month=-1, then the due date is 28/02." +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Bank Journal " +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Printing Date" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "Mvt" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not use this general account in this journal !" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_aged_trial_balance +#: model:ir.ui.menu,name:account.menu_aged_trial_balance +msgid "Aged Partner Balance" +msgstr "" + +#. module: account +#: help:account.model.line,sequence:0 +msgid "" +"The sequence field is used to order the resources from lower sequences to " +"higher ones" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +#: wizard_view:account.analytic.line,init:0 +msgid "(Keep empty to open the current situation)" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account +msgid "Fiscal Position Accounts Mapping" +msgstr "" + +#. module: account +#: selection:account.model.line,date:0 +#: selection:account.model.line,date_maturity:0 +msgid "Partner Payment Term" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Account Entry Reconcile" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not add/modify entries in a closed journal." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "" +"You can not do this modification on a reconciled entry ! Please note that " +"you can just change some non important fields !" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 +#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 +msgid "Write-Off amount" +msgstr "" + +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + +#. module: account +#: field:account.analytic.account,line_ids:0 +#: view:account.analytic.line:0 +#: code:addons/account/project/wizard/wizard_account_analytic_line.py:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_line_form +#: model:ir.ui.menu,name:account.next_id_41 +#, python-format +msgid "Analytic Entries" +msgstr "" + +#. module: account +#: field:account.analytic.line,user_id:0 +#: field:account.journal,user_id:0 +msgid "User" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form +msgid "account.analytic.line.extended" +msgstr "" + +#. module: account +#: field:account.analytic.account,partner_id:0 +msgid "Associated Partner" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You must first select a partner !" +msgstr "" + +#. module: account +#: field:account.invoice,comment:0 +msgid "Additional Information" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Select the Period for Analysis" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_sign:0 +#: field:account.tax,tax_sign:0 +#: field:account.tax.template,ref_tax_sign:0 +#: field:account.tax.template,tax_sign:0 +msgid "Tax Code Sign" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_line_open +msgid "account.move.line" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_supplieranalyticcost0 +msgid "Analytic Invoice" +msgstr "" + +#. module: account +#: field:account.tax.code,sign:0 +#: field:account.tax.code.template,sign:0 +msgid "Sign for parent" +msgstr "" + +#. module: account +#: field:account.fiscalyear,end_journal_period_id:0 +msgid "End of Year Entries Journal" +msgstr "" + +#. module: account +#: view:product.product:0 +#: view:product.template:0 +msgid "Purchase Properties" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paymententries0 +msgid "Can be draft or validated" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.pay,init,reconcile:0 +msgid "Partial Payment" +msgstr "" + +#. module: account +#: wizard_view:account_use_models,create:0 +msgid "Move Lines Created." +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Period to" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger +#: model:ir.actions.wizard,name:account.account_analytic_account_cost_ledger_report +msgid "Cost Ledger" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "(Keep empty for all open fiscal years)" +msgstr "" + +#. module: account +#: field:account.invoice,move_lines:0 +msgid "Move Lines" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The opening journal must not have any entry in the new fiscal year !" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_config_wizard +msgid "account.config.wizard" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree +#: model:ir.ui.menu,name:account.report_account_analytic_journal_print +msgid "Account cost and revenue by journal" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "6" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_account_template +msgid "Templates for Accounts" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_form +#: model:ir.model,name:account.model_account_analytic_account +#: model:ir.ui.menu,name:account.account_analytic_def_account +msgid "Analytic Accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_accounts_wizard +msgid "account.bank.accounts.wizard" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.refund,init,cancel_invoice:0 +msgid "Cancel Invoice" +msgstr "" + +#. module: account +#: field:account.journal.column,required:0 +msgid "Required" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 +msgid "Write-Off Journal" +msgstr "" + +#. module: account +#: field:account.model.line,amount_currency:0 +#: field:account.move.line,amount_currency:0 +msgid "Amount Currency" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,fy2_id:0 +msgid "New Fiscal Year" +msgstr "" + +#. module: account +#: help:account.tax,tax_group:0 +msgid "" +"If a default tax is given in the partner it only overrides taxes from " +"accounts (or products) in the same group." +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Select Chart of Accounts" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Printing Date :" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_amount:0 +msgid "Base Code Amount" +msgstr "" + +#. module: account +#: help:account.journal,user_id:0 +msgid "The user responsible for this journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree +#: model:ir.ui.menu,name:account.menu_bank_statement_tree +msgid "Entries by Statements" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_analyticinvoice0 +msgid "analytic Invoice" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Net Total:" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,name:0 +#: field:account.fiscal.position.account,position_id:0 +#: field:account.fiscal.position.account.template,position_id:0 +#: field:account.fiscal.position.tax,position_id:0 +#: field:account.fiscal.position.tax.template,position_id:0 +#: view:account.fiscal.position.template:0 +#: field:account.invoice,fiscal_position:0 +#: model:ir.model,name:account.model_account_fiscal_position +#: field:res.partner,property_account_position:0 +msgid "Fiscal Position" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,page_split:0 +msgid "One Partner Per Page" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax +msgid "Fiscal Position Taxes Mapping" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#, python-format +msgid "You must select accounts to reconcile" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: model:process.transition,name:account.process_transition_customerinvoice0 +#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 +msgid "Customer Invoice" +msgstr "" + +#. module: account +#: field:account.sequence.fiscalyear,sequence_main_id:0 +msgid "Main Sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree +#: model:ir.ui.menu,name:account.account_analytic_journal_print +msgid "Print Analytic Journals" +msgstr "" + +#. module: account +#: help:account.payment.term.line,sequence:0 +msgid "" +"The sequence field is used to order the payment term lines from the lowest " +"sequences to the higher ones" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code for Taxes included prices" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not validate a non-balanced entry !" +msgstr "" + +#. module: account +#: field:account.fiscal.position.template,chart_template_id:0 +#: field:account.tax.template,chart_template_id:0 +#: field:wizard.multi.charts.accounts,chart_template_id:0 +msgid "Chart Template" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_categ:0 +msgid "Income Category Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template +msgid "Fiscal Position Templates" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.action_move_journal_line_form_select +msgid "Standard entry" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" + +#. module: account +#: model:account.journal,name:account.sales_journal +msgid "Journal de vente" +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +#: field:account.fiscal.position.template,name:0 +msgid "Fiscal Position Template" +msgstr "" + +#. module: account +#: wizard_button:account.analytic.account.chart,init,open:0 +#: wizard_button:account.chart,init,open:0 +msgid "Open Charts" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close.state,init:0 +msgid "Are you sure you want to close the fiscal year ?" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_template_ids:0 +msgid "Tax Template List" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoiceimport0 +msgid "Invoice import" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Tel. :" +msgstr "" + +#. module: account +#: help:account.account,currency_mode:0 +msgid "" +"This will select how the current currency rate for outgoing transactions is " +"computed. In most countries the legal method is \"average\" but only a few " +"software systems are able to manage this. So if you import from another " +"software system you may have to use the rate at date. Incoming transactions " +"always use the rate at date." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account_template +msgid "Fiscal Position Template Account Mapping" +msgstr "" + +#. module: account +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.reconcile,init_partial,addendum:0 +msgid "Reconcile With Write-Off" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "" +"The expected balance (%.2f) is different than the computed one. (%.2f)" +msgstr "" + +#. module: account +#: help:wizard.multi.charts.accounts,code_digits:0 +msgid "No. of Digits to use for account code" +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +msgid "Fixed Amount" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Analytic Credit" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,tax_ids:0 +#: field:account.fiscal.position.template,tax_ids:0 +msgid "Tax Mapping" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Continue" +msgstr "" + +#. module: account +#: field:account.journal,centralisation:0 +msgid "Centralised counterpart" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaymentorder0 +msgid "Select invoices you want to pay and manages advances" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,display_account:0 +#: selection:account.general.ledger.report,checktype,display_account:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "All" +msgstr "" + +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "" +"The amount expressed in an optionnal other currency if it is a multi-" +"currency entry." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "" +"You can not do this modification on a confirmed entry ! Please note that you " +"can just change some non important fields !" +msgstr "" + +#. module: account +#: wizard_view:account.move.line.unreconcile,init:0 +#: wizard_view:account.reconcile.unreconcile,init:0 +msgid "" +"If you unreconciliate transactions, you must also verify all the actions " +"that are linked to those transactions because they will not be disable" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_electronicfile0 +msgid "Electronic File" +msgstr "" + +#. module: account +#: field:ir.sequence,fiscal_ids:0 +msgid "Sequences" +msgstr "" + +#. module: account +#: wizard_button:account.subscription.generate,init,generate:0 +msgid "Compute Entry Dates" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot create invoice move on centralised journal" +msgstr "" + +#. module: account +#: field:account.account,child_id:0 +#: field:account.analytic.account,child_ids:0 +msgid "Child Accounts" +msgstr "" + +#. module: account +#: field:account.account,check_history:0 +msgid "Display History" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,date1:0 +msgid " Start date" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,display_account:0 +#: wizard_field:account.general.ledger.report,checktype,display_account:0 +msgid "Display accounts " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement_reconcile_line +msgid "Statement reconcile line" +msgstr "" + +#. module: account +#: help:account.invoice,partner_bank:0 +msgid "" +"The partner bank account to pay\n" +"Keep empty to use the default" +msgstr "" + +#. module: account +#: wizard_button:account.fiscalyear.close.state,init,close:0 +msgid "Close states" +msgstr "" + +#. module: account +#: wizard_view:account_use_models,create:0 +msgid "Use Model" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Crédit" +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_amount:0 +msgid "Tax Code Amount" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_chart_template_form +#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form +msgid "Chart of Accounts Templates" +msgstr "" + +#. module: account +#: field:account.invoice,move_id:0 +msgid "Invoice Movement" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_wizard_multi_chart +#: model:ir.ui.menu,name:account.menu_wizard +#: view:wizard.multi.charts.accounts:0 +msgid "Generate Chart of Accounts from a Chart Template" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "The statement balance is incorrect !\n" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_legal_statement +msgid "Legal Statements" +msgstr "" + +#. module: account +#: model:account.journal,name:account.bilan_journal +msgid "Journal d'ouverture" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Purchase Journal" +msgstr "" + +#. module: account +#: selection:account.tax,tax_group:0 +#: selection:account.tax.template,tax_group:0 +msgid "VAT" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Account n°" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Free Reference" +msgstr "" + +#. module: account +#: selection:account.partner.balance.report,init,result_selection:0 +#: selection:account.third_party_ledger.report,init,result_selection:0 +msgid "Receivable and Payable Accounts" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: field:account.subscription,lines_id:0 +msgid "Subscription Lines" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "Third party" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "No Partner Defined !" +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Max Qty:" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_period_tree +#: model:ir.actions.wizard,name:account.wizard_period_close +#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree +msgid "Close a Period" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "Error ! You can not create recursive accounts." +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Skip" +msgstr "" + +#. module: account +#: field:account.invoice,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: account +#: help:account.account.type,sequence:0 +msgid "Gives the sequence order when displaying a list of account types." +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close,init:0 +msgid "Are you sure you want to create entries?" +msgstr "" + +#. module: account +#: field:account.tax,include_base_amount:0 +msgid "Include in base amount" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Delta Credit" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile_unreconcile +#: model:ir.actions.wizard,name:account.wizard_unreconcile +msgid "Unreconcile Entries" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierdraftinvoices0 +msgid "Pre-generated invoice from control" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Valid Entries" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "Cost Legder for period" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 +#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 +msgid "New Statement" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_reconciliation0 +#: model:process.node,note:account.process_node_supplierreconciliation0 +msgid "Reconciliation of entries from invoice(s) and payment(s)" +msgstr "" + +#. module: account +#: wizard_view:account.central.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_central_journal +#: model:ir.ui.menu,name:account.menu_central_journal +msgid "Print Central Journal" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_charts +msgid "Charts" +msgstr "" + +#. module: account +#: wizard_button:account.account.balance.report,account_selection,checktype:0 +#: wizard_button:account.general.ledger.report,account_selection,checktype:0 +msgid "Next" +msgstr "" + +#. module: account +#: help:res.partner,property_account_position:0 +msgid "" +"The fiscal position will determine taxes and the accounts used for the the " +"partner." +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "Date or Code" +msgstr "" + +#. module: account +#: field:account.analytic.account,user_id:0 +msgid "Account Manager" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entries are not of the same account or already reconciled ! " +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,debit:0 +#: wizard_field:account.move.line.reconcile,init_partial,debit:0 +msgid "Debit amount" +msgstr "" + +#. module: account +#: model:account.journal,name:account.refund_expenses_journal +msgid "x Expenses Credit Notes Journal" +msgstr "" + +#. module: account +#: field:account.tax,account_collected_id:0 +#: field:account.tax.template,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: account +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree5 +#: model:ir.ui.menu,name:account.menu_invoice_draft +msgid "Draft Customer Invoices" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription_line +msgid "Account Subscription Line" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "No Filter" +msgstr "" + +#. module: account +#: help:account.invoice,reference:0 +msgid "The partner reference of this invoice." +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot delete invoice(s) that are already opened or paid !" +msgstr "" + +#. module: account +#: field:account.move,to_check:0 +msgid "To Be Verified" +msgstr "" + +#. module: account +#: help:res.partner,debit:0 +msgid "Total amount you have to pay to this supplier." +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "7" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Invalid action !" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Li." +msgstr "" + +#. module: account +#: help:account.tax,name:0 +msgid "This name will be displayed on reports" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Printing date" +msgstr "" + +#. module: account +#: wizard_field:account.partner.balance.report,init,date1:0 +msgid " Start date" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree3 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 +msgid "Customer Refunds" +msgstr "" + +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "No sequence defined in the journal !" +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "J.C./Move name" +msgstr "" + +#. module: account +#: field:account.tax.code,name:0 +#: field:account.tax.code.template,name:0 +msgid "Tax Case Name" +msgstr "" + +#. module: account +#: help:account.journal,entry_posted:0 +msgid "" +"Check this box if you don't want new account moves to pass through the " +"'draft' state and instead goes directly to the 'posted state' without any " +"manual validation." +msgstr "" + +#. module: account +#: help:account.invoice,number:0 +msgid "" +"Unique number of the invoice, computed automatically when the invoice is " +"created." +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Draft Invoice" +msgstr "" + +#. module: account +#: field:account.journal,invoice_sequence_id:0 +msgid "Invoice Sequence" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optionnal other currency." +msgstr "" + +#. module: account +#: model:process.process,name:account.process_process_invoiceprocess0 +msgid "Customer Invoice Process" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,period_id:0 +msgid "Opening Entries Period" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_validate_account_moves +#: model:ir.actions.wizard,name:account.wizard_validate_account_moves_line +#: model:ir.ui.menu,name:account.menu_validate_account_moves +msgid "Validate Account Moves" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "days" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,init,direction_selection:0 +msgid "Past" +msgstr "" + +#. module: account +#: field:account.analytic.account,company_currency_id:0 +#: field:account.bank.accounts.wizard,currency_id:0 +#: field:account.bank.statement,currency:0 +#: field:account.bank.statement.reconcile,total_currency:0 +#: field:account.bank.statement.reconcile,total_second_currency:0 +#: rml:account.general.ledger:0 +#: field:account.invoice,currency_id:0 +#: field:account.journal,currency:0 +#: field:account.model.line,currency_id:0 +#: field:account.move.line,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened +msgid "Unpaid invoices" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_paymentreconcile0 +msgid "Payment Reconcile" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_reconciliation_form +#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_tree +msgid "Statements reconciliation" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_new +#: model:ir.ui.menu,name:account.menu_action_subscription_form_new +msgid "New Subscription" +msgstr "" + +#. module: account +#: view:account.payment.term:0 +msgid "Computation" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Entry" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingentries0 +#: model:process.node,note:account.process_node_supplieraccountingentries0 +msgid "Validated accounting entries." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_tree +#: model:ir.ui.menu,name:account.menu_action_tax_code_tree +msgid "Chart of Taxes" +msgstr "" + +#. module: account +#: field:account.payment.term.line,value_amount:0 +msgid "Value Amount" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open +msgid "Reconciled entries" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree8 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree8 +msgid "Draft Supplier Invoices" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "Unable to find a valid period !" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.refund,init,period:0 +msgid "Force period" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Configration Error !" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "" +"Exception made of a mistake of our side, it seems that the following bills " +"stay unpaid. Please, take appropriate measures in order to carry out this " +"payment in the next 8 days." +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "VAT :" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Débit" +msgstr "" + +#. module: account +#: model:account.journal,name:account.check_journal +msgid "x Checks Journal" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Your journal must have a default credit and debit account." +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_generate_subscription +#: model:ir.ui.menu,name:account.menu_generate_subscription +msgid "Create subscription entries" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,journal_id:0 +msgid "Opening Entries Journal" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Create a Fiscal Year" +msgstr "" + +#. module: account +#: field:product.template,taxes_id:0 +msgid "Customer Taxes" +msgstr "" + +#. module: account +#: help:account.account.balance.report,checktype,periods:0 +#: help:account.general.ledger.report,checktype,periods:0 +#: help:account.partner.balance.report,init,periods:0 +#: help:account.third_party_ledger.report,init,periods:0 +#: help:account.vat.declaration,init,periods:0 +msgid "All periods if empty" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_liability +msgid "Liability" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "2" +msgstr "" + +#. module: account +#: wizard_view:account.chart,init:0 +msgid "(If you do not select Fiscal year it will take all open fiscal years)" +msgstr "" + +#. module: account +#: help:account.invoice.tax,base_code_id:0 +msgid "The account basis of the tax declaration." +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"No period defined for this date !\n" +"Please create a fiscal year." +msgstr "" + +#. module: account +#: field:account.invoice,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.unreconcile,init,unrec:0 +#: wizard_button:account.reconcile.unreconcile,init,unrec:0 +msgid "Unreconcile" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_statemententries0 +msgid "Statement Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The journal must have default credit and debit account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_template_form +#: model:ir.ui.menu,name:account.menu_action_account_template_form +msgid "Account Templates" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Chart of Accounts Template" +msgstr "" + +#. module: account +#: model:account.journal,name:account.refund_sales_journal +msgid "Journal d'extourne" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "Voucher No" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Import Invoice" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Some entries are already reconciled !" +msgstr "" + +#. module: account +#: field:account.journal,refund_journal:0 +msgid "Refund Journal" +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,acc_no:0 +msgid "Account No." +msgstr "" + +#. module: account +#: help:account.tax,child_depend:0 +msgid "" +"Set if the tax computation is based on the computation of child taxes rather " +"than on the total amount." +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation date." +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Journal Code" +msgstr "" + +#. module: account +#: help:account.tax,applicable_type:0 +msgid "" +"If not applicable (computed through a Python code), the tax won't appear on " +"the invoice." +msgstr "" + +#. module: account +#: field:account.model,lines_id:0 +msgid "Model Entries" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/invoice.py:0 +#, python-format +msgid "No Analytic Journal !" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.action_account_analytic_line +#: model:ir.actions.wizard,name:account.action_move_journal_line_form +#: model:ir.ui.menu,name:account.account_entries_analytic_entries +#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form +msgid "Entries Encoding by Line" +msgstr "" + +#. module: account +#: help:account.chart.template,tax_template_ids:0 +msgid "List of all the taxes that have to be installed by the wizard" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement +#: model:process.node,name:account.process_node_bankstatement0 +#: model:process.node,name:account.process_node_supplierbankstatement0 +msgid "Bank Statement" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.pay,addendum:0 +#: wizard_view:account.move.line.reconcile,addendum:0 +msgid "Information addendum" +msgstr "" + +#. module: account +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_entriesreconcile0 +#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 +msgid "Entries Reconcile" +msgstr "" + +#. module: account +#: help:account.bank.statement.reconcile,total_second_amount:0 +msgid "The amount in the currency of the journal" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,landscape:0 +msgid "Landscape Mode" +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 "" + +#. module: account +#: help:account.tax,base_code_id:0 +#: help:account.tax,ref_base_code_id:0 +#: help:account.tax,ref_tax_code_id:0 +#: help:account.tax,tax_code_id:0 +#: help:account.tax.template,base_code_id:0 +#: help:account.tax.template,ref_base_code_id:0 +#: help:account.tax.template,ref_tax_code_id:0 +#: help:account.tax.template,tax_code_id:0 +msgid "Use this code for the VAT declaration." +msgstr "" + +#. module: account +#: field:account.move.line,blocked:0 +msgid "Litigation" +msgstr "" + +#. module: account +#: help:account.journal,currency:0 +msgid "The currency used to enter statement" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_tax_report +msgid "Taxes Reports" +msgstr "" + +#. module: account +#: wizard_view:populate_statement_from_inv,init:0 +msgid "Import Invoices in Statement" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_supplierpaymentorder0 +msgid "Payment Order" +msgstr "" + +#. module: account +#: help:account.account.template,reconcile:0 +msgid "" +"Check this option if you want the user to reconcile entries in this account." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Already Reconciled" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_invoiceinvoice0 +msgid "Create Invoice" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_code_template +msgid "Tax Code Template" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "In dispute" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Unable to change tax !" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_generic_report +msgid "Generic Reports" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,power:0 +msgid "Power" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.line,init:0 +msgid "Account Analytic Lines Analysis" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.line,init:0 +msgid "View Account Analytic Lines" +msgstr "" + +#. module: account +#: field:account.period,date_stop:0 +msgid "End of Period" +msgstr "" + +#. module: account +#: wizard_button:populate_statement_from_inv,go,finish:0 +msgid "O_k" +msgstr "" + +#. module: account +#: field:account.invoice,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance +#: model:ir.actions.wizard,name:account.account_analytic_account_inverted_balance_report +msgid "Inverted Analytic Balance" +msgstr "" + +#. module: account +#: field:account.tax,applicable_type:0 +#: field:account.tax.template,applicable_type:0 +msgid "Applicable Type" +msgstr "" + +#. module: account +#: field:account.invoice,reference:0 +msgid "Invoice Reference" +msgstr "" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,direction_selection:0 +msgid "Analysis Direction" +msgstr "" + +#. module: account +#: wizard_button:populate_statement_from_inv,init,go:0 +msgid "_Go" +msgstr "" + +#. module: account +#: field:res.partner,ref_companies:0 +msgid "Companies that refers to partner" +msgstr "" + +#. module: account +#: help:account.tax.template,sequence:0 +msgid "" +"The sequence field is used to order the taxes lines from lower sequences to " +"higher ones. The order is important if you have a tax that has several tax " +"children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: field:account.journal.column,view_id:0 +#: view:account.journal.view:0 +#: field:account.journal.view,name:0 +#: model:ir.model,name:account.model_account_journal_view +msgid "Journal View" +msgstr "" + +#. module: account +#: wizard_view:account.automatic.reconcile,init:0 +#: wizard_view:account.invoice.pay,addendum:0 +#: wizard_view:account.move.line.reconcile,addendum:0 +msgid "Write-Off Move" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_hr_timesheet_invoice_journal +msgid "Analytic account costs and revenues" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.refund,init:0 +msgid "Are you sure you want to refund this invoice ?" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "The account entries lines are not in valid state." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_statemententries0 +msgid "From statement, create entries" +msgstr "" + +#. module: account +#: field:account.analytic.account,complete_name:0 +msgid "Full Account Name" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: rml:account.partner.balance:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +msgid "1cm 27.7cm 20cm 27.7cm" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_accountingstatemententries0 +msgid "Accounting Statement" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Document: Customer account statement" +msgstr "" + +#. module: account +#: view:product.product:0 +#: view:product.template:0 +#: view:res.partner:0 +msgid "Accounting" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Unable to reconcile entry \"%s\": %.2f" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Please set an analytic journal on this financial journal !" +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +msgid "Taxes Mapping" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderbank0 +#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 +msgid "Reconcilation of entries from payment order." +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Analytic Journal -" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "EXJ" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Analytic Debit" +msgstr "" + +#. module: account +#: field:account.account,currency_mode:0 +msgid "Outgoing Currencies Rate" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree10 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree10 +msgid "Draft Customer Refunds" +msgstr "" + +#. module: account +#: help:account.model.line,date_maturity:0 +msgid "" +"The maturity date of the generated entries for this model. You can chosse " +"between the date of the creation action or the the date of the creation of " +"the entries plus the partner payment terms." +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date to must be set between %s and %s" +msgstr "" + +#. module: account +#: help:account.move.line,move_id:0 +msgid "The move of this entry line." +msgstr "" + +#. module: account +#: field:account.invoice.line,uos_id:0 +msgid "Unit of Measure" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Move name" +msgstr "" + +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "" +"If this box is checked, the system will try to group the accounting lines " +"when generating them from invoices." +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "Entry Label" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentreconcile0 +msgid "Reconcilate the entries from payment" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not modify/delete a journal with entries for this period !" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.period:0 +#: view:account.subscription:0 +msgid "Set to Draft" +msgstr "" + +#. module: account +#: help:account.invoice,origin:0 +#: help:account.invoice.line,origin:0 +msgid "Reference of the document that produced this invoice." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +msgid "Others" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "8" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftinvoices0 +msgid "Proposed invoice to be checked, validated and printed" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_move_line_select +msgid "account.move.line.select" +msgstr "" + +#. module: account +#: model:account.journal,name:account.bank_journal +msgid "Journal de Banque CHF" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Date and Period" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_state_open.py:0 +#, python-format +msgid "Invoice is already reconciled" +msgstr "" + +#. module: account +#: help:account.invoice,reconciled:0 +msgid "" +"The account moves of the invoice have been reconciled with account moves of " +"the payment(s)." +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close,init:0 +msgid "Close Fiscal Year with new entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "BNK" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "Average Rate" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_bankstatement0 +#: model:process.node,note:account.process_node_supplierbankstatement0 +msgid "Statement encoding produces payment entries" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance +msgid "Financial Management" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:0 +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entries: " +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close +#: model:ir.ui.menu,name:account.menu_wizard_fy_close +msgid "Generate Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "The account is not defined to be reconcile !" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile +msgid "Reconcile Entries" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close.state,init:0 +msgid " Close states of Fiscal year and periods" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term +msgid "30 Days End of Month" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Couldn't create move between different companies" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_code_root_id:0 +msgid "Root Tax Code" +msgstr "" + +#. module: account +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." +msgstr "" + +#. module: account +#: field:account.tax.code,notprintable:0 +#: field:account.tax.code.template,notprintable:0 +msgid "Not Printable in Invoice" +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_src_id:0 +#: field:account.fiscal.position.tax.template,tax_src_id:0 +msgid "Tax Source" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not change the tax, you should remove and recreate lines !" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_bank_reconcile.py:0 +#, python-format +msgid "" +"You have to define the bank account\n" +"in the journal definition for reconciliation." +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Bank Information" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entry \"%s\" is not valid !" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Fax :" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance +#: model:ir.actions.wizard,name:account.wizard_partner_balance_report +#: model:ir.ui.menu,name:account.menu_partner_balance +msgid "Partner Balance" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "Third Party Ledger" +msgstr "" + +#. module: account +#: help:res.partner,property_account_receivable:0 +msgid "" +"This account will be used instead of the default one as the receivable " +"account for the current partner" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement +msgid "Bank statements" +msgstr "" + +#. module: account +#: help:account.tax.template,tax_group:0 +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 +#: view:account.bank.statement:0 +msgid "Real Entries" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_importinvoice0 +msgid "Import invoice" +msgstr "" + +#. module: account +#: model:process.transition.action,name:account.process_transition_action_createentries0 +msgid "Create entry" +msgstr "" + +#. module: account +#: help:account.account,currency_id:0 +#: help:account.account.template,currency_id:0 +msgid "Force all moves for this account to have this secondary currency." +msgstr "" + +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "" +"All draft account entries in this journal and period will be validated. It " +"means you won't be able to modify their accouting fields." +msgstr "" + +#. module: account +#: selection:account.model.line,date:0 +#: selection:account.model.line,date_maturity:0 +msgid "Date of the day" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "Filter on Periods" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/account_analytic_line.py:0 +#: code:addons/account/account_bank_statement.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Error !" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "Balance brought forward" +msgstr "" + +#. module: account +#: field:account.account,child_consol_ids:0 +msgid "Consolidated Children" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Balance :" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,display_account:0 +#: selection:account.general.ledger.report,checktype,display_account:0 +msgid "With balance is not equal to 0" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "3" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_vat_declaration +msgid "Taxes Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree4_new +#: model:ir.ui.menu,name:account.menu_action_invoice_tree4_new +msgid "New Supplier Refund" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 +msgid "With Currency" +msgstr "" + +#. module: account +#: field:account.subscription.line,subscription_id:0 +msgid "Subscription" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "SAJ" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Compute Taxes" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,code_digits:0 +msgid "# of Digits" +msgstr "" + +#. module: account +#: help:res.partner,property_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for the current " +"partner" +msgstr "" + +#. module: account +#: help:account.invoice,account_id:0 +msgid "The partner account used for this invoice." +msgstr "" + +#. module: account +#: help:account.tax.code,notprintable:0 +#: help:account.tax.code.template,notprintable:0 +msgid "" +"Check this box if you don't want any VAT related to this Tax Code to appear " +"on invoices" +msgstr "" + +#. module: account +#: field:account.account.type,sequence:0 +#: field:account.invoice.tax,sequence:0 +#: field:account.journal.column,sequence:0 +#: field:account.model.line,sequence:0 +#: field:account.payment.term.line,sequence:0 +#: field:account.sequence.fiscalyear,sequence_id:0 +#: field:account.tax,sequence:0 +#: field:account.tax.template,sequence:0 +#: field:fiscalyear.seq,sequence_id:0 +msgid "Sequence" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_template +msgid "Template for Fiscal Position" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Entry encoding" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.refund,init:0 +#: model:ir.actions.wizard,name:account.wizard_invoice_refund +msgid "Credit Note" +msgstr "" + +#. module: account +#: model:ir.actions.todo,note:account.config_fiscalyear +msgid "Define Fiscal Years and Select Charts of Account" +msgstr "" + +#. module: account +#: selection:account.config.wizard,period:0 +msgid "3 Months" +msgstr "" + +#. module: account +#: wizard_view:account.move.journal,init:0 +msgid "Standard entries" +msgstr "" + +#. module: account +#: help:account.account,check_history:0 +msgid "" +"Check this box if you want to print all entries when printing the General " +"Ledger, otherwise it will only print its balance." +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Global taxes defined, but are not in invoice lines !" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription +msgid "Account Subscription" +msgstr "" + +#. module: account +#: field:account.model.line,date_maturity:0 +#: field:account.move.line,date_maturity:0 +#: rml:account.overdue:0 +msgid "Maturity date" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Entry Subscription" +msgstr "" + +#. module: account +#: selection:account.print.journal.report,init,sort_selection:0 +msgid "By date" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_config_wizard_form +msgid "Account Configure Wizard " +msgstr "" + +#. module: account +#: field:account.config.wizard,date1:0 +#: field:account.fiscalyear,date_start:0 +#: field:account.subscription,date_start:0 +msgid "Start Date" +msgstr "" + +#. module: account +#: wizard_view:account.general.ledger.report,account_selection:0 +msgid "Select Chart" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_draftinvoices0 +#: model:process.node,name:account.process_node_supplierdraftinvoices0 +msgid "Draft Invoices" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax_template +msgid "Fiscal Position Template Tax Mapping" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Invoice Date" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The old fiscal year does not have any entry to reconcile!" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The journal must have centralised counterpart" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Bad total !" +msgstr "" + +#. module: account +#: model:ir.module.module,description:account.module_meta_information +msgid "" +"Financial and accounting module that covers:\n" +" General accounting\n" +" Cost / Analytic accounting\n" +" Third party accounting\n" +" Taxes management\n" +" Budgets\n" +" Customer and Supplier Invoices\n" +" Bank statements\n" +" " +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paymententries0 +msgid "Payment Entries" +msgstr "" + +#. module: account +#: help:account.automatic.reconcile,init,account_ids:0 +msgid "" +"If no account is specified, the reconciliation will be made using every " +"accounts that can be reconcilied" +msgstr "" + +#. module: account +#: selection:account.general.ledger.report,checktype,sortbydate:0 +msgid "Movement" +msgstr "" + +#. module: account +#: help:account.period,special:0 +msgid "These periods can overlap." +msgstr "" + +#. module: account +#: help:product.template,property_account_expense:0 +msgid "" +"This account will be used instead of the default one to value outgoing stock " +"for the current product" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_manually0 +msgid "Encode manually the statement" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_journal_form +#: model:ir.ui.menu,name:account.menu_action_account_journal_form +msgid "Financial Journals" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Period" +msgstr "" + +#. module: account +#: field:account.analytic.account,quantity_max:0 +msgid "Maximum Quantity" +msgstr "" + +#. module: account +#: help:account.analytic.journal,type:0 +msgid "" +"Gives the type of the analytic journal. When a document (eg: an invoice) " +"needs to create analytic entries, Open ERP will look for a matching journal " +"of the same type." +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Code/Date" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_electronicfile0 +msgid "Import from your bank statements" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Properties" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Customer Accounting Properties" +msgstr "" + +#. module: account +#: selection:account.chart,init,target_move:0 +msgid "All Posted Entries" +msgstr "" + +#. module: account +#: wizard_field:account.vat.declaration,init,based_on:0 +msgid "Base on" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Cash Payment" +msgstr "" + +#. module: account +#: help:account.tax.template,child_depend:0 +msgid "" +"Indicate if the tax computation is based on the value computed for the " +"computation of child taxes or based on the total amount." +msgstr "" + +#. module: account +#: field:account.tax.code,child_ids:0 +#: field:account.tax.code.template,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account +#: field:account.invoice,move_name:0 +msgid "Account Move" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,line_ids:0 +msgid "Statement lines" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,reconcil:0 +msgid " Include Reconciled Entries" +msgstr "" + +#. module: account +#: help:account.move.line,blocked:0 +msgid "" +"You can check this box to mark the entry line as a litigation with the " +"associated partner" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,state:0 +#: wizard_field:account.general.ledger.report,checktype,state:0 +#: wizard_field:account.partner.balance.report,init,state:0 +#: wizard_field:account.third_party_ledger.report,init,state:0 +msgid "Date/Period Filter" +msgstr "" + +#. module: account +#: field:account.move,name:0 +msgid "Number" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.statement.line,type:0 +#: selection:account.journal,type:0 +msgid "General" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Credit Trans." +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,seq_journal:0 +msgid "Separated Journal Sequences" +msgstr "" + +#. module: account +#: help:account.bank.statement.reconcile,total_second_currency:0 +msgid "The currency of the journal" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_29 +msgid "Search Entries" +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 "" + +#. module: account +#: field:account.account,tax_ids:0 +#: field:account.account.template,tax_ids:0 +msgid "Default Taxes" +msgstr "" + +#. module: account +#: help:account.account.type,sign:0 +msgid "" +"Allows you to change the sign of the balance amount displayed in the " +"reports, so that you can see positive figures instead of negative ones in " +"expenses accounts." +msgstr "" + +#. module: account +#: help:account.config.wizard,code:0 +msgid "Name of the fiscal year as displayed in reports." +msgstr "" + +#. module: account +#: help:account.move.line,date_maturity:0 +msgid "" +"This field is used for payable and receivable entries. You can put the limit " +"date for the payment of this entry line." +msgstr "" + +#. module: account +#: field:account.account,parent_left:0 +msgid "Parent Left" +msgstr "" + +#. module: account +#: help:account.journal,sequence_id:0 +msgid "The sequence gives the display order for a list of journals" +msgstr "" + +#. module: account +#: field:account.journal,type_control_ids:0 +msgid "Type Controls" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Partner name" +msgstr "" + +#. module: account +#: field:res.partner,credit:0 +msgid "Total Receivable" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,init,journal_id:0 +msgid "Journal/Payment Mode" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,soldeinit:0 +#: wizard_field:account.partner.balance.report,init,soldeinit:0 +#: wizard_field:account.third_party_ledger.report,init,soldeinit:0 +msgid "Include initial balances" +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Account Template" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_filestatement0 +msgid "Import file from your bank statement" +msgstr "" + +#. module: account +#: field:account.account,type:0 +#: field:account.account.template,type:0 +msgid "Internal Type" +msgstr "" + +#. module: account +#: field:account.account,balance:0 +msgid "Closing Balance" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "9" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_running +#: model:ir.ui.menu,name:account.menu_action_subscription_form_running +msgid "Running Subscriptions" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Bank Payment" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Credit Notes" +msgstr "" + +#. module: account +#: field:account.config.wizard,date2:0 +#: field:account.fiscalyear,date_stop:0 +msgid "End Date" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_open_closed_fiscalyear +#: model:ir.ui.menu,name:account.menu_wizard_open_closed_fy +msgid "Cancel Opening Entries" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoicemanually0 +msgid "Manually statement" +msgstr "" + +#. module: account +#: field:account.payment.term.line,days2:0 +msgid "Day of the Month" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_end_year_treatments +msgid "End of Year Treatments" +msgstr "" + +#. module: account +#: help:account.tax,sequence:0 +msgid "" +"The sequence field is used to order the tax lines from the lowest sequences " +"to the higher ones. The order is important if you have a tax with several " +"tax children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_filestatement0 +msgid "File statement" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequences" +msgstr "" + +#. module: account +#: view:account.model.line:0 +msgid "Entry Model Line" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Account Tax Template" +msgstr "" + +#. module: account +#: help:account.model,name:0 +msgid "This is a model for recurring accounting entries" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftstatement0 +msgid "Set starting and ending balance for control" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Supplier Debit" +msgstr "" + +#. module: account +#: help:account.model.line,quantity:0 +msgid "The optional quantity on entries" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "JNRL" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "General Ledger -" msgstr "" #. module: account @@ -4694,9 +5141,9 @@ msgid "Number of entries are generated" msgstr "" #. module: account -#: model:process.transition,name:account.process_transition_suppliervalidentries0 -#: model:process.transition,name:account.process_transition_validentries0 -msgid "Valid Entries" +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Can not pay draft/proforma/cancel invoice." msgstr "" #. module: account @@ -4712,8 +5159,11 @@ msgid "Allow Reconciliation" msgstr "" #. module: account -#: rml:account.analytic.account.journal:0 -msgid "Move name" +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Date" msgstr "" #. module: account @@ -4749,13 +5199,6 @@ msgid "" "taxes and journals according to the selected template" msgstr "" -#. module: account -#: view:account.bank.statement:0 -#: field:account.bank.statement.line,statement_id:0 -#: field:account.move.line,statement_id:0 -msgid "Statement" -msgstr "Pernyataan" - #. module: account #: model:ir.actions.act_window,name:account.action_move_line_form_encode_by_move #: model:ir.ui.menu,name:account.menu_encode_entries_by_move @@ -4768,6 +5211,11 @@ msgstr "" msgid "You can not deactivate an account that contains account moves." msgstr "" +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Analytic Account Charts" +msgstr "" + #. module: account #: wizard_field:account.aged.trial.balance,init,result_selection:0 msgid "Filter on Partners" @@ -4779,29 +5227,10 @@ msgid "Tax Included in Price" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree2 -#: model:ir.ui.menu,name:account.account_analytic_journal_entries -msgid "Analytic Entries by Journal" -msgstr "Transaksi analisis berdasarkan jenis jurnal" - -#. module: account -#: field:account.account,company_id:0 -#: wizard_field:account.account.balance.report,checktype,company_id:0 -#: wizard_field:account.aged.trial.balance,init,company_id:0 -#: field:account.analytic.account,company_id:0 -#: field:account.fiscal.position,company_id:0 -#: field:account.fiscalyear,company_id:0 -#: wizard_field:account.general.ledger.report,checktype,company_id:0 -#: field:account.invoice,company_id:0 -#: field:account.journal,company_id:0 -#: wizard_field:account.partner.balance.report,init,company_id:0 -#: field:account.tax,company_id:0 -#: field:account.tax.code,company_id:0 -#: wizard_field:account.third_party_ledger.report,init,company_id:0 -#: wizard_field:account.vat.declaration,init,company_id:0 -#: field:wizard.multi.charts.accounts,company_id:0 -msgid "Company" -msgstr "Perusahaan" +#: model:process.transition,note:account.process_transition_suppliervalidentries0 +#: model:process.transition,note:account.process_transition_validentries0 +msgid "Valid entries from invoice" +msgstr "" #. module: account #: rml:account.general.ledger:0 @@ -4825,11 +5254,6 @@ msgstr "" msgid "Draft statement" msgstr "" -#. module: account -#: field:account.analytic.journal,name:0 -msgid "Journal name" -msgstr "Nama jurnal" - #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "Import invoice from statement" @@ -4840,8 +5264,14 @@ msgstr "" msgid "4" msgstr "" +#. module: account +#: help:res.partner,credit:0 +msgid "Total amount this customer owes you." +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_form +#: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear_form msgid "Fiscal Years" msgstr "" @@ -4852,36 +5282,21 @@ msgid "Import from invoices or payments" msgstr "" #. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile_select -#: model:ir.ui.menu,name:account.menu_reconcile_select -msgid "Reconcile entries" -msgstr "Daftar transaksi Reconsoliasi" - -#. module: account -#: xsl:account.transfer:0 -msgid "Change" -msgstr "Ganti" - -#. module: account -#: field:account.journal.period,icon:0 -msgid "Icon" -msgstr "Icon" - -#. module: account -#: model:ir.model,name:account.model_account_journal_period -msgid "Journal - Period" -msgstr "Periode Jurnal" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,credit:0 -#: wizard_field:account.move.line.reconcile,init_partial,credit:0 -msgid "Credit amount" -msgstr "Jumlah Kredit" - -#. module: account -#: view:account.fiscalyear:0 -msgid "Create Monthly Periods" -msgstr "Membuat Periode Bulanan" +#: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_journal.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "UserError" +msgstr "" #. module: account #: wizard_button:account.aged.trial.balance,init,print:0 @@ -4907,16 +5322,10 @@ msgstr "" #: field:account.bank.statement.line,ref:0 #: field:account.model.line,ref:0 #: field:account.move.line,ref:0 -#: field:account.subscription,ref:0 #: rml:account.third_party_ledger:0 msgid "Ref." msgstr "" -#. module: account -#: field:account.invoice,address_invoice_id:0 -msgid "Invoice Address" -msgstr "Alamat Invoice" - #. module: account #: rml:account.analytic.account.analytic.check:0 msgid "General Credit" @@ -4931,11 +5340,11 @@ msgid "" msgstr "" #. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Date" +#: help:account.journal,centralisation:0 +msgid "" +"Check this box to determine that each entry of this journal won't create a " +"new counterpart but will share the same counterpart. This is used in fiscal " +"year closing." msgstr "" #. module: account @@ -4959,60 +5368,32 @@ msgstr "" msgid "A/c No." msgstr "" -#. module: account -#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree_month -#: model:ir.ui.menu,name:account.report_account_analytic_journal_print_month -msgid "Account cost and revenue by journal (This Month)" -msgstr "Aku biaya dan pendapatan berdasarkan jurnal(bulan ini)" - #. module: account #: selection:account.partner.balance.report,init,result_selection:0 #: selection:account.third_party_ledger.report,init,result_selection:0 msgid "Receivable Accounts" msgstr "" -#. module: account -#: wizard_button:account.move.line.unreconcile.select,init,open:0 -msgid "Open for unreconciliation" -msgstr "Buka untuk pembatalan rekonsoliasi" - #. module: account #: field:account.bank.statement.reconcile,statement_line:0 #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account -#: field:account.config.wizard,date2:0 -msgid "Ending Date" -msgstr "Sampai Tanggal" - #. module: account #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Control Invoice" msgstr "" #. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -#: selection:account.aged.trial.balance,init,result_selection:0 -msgid "Receivable" -msgstr "Piutang" - -#. module: account -#: help:account.invoice.tax,base_code_id:0 -#: help:account.invoice.tax,tax_code_id:0 -msgid "The case of the tax declaration." +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date not in a defined fiscal year" msgstr "" -#. module: account -#: model:ir.actions.report.xml,name:account.account_account_balance -#: model:ir.actions.wizard,name:account.wizard_account_balance_report -#: model:ir.actions.wizard,name:account.wizard_balance_report -#: model:ir.ui.menu,name:account.menu_account_balance_report -msgid "Account Balance" -msgstr "Neraca Saldo" - #. module: account #: model:ir.actions.report.xml,name:account.account_analytic_account_analytic_check #: model:ir.actions.wizard,name:account.account_analytic_account_analytic_check_report @@ -5026,17 +5407,14 @@ msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_state_open.py:0 #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format msgid "Warning" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "VAT:" -msgstr "PPN :" - -#. module: account +#: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 #: rml:account.central.journal:0 #: rml:account.general.journal:0 @@ -5044,40 +5422,18 @@ msgstr "PPN :" msgid "Total:" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#, python-format -msgid "No journal for ending writings have been defined for the fiscal year" -msgstr "" - #. module: account #: model:ir.model,name:account.model_account_analytic_journal msgid "account.analytic.journal" msgstr "" #. module: account -#: view:product.product:0 -msgid "Sale Taxes" -msgstr "Pajak Penjualan" - -#. module: account -#: help:account.tax.template,include_base_amount:0 -msgid "" -"Indicate if the amount of tax must be included in the base amount for the " -"computation of the next taxes." +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,account_ids:0 +#: field:account.fiscal.position.template,account_ids:0 +msgid "Account Mapping" msgstr "" -#. module: account -#: model:ir.model,name:account.model_account_move_reconcile -msgid "Account Reconciliation" -msgstr "Akun Rekonsoliasi" - -#. module: account -#: view:account.bank.statement:0 -#: selection:account.bank.statement,state:0 -msgid "Confirm" -msgstr "Konfirmasi" - #. module: account #: wizard_view:account.account.balance.report,account_selection:0 msgid "Select parent account" @@ -5088,90 +5444,20 @@ msgstr "" msgid "Parent Account Template" msgstr "" -#. module: account -#: help:account.tax.template,domain:0 -msgid "" -"This field is only used if you develop your own module allowing developers " -"to create specific taxes in a custom domain." -msgstr "" -"Kolom ini hanya digunakan jika anda membuat perumusan tentang perhitungan " -"pajak sendiri" - -#. module: account -#: field:account.bank.statement.reconcile,total_amount:0 -#: field:account.bank.statement.reconcile,total_second_amount:0 -msgid "Payment amount" -msgstr "Total Pembayaran" - -#. module: account -#: help:account.model.line,quantity:0 -msgid "The optionnal quantity on entries" -msgstr "" - -#. module: account -#: view:account.analytic.account:0 -msgid "Analytic account" -msgstr "Akun Analisis" - -#. module: account -#: rml:account.invoice:0 -#: selection:account.invoice,type:0 -msgid "Supplier Invoice" -msgstr "Faktur Pembelian" - #. module: account #: code:addons/account/account_bank_statement.py:0 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" -#. module: account -#: selection:account.move.line,state:0 -msgid "Valid" -msgstr "Valid" - -#. module: account -#: field:account.account,debit:0 -#: rml:account.account.balance:0 -#: field:account.analytic.account,debit:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.central.journal:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: field:account.model.line,debit:0 -#: field:account.move.line,debit:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: field:report.hr.timesheet.invoice.journal,revenue:0 -msgid "Debit" -msgstr "Debit" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_42 -msgid "All Months" -msgstr "Semua Bulan" - -#. module: account -#: model:account.journal,name:account.bank_journal -msgid "x Bank Journal" -msgstr "" - #. module: account #: wizard_field:account.invoice.refund,init,date:0 msgid "Operation date" msgstr "" #. module: account -#: field:account.invoice,invoice_line:0 -msgid "Invoice Lines" -msgstr "Detail Invoice" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree13 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 -msgid "Unpaid Supplier Refunds" +#: field:account.period,date_start:0 +msgid "Start of Period" msgstr "" #. module: account @@ -5191,31 +5477,15 @@ msgid "Refund Tax Code" msgstr "" #. module: account -#: field:account.invoice.tax,name:0 -msgid "Tax Description" -msgstr "Keterangan Pajak" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "Code / Date" +#: help:account.invoice,move_id:0 +msgid "Link to the automatically generated account moves." msgstr "" #. module: account -#: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 -msgid "Reconciled transactions" -msgstr "Transaksi sudah direkonsoliasi" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_reporting -msgid "Reporting" -msgstr "Pelaporan" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: rml:account.third_party_ledger:0 -msgid "/" -msgstr "/" +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not use an inactive account!" +msgstr "" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -5239,19 +5509,10 @@ msgid "Group invoice lines" msgstr "" #. module: account -#: model:ir.ui.menu,name:account.menu_finance_configuration -msgid "Configuration" -msgstr "Pengaturan" - -#. module: account -#: field:account.config.wizard,date1:0 -msgid "Starting Date" -msgstr "Tanggal Awal" - -#. module: account -#: view:account.journal:0 -msgid "Account Journal" -msgstr "Akun Jurnal" +#: view:account.analytic.line:0 +#: view:account.invoice:0 +msgid "Total amount" +msgstr "" #. module: account #: view:account.subscription.line:0 @@ -5293,18 +5554,6 @@ msgstr "" msgid "Paid invoice" msgstr "" -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Tax Definition" -msgstr "Pendifinisian Pajak" - -#. module: account -#: field:account.tax,tax_group:0 -#: field:account.tax.template,tax_group:0 -msgid "Tax Group" -msgstr "Kelompok Pajak" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree3_new #: model:ir.ui.menu,name:account.menu_action_invoice_tree3_new @@ -5341,12 +5590,6 @@ msgstr "" msgid "With movements" msgstr "" -#. module: account -#: field:account.tax,domain:0 -#: field:account.tax.template,domain:0 -msgid "Domain" -msgstr "Filter" - #. module: account #: view:account.analytic.account:0 msgid "Account Data" @@ -5358,8 +5601,8 @@ msgid "Account Tax Code Template" msgstr "" #. module: account -#: model:process.node,note:account.process_node_manually0 -msgid "Encode manually the statement" +#: view:account.subscription:0 +msgid "Subscription Periods" msgstr "" #. module: account @@ -5392,18 +5635,6 @@ msgstr "" msgid "Invoice Line" msgstr "" -#. module: account -#: wizard_field:account.invoice.pay,addendum,writeoff_journal_id:0 -msgid "Write-Off journal" -msgstr "Junal Penghapusan" - -#. module: account -#: help:account.account,reconcile:0 -msgid "" -"Check this account if the user can make a reconciliation of the entries in " -"this account." -msgstr "" - #. module: account #: wizard_button:account.invoice.pay,init,writeoff_check:0 msgid "Full Payment" @@ -5430,11 +5661,6 @@ msgstr "" msgid "Encode manually statement comes into the draft statement" msgstr "" -#. module: account -#: model:ir.ui.menu,name:account.next_id_43 -msgid "This Month" -msgstr "Bulan Ini" - #. module: account #: field:account.account.type,sign:0 msgid "Sign on Reports" @@ -5467,8 +5693,10 @@ msgid "" msgstr "" #. module: account -#: model:ir.model,name:account.model_account_fiscal_position_account_template -msgid "Fiscal Position Template Accounts Mapping" +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "" +"Selected Move lines does not have any account move enties in draft state" msgstr "" #. module: account @@ -5482,9 +5710,9 @@ msgid "All account entries" msgstr "" #. module: account -#: selection:account.subscription,period_type:0 -msgid "year" -msgstr "tahun" +#: help:account.invoice.tax,tax_code_id:0 +msgid "The tax basis of the tax declaration." +msgstr "" #. module: account #: wizard_view:account.account.balance.report,checktype:0 @@ -5500,17 +5728,10 @@ msgid "Choose Journal and Payment Date" msgstr "" #. module: account -#: selection:account.analytic.account,state:0 -#: selection:account.bank.statement,state:0 -#: selection:account.fiscalyear,state:0 -#: selection:account.invoice,state:0 -#: selection:account.journal.period,state:0 -#: selection:account.move,state:0 -#: selection:account.move.line,state:0 -#: selection:account.period,state:0 -#: selection:account.subscription,state:0 -msgid "Draft" -msgstr "Draft" +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You must define an analytic journal of type '%s' !" +msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 @@ -5519,9 +5740,9 @@ msgid "Unpaid Customer Refunds" msgstr "" #. module: account -#: wizard_field:account.analytic.line,init,from_date:0 -msgid "From" -msgstr "Dari" +#: help:account.invoice,residual:0 +msgid "Remaining amount due." +msgstr "" #. module: account #: wizard_view:account.period.close,init:0 @@ -5544,11 +5765,6 @@ msgstr "" msgid "The bank statement used for bank reconciliation" msgstr "" -#. module: account -#: view:account.fiscalyear:0 -msgid "Fiscalyear" -msgstr "Tahun Pembukuan" - #. module: account #: code:addons/account/wizard/wizard_bank_reconcile.py:0 #, python-format @@ -5577,6 +5793,21 @@ msgstr "" msgid "Supplier Invoice Process" msgstr "" +#. module: account +#: rml:account.account.balance:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: rml:account.partner.balance:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +msgid "Page" +msgstr "" + #. module: account #: view:account.move:0 #: view:account.move.line:0 @@ -5597,7 +5828,6 @@ msgstr "" #. module: account #: rml:account.account.balance:0 #: rml:account.general.journal:0 -#: rml:account.overdue:0 msgid ":" msgstr "" @@ -5611,18 +5841,6 @@ msgstr "" msgid "At Date" msgstr "" -#. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "dan Jurnal-jurnal" - -#. module: account -#: help:account.account.template,reconcile:0 -msgid "" -"Check this option if the user can make a reconciliation of the entries in " -"this account." -msgstr "" - #. module: account #: view:account.bank.statement:0 #: view:account.bank.statement.reconcile:0 @@ -5635,6 +5853,11 @@ msgstr "" msgid "The income or expense account related to the selected product." msgstr "" +#. module: account +#: field:account.tax,type_tax_use:0 +msgid "Tax Application" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form #: model:ir.ui.menu,name:account.menu_action_subscription_form @@ -5647,12 +5870,6 @@ msgstr "" msgid "Closing of fiscal year cancelled, please check the box !" msgstr "" -#. module: account -#: view:account.analytic.line:0 -#: view:account.invoice:0 -msgid "Total amount" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree6 #: model:ir.ui.menu,name:account.menu_action_invoice_tree6 @@ -5660,8 +5877,8 @@ msgid "PRO-FORMA Customer Invoices" msgstr "" #. module: account -#: field:account.invoice,amount_untaxed:0 -msgid "Untaxed" +#: field:account.subscription,period_total:0 +msgid "Number of Periods" msgstr "" #. module: account @@ -5670,11 +5887,6 @@ msgstr "" msgid "Bad account !" msgstr "" -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "Total :" -msgstr "" - #. module: account #: code:addons/account/account.py:0 #: code:addons/account/account_move_line.py:0 @@ -5692,7 +5904,6 @@ msgstr "" #: wizard_field:account.analytic.account.journal.report,init,date2:0 #: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date2:0 #: wizard_field:account.automatic.reconcile,init,date2:0 -#: field:account.period,date_stop:0 msgid "End of period" msgstr "" @@ -5703,6 +5914,7 @@ msgid "Account Entry" msgstr "" #. module: account +#: rml:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" msgstr "" @@ -5731,11 +5943,6 @@ msgstr "" msgid "Taxes missing !" msgstr "" -#. module: account -#: help:account.invoice,partner_bank:0 -msgid "The bank account to pay to or to be paid from" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Refund" @@ -5774,8 +5981,15 @@ msgid "Bank Accounts" msgstr "" #. module: account -#: field:res.partner,credit:0 -msgid "Total Receivable" +#: constraint:account.period:0 +msgid "" +"Invalid period ! Some periods overlap or the date period is not in the scope " +"of the fiscal year. " +msgstr "" + +#. module: account +#: help:account.journal,invoice_sequence_id:0 +msgid "The sequence used for invoice numbers in this journal." msgstr "" #. module: account @@ -5796,8 +6010,8 @@ msgid "" msgstr "" #. module: account -#: model:ir.actions.report.xml,name:account.account_vat_declaration -msgid "Taxes Report" +#: constraint:account.fiscalyear:0 +msgid "Error ! The duration of the Fiscal Year is invalid. " msgstr "" #. module: account @@ -5833,17 +6047,6 @@ msgstr "" msgid "Closing of states cancelled, please check the box !" msgstr "" -#. module: account -#: help:account.config.wizard,name:0 -msgid "Name of the fiscal year as displayed on screens." -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger -#: model:ir.actions.wizard,name:account.account_analytic_account_quantity_cost_ledger_report -msgid "Cost Ledger (Only quantities)" -msgstr "Buku Biaya(Hanya kwantitas)" - #. module: account #: code:addons/account/account_move_line.py:0 #, python-format @@ -5866,6 +6069,7 @@ msgid "Total amount due:" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,to_date:0 #: wizard_field:account.analytic.line,init,to_date:0 msgid "To" msgstr "" @@ -5880,11 +6084,6 @@ msgstr "" msgid "Manual Invoice Taxes" msgstr "" -#. module: account -#: field:account.model.line,date:0 -msgid "Current Date" -msgstr "Tanggal Sekarang" - #. module: account #: selection:account.move,type:0 msgid "Journal Sale" @@ -5896,26 +6095,6 @@ msgstr "" msgid "Fiscal Year to close" msgstr "" -#. module: account -#: help:product.template,property_account_expense:0 -msgid "" -"This account will be used, instead of the default one, to value outgoing " -"stock for the current product" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,date_from:0 -#: field:account.fiscalyear,date_start:0 -msgid "Start date" -msgstr "Tanggal awal" - -#. module: account -#: wizard_view:account.print.journal.report,init:0 -#: model:ir.actions.wizard,name:account.wizard_print_journal -#: model:ir.ui.menu,name:account.menu_print_journal -msgid "Print Journal" -msgstr "Cetak Jurnal" - #. module: account #: model:ir.ui.menu,name:account.account_template_folder msgid "Templates" @@ -5948,28 +6127,22 @@ msgid "Description" msgstr "" #. module: account -#: field:report.hr.timesheet.invoice.journal,quantity:0 -msgid "Quantities" -msgstr "Kwantitas" +#: help:product.template,property_account_income:0 +msgid "" +"This account will be used instead of the default one to value incoming stock " +"for the current product" +msgstr "" + +#. module: account +#: field:account.tax,child_ids:0 +msgid "Child Tax Accounts" +msgstr "" #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" msgstr "" -#. module: account -#: wizard_field:account.aged.trial.balance,init,date1:0 -#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 -#: wizard_field:account.analytic.account.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 -#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.journal.report,init,date1:0 -#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 -#: wizard_field:account.automatic.reconcile,init,date1:0 -#: field:account.period,date_start:0 -msgid "Start of period" -msgstr "Awal Periode" - #. module: account #: model:ir.ui.menu,name:account.account_account_menu msgid "Financial Accounts" @@ -5986,9 +6159,10 @@ msgid "Account Configure" msgstr "" #. module: account -#: model:process.transition,note:account.process_transition_suppliervalidentries0 -#: model:process.transition,note:account.process_transition_validentries0 -msgid "Valid entries from invoice" +#: help:res.partner,property_account_payable:0 +msgid "" +"This account will be used instead of the default one as the payable account " +"for the current partner" msgstr "" #. module: account @@ -5997,12 +6171,6 @@ msgstr "" msgid "Case Code" msgstr "" -#. module: account -#: field:account.tax.code,child_ids:0 -#: field:account.tax.code.template,child_ids:0 -msgid "Childs Codes" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "5" @@ -6040,23 +6208,11 @@ msgstr "" msgid "Account Model" msgstr "" -#. module: account -#: view:account.invoice:0 -#: model:ir.actions.act_window,name:account.act_account_analytic_account_2_account_invoice_line -msgid "Invoice lines" -msgstr "Detail invoice" - #. module: account #: selection:account.bank.statement.line,type:0 msgid "Customer" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft invoice." -msgstr "" - #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" @@ -6068,13 +6224,13 @@ msgid "Accounting Properties" msgstr "" #. module: account -#: wizard_field:account.print.journal.report,init,sort_selection:0 -msgid "Entries Sorted By" +#: model:ir.model,name:account.model_account_sequence_fiscalyear +msgid "account.sequence.fiscalyear" msgstr "" #. module: account -#: help:account.tax,name:0 -msgid "This name will be used to be displayed on reports" +#: wizard_field:account.print.journal.report,init,sort_selection:0 +msgid "Entries Sorted By" msgstr "" #. module: account @@ -6082,13 +6238,6 @@ msgstr "" msgid "Print Journal -" msgstr "" -#. module: account -#: field:account.bank.accounts.wizard,bank_account_id:0 -#: field:account.chart.template,bank_account_view_id:0 -#: field:account.invoice,partner_bank:0 -msgid "Bank Account" -msgstr "Akun Bank" - #. module: account #: model:ir.actions.act_window,name:account.action_model_form #: model:ir.ui.menu,name:account.menu_action_model_form @@ -6116,6 +6265,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 #: field:account.period,fiscalyear_id:0 +#: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" @@ -6167,30 +6317,22 @@ msgid "Python Code (reverse)" msgstr "" #. module: account -#: rml:account.account.balance:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: rml:account.partner.balance:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: rml:account.vat.declaration:0 -msgid "Page" +#: model:ir.module.module,shortdesc:account.module_meta_information +msgid "Accounting and financial management" msgstr "" #. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,account_ids:0 #: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,account_ids:0 msgid "Accounts Mapping" msgstr "" +#. module: account +#: help:product.category,property_account_expense_categ:0 +msgid "" +"This account will be used to value outgoing stock for the current product " +"category" +msgstr "" + #. module: account #: help:account.tax,base_sign:0 #: help:account.tax,ref_base_sign:0 @@ -6227,8 +6369,13 @@ msgid "General Debit" msgstr "" #. module: account -#: help:account.invoice,move_id:0 -msgid "Link to the automatically generated account moves." +#: field:account.analytic.account,code:0 +msgid "Account Code" +msgstr "" + +#. module: account +#: help:account.config.wizard,name:0 +msgid "Name of the fiscal year as displayed on screens." msgstr "" #. module: account @@ -6248,6 +6395,11 @@ msgstr "" msgid "Fiscal Positions" msgstr "" +#. module: account +#: model:process.process,name:account.process_process_statementprocess0 +msgid "Statement Process" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_bank_statement_reconcile msgid "Statement reconcile" @@ -6260,6 +6412,13 @@ msgstr "" msgid "Check this box" msgstr "" +#. module: account +#: help:account.tax,price_include:0 +msgid "" +"Check this if the price you use on the product and invoices includes this " +"tax." +msgstr "" + #. module: account #: field:account.journal.column,name:0 msgid "Column Name" @@ -6281,39 +6440,18 @@ msgid "Filters" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "at" +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#, python-format +msgid "You must enter a period length that cannot be 0 or below !" msgstr "" #. module: account -#: help:account.tax,applicable_type:0 +#: help:account.account,reconcile:0 msgid "" -"If not applicable (computed through a Python code), the tax do not appears " -"on the invoice." +"Check this if the user is allowed to reconcile entries in this account." msgstr "" #. module: account -#: model:process.process,name:account.process_process_statementprocess0 -msgid "Statement Process" +#: model:ir.actions.report.xml,name:account.account_overdue +msgid "Overdue Payments" msgstr "" - -#. module: account -#: wizard_button:account.subscription.generate,init,generate:0 -msgid "Compute Entry Dates" -msgstr "" - -#~ msgid "Account entry" -#~ msgstr "Transaksi Jurnal" - -#~ msgid "Open a Closed Fiscal Year" -#~ msgstr "Buka tahun buku yang telah ditutup" - -#~ msgid "Usualy 1 or -1." -#~ msgstr "Biasanya 1 atau -1" - -#~ msgid "Close Fiscal Year" -#~ msgstr "Tutup Tahun Buku" - -#~ msgid " Start date" -#~ msgstr " Tanggal Mulai" diff --git a/addons/account/i18n/it_IT.po b/addons/account/i18n/it_IT.po index ce1625f52b5..632a6cca3e5 100644 --- a/addons/account/i18n/it_IT.po +++ b/addons/account/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Conto tassa" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Piano dei conti" msgid "Move line select" msgstr "Seleziona la riga del movimento" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Voci analitiche" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "N. buono" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Bilancio costi e ricavi da Libro Giornale" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Importo valuta" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Stampa Analitica Libri Giornale" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "N. buono" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "Voci analitiche" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2182,7 +2199,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.account_type_expense msgid "Expense" -msgstr "Spesa" +msgstr "Uscita" #. module: account #: field:account.journal,invoice_sequence_id:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opzioni" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Importo espresso in un'altra valuta." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importa fattura" msgid "Some entries are already reconciled !" msgstr "Alcune registrazioni sono già riconciliate !" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Conto n." msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Lasciare il campo vuoto per usare il periodo della data di validazione." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "Altre informazioni" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Gentile Signora, Egregio Signore" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "riferimento fattura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "Queste registrazioni contabili non sono in uno stato valido." +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Conto tassa" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Saranno validate il periodo e tutte le voci bozza di questo Libro Giorna msgid "Date of the day" msgstr "Giorno" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Chiuso" msgid "Payment Entries" msgstr "Registrazioni di pagamento" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Pagato" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Include registrazioni riconciliate" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Limite pagabile" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Bozza" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Pagato" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6091,7 +6130,7 @@ msgstr "Definizione Modelli" #: selection:account.analytic.journal,type:0 #: selection:account.journal,type:0 msgid "Cash" -msgstr "" +msgstr "Contante" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Solitamente 1 o -1" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/kab_KAB.po b/addons/account/i18n/kab_KAB.po index 92f6649ccf6..e39c9d2c88e 100644 --- a/addons/account/i18n/kab_KAB.po +++ b/addons/account/i18n/kab_KAB.po @@ -7,16 +7,66 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2009-02-02 12:58+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:27+0000\n" "Last-Translator: yugurten \n" "Language-Team: Kabyle \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:27+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" +#. module: account +#: view:account.bank.statement.reconcile:0 +#: field:account.bank.statement.reconcile,line_ids:0 +#: field:account.move,line_id:0 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open +#: model:ir.actions.act_window,name:account.action_move_line_form +#: model:ir.ui.menu,name:account.menu_action_move_line_form +msgid "Entries" +msgstr "Inekcam" + +#. module: account +#: rml:account.journal.period.print:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +msgid "Entry label" +msgstr "Anekcum label" + +#. module: account +#: field:account.invoice,origin:0 +#: field:account.invoice.line,origin:0 +msgid "Origin" +msgstr "Tadra" + +#. module: account +#: xsl:account.transfer:0 +msgid "Reference" +msgstr "Tamselyut" + +#. module: account +#: rml:account.central.journal:0 +#: rml:account.general.journal:0 +#: field:account.journal,name:0 +msgid "Journal Name" +msgstr "Isem n uɣmis" + +#. module: account +#: field:account.bank.statement.reconcile,total_entry:0 +msgid "Total entries" +msgstr "Merra inekcam" + +#. module: account +#: rml:account.overdue:0 +msgid "Date:" +msgstr "Azemz:" + +#. module: account +#: wizard_button:account.automatic.reconcile,reconcile,end:0 +msgid "OK" +msgstr "OK" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -34,10 +84,15 @@ msgid "Account Tax Code" msgstr "" #. module: account -#: help:account.tax,domain:0 -msgid "" -"This field is only used if you develop your own module allowing developpers " -"to create specific taxes in a custom domain." +#: model:ir.actions.act_window,name:account.action_invoice_tree9 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 +msgid "Unpaid Supplier Invoices" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 +#, python-format +msgid "No journal for ending writing has been defined for the fiscal year" msgstr "" #. module: account @@ -55,6 +110,11 @@ msgstr "" msgid "Asset" msgstr "" +#. module: account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format @@ -68,6 +128,13 @@ msgstr "" msgid "Select Message" msgstr "" +#. module: account +#: help:product.category,property_account_income_categ:0 +msgid "" +"This account will be used to value incoming stock for the current product " +"category" +msgstr "" + #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 @@ -118,17 +185,6 @@ msgstr "" msgid "Residual" msgstr "" -#. module: account -#: view:account.subscription:0 -msgid "Subscription Periods" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft invoice." -msgstr "" - #. module: account #: field:account.tax,base_sign:0 #: field:account.tax,ref_base_sign:0 @@ -144,20 +200,10 @@ msgid "Unreconcile entries" msgstr "" #. module: account -#: wizard_view:account_use_models,create:0 -msgid "Use Model" +#: constraint:account.period:0 +msgid "Error ! The duration of the Period(s) is/are invalid. " msgstr "" -#. module: account -#: view:account.bank.statement.reconcile:0 -#: field:account.bank.statement.reconcile,line_ids:0 -#: field:account.move,line_id:0 -#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open -#: model:ir.actions.act_window,name:account.action_move_line_form -#: model:ir.ui.menu,name:account.menu_action_move_line_form -msgid "Entries" -msgstr "Inekcam" - #. module: account #: selection:account.move.line,centralisation:0 msgid "Debit Centralisation" @@ -177,13 +223,8 @@ msgid "" msgstr "" #. module: account -#: help:account.account,currency_mode:0 -msgid "" -"This will select how is computed the current currency rate for outgoing " -"transactions. In most countries the legal method is \"average\" but only a " -"few softwares are able to manage this. So if you import from another " -"software, you may have to use the rate at date. Incoming transactions, " -"always use the rate at date." +#: view:account.move:0 +msgid "Total Credit" msgstr "" #. module: account @@ -203,11 +244,13 @@ msgid "Keep empty to use the expense account" msgstr "" #. module: account -#: rml:account.journal.period.print:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -msgid "Entry label" -msgstr "Anekcum label" +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"You can not modify a posted entry of this journal !\n" +"You should set the journal to allow cancelling entries if you want to do " +"that." +msgstr "" #. module: account #: model:ir.model,name:account.model_account_model_line @@ -291,6 +334,15 @@ msgid "" "journal." msgstr "" +#. module: account +#: help:account.invoice,payment_term:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment. The payment term may compute several " +"due dates, for example 50% now, 50% in one month." +msgstr "" + #. module: account #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 @@ -304,8 +356,9 @@ msgid "Warning !" msgstr "" #. module: account -#: model:ir.actions.report.xml,name:account.account_overdue -msgid "Overdue Payments" +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not delete posted movement: \"%s\"!" msgstr "" #. module: account @@ -327,12 +380,6 @@ msgid "" "The real total does not match the computed total." msgstr "" -#. module: account -#: field:account.invoice,origin:0 -#: field:account.invoice.line,origin:0 -msgid "Origin" -msgstr "Tadra" - #. module: account #: field:account.account,reconcile:0 #: wizard_button:account.automatic.reconcile,init,reconcile:0 @@ -345,11 +392,6 @@ msgstr "Tadra" msgid "Reconcile" msgstr "" -#. module: account -#: xsl:account.transfer:0 -msgid "Reference" -msgstr "Tamselyut" - #. module: account #: wizard_view:account.subscription.generate,init:0 msgid "Subscription Compute" @@ -366,10 +408,8 @@ msgid "Delta Debit" msgstr "" #. module: account -#: rml:account.invoice:0 -#: field:account.invoice,amount_tax:0 -#: field:account.move.line,account_tax_id:0 -msgid "Tax" +#: field:account.chart.template,property_account_receivable:0 +msgid "Receivable Account" msgstr "" #. module: account @@ -392,16 +432,17 @@ msgid "Analytic Account" msgstr "" #. module: account -#: wizard_button:account.automatic.reconcile,reconcile,end:0 -msgid "OK" -msgstr "OK" +#: field:account.tax,child_depend:0 +#: field:account.tax.template,child_depend:0 +msgid "Tax on Children" +msgstr "" #. module: account -#: rml:account.central.journal:0 -#: rml:account.general.journal:0 -#: field:account.journal,name:0 -msgid "Journal Name" -msgstr "Isem n uɣmis" +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "No period found !" +msgstr "" #. module: account #: view:account.payment.term:0 @@ -409,9 +450,9 @@ msgid "Description on invoices" msgstr "" #. module: account -#: field:account.bank.statement.reconcile,total_entry:0 -msgid "Total entries" -msgstr "Merra inekcam" +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "" #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -424,11 +465,6 @@ msgstr "" msgid "Allow Cancelling Entries" msgstr "" -#. module: account -#: field:account.analytic.account,quantity_max:0 -msgid "Maximal quantity" -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentorderreconcilation0 @@ -436,14 +472,20 @@ msgid "Payment Reconcilation" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal -msgid "All Analytic Entries" +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Can not %s draft/proforma/cancel invoice." msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Date:" -msgstr "Azemz:" +#: model:account.journal,name:account.expenses_journal +msgid "Journal de frais" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal +msgid "All Analytic Entries" +msgstr "" #. module: account #: rml:account.invoice:0 @@ -484,15 +526,9 @@ msgid "State" msgstr "" #. module: account -#: help:account.tax,base_code_id:0 -#: help:account.tax,ref_base_code_id:0 -#: help:account.tax,ref_tax_code_id:0 -#: help:account.tax,tax_code_id:0 -#: help:account.tax.template,base_code_id:0 -#: help:account.tax.template,ref_base_code_id:0 -#: help:account.tax.template,ref_tax_code_id:0 -#: help:account.tax.template,tax_code_id:0 -msgid "Use this code for the VAT declaration." +#: model:ir.actions.act_window,name:account.action_invoice_tree13 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 +msgid "Unpaid Supplier Refunds" msgstr "" #. module: account @@ -518,12 +554,20 @@ msgstr "" #: field:account.model,ref:0 #: field:account.move,ref:0 #: rml:account.overdue:0 +#: field:account.subscription,ref:0 msgid "Ref" msgstr "" #. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "View Account Analytic Lines" +#: field:account.tax.template,type_tax_use:0 +msgid "Tax Use In" +msgstr "" + +#. module: account +#: help:account.tax.template,include_base_amount:0 +msgid "" +"Set if the amount of tax must be included in the base amount before " +"computing the next taxes." msgstr "" #. module: account @@ -575,10 +619,8 @@ msgid "Deferral Method" msgstr "" #. module: account -#: help:res.partner,property_payment_term:0 -msgid "" -"This payment term will be used, instead of the default one, for the current " -"partner" +#: field:account.tax.template,include_base_amount:0 +msgid "Include in Base Amount" msgstr "" #. module: account @@ -592,6 +634,11 @@ msgstr "" msgid "Line" msgstr "" +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "J.C. or Move name" +msgstr "" + #. module: account #: selection:account.tax,applicable_type:0 #: selection:account.tax.template,applicable_type:0 @@ -644,11 +691,14 @@ msgid "Entry Controls" msgstr "" #. module: account -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive account." +#: help:account.model.line,sequence:0 +msgid "" +"The sequence field is used to order the resources from lower sequences to " +"higher ones" msgstr "" #. module: account +#: wizard_view:account.analytic.account.chart,init:0 #: wizard_view:account.analytic.line,init:0 msgid "(Keep empty to open the current situation)" msgstr "" @@ -658,22 +708,11 @@ msgstr "" msgid "Fiscal Position Accounts Mapping" msgstr "" -#. module: account -#: model:account.journal,name:account.sales_journal -msgid "x Sales Journal" -msgstr "" - #. module: account #: field:account.analytic.account,contact_id:0 msgid "Contact" msgstr "" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not validate a non balanced entry !" -msgstr "" - #. module: account #: selection:account.model.line,date:0 #: selection:account.model.line,date_maturity:0 @@ -710,14 +749,9 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Global taxes defined, but not in invoice lines !" -msgstr "" - -#. module: account -#: field:account.analytic.account,child_ids:0 -msgid "Childs Accounts" +#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 +#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 +msgid "Write-Off amount" msgstr "" #. module: account @@ -731,6 +765,12 @@ msgid "Analytic Accounting" msgstr "" #. module: account +#: rml:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + +#. module: account +#: field:account.analytic.account,line_ids:0 #: view:account.analytic.line:0 #: code:addons/account/project/wizard/wizard_account_analytic_line.py:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form @@ -739,18 +779,6 @@ msgstr "" msgid "Analytic Entries" msgstr "" -#. module: account -#: help:product.category,property_account_expense_categ:0 -msgid "" -"This account will be used, instead of the default one, to value outgoing " -"stock for the current product category" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -762,6 +790,11 @@ msgstr "" msgid "account.analytic.line.extended" msgstr "" +#. module: account +#: field:account.analytic.account,partner_id:0 +msgid "Associated Partner" +msgstr "" + #. module: account #: code:addons/account/invoice.py:0 #, python-format @@ -779,13 +812,8 @@ msgid "Customer Refund" msgstr "" #. module: account -#: wizard_view:populate_statement_from_inv,init:0 -msgid "Import invoices in statement" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,seq_journal:0 -msgid "Separated Journal Sequences" +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Select the Period for Analysis" msgstr "" #. module: account @@ -833,17 +861,9 @@ msgid "End of Year Entries Journal" msgstr "" #. module: account -#: help:res.partner,property_account_payable:0 -msgid "" -"This account will be used, instead of the default one, as the payable " -"account for the current partner" -msgstr "" - -#. module: account -#: help:account.move.line,amount_currency:0 -msgid "" -"The amount expressed in an optionnal other currency if it is a multi-" -"currency entry." +#: view:product.product:0 +#: view:product.template:0 +msgid "Purchase Properties" msgstr "" #. module: account @@ -871,11 +891,6 @@ msgstr "" msgid "Status" msgstr "" -#. module: account -#: field:account.tax,child_ids:0 -msgid "Childs Tax Account" -msgstr "" - #. module: account #: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 @@ -893,6 +908,8 @@ msgid "Generate entries before:" msgstr "" #. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 #: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger #: model:ir.actions.wizard,name:account.account_analytic_account_cost_ledger_report msgid "Cost Ledger" @@ -911,11 +928,6 @@ msgstr "" msgid "Move Lines" msgstr "" -#. module: account -#: view:account.move:0 -msgid "Total Credit" -msgstr "" - #. module: account #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format @@ -949,9 +961,9 @@ msgid "Templates for Accounts" msgstr "" #. module: account -#: field:account.tax,type_tax_use:0 -#: field:account.tax.template,type_tax_use:0 -msgid "Tax Use in" +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" msgstr "" #. module: account @@ -962,8 +974,10 @@ msgid "Analytic Accounts" msgstr "" #. module: account -#: field:account.model,name:0 -msgid "Model Name" +#: wizard_view:account.print.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_print_journal +#: model:ir.ui.menu,name:account.menu_print_journal +msgid "Print Journal" msgstr "" #. module: account @@ -993,12 +1007,25 @@ msgstr "" msgid "Expense Account" msgstr "" +#. module: account +#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 +msgid "Write-Off Journal" +msgstr "" + #. module: account #: field:account.model.line,amount_currency:0 #: field:account.move.line,amount_currency:0 msgid "Amount Currency" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" @@ -1009,6 +1036,13 @@ msgstr "" msgid "New Fiscal Year" msgstr "" +#. module: account +#: help:account.tax,tax_group:0 +msgid "" +"If a default tax is given in the partner it only overrides taxes from " +"accounts (or products) in the same group." +msgstr "" + #. module: account #: wizard_field:account.open_closed_fiscalyear,init,fyear_id:0 msgid "Fiscal Year to Open" @@ -1039,7 +1073,6 @@ msgstr "" #. module: account #: wizard_field:account.account.balance.report,checktype,date_to:0 -#: field:account.fiscalyear,date_stop:0 #: wizard_field:account.general.ledger.report,checktype,date_to:0 #: wizard_field:account.partner.balance.report,init,date2:0 #: wizard_field:account.third_party_ledger.report,init,date2:0 @@ -1052,8 +1085,8 @@ msgid "Base Code Amount" msgstr "" #. module: account -#: field:account.account,child_id:0 -msgid "Children Accounts" +#: help:account.journal,user_id:0 +msgid "The user responsible for this journal" msgstr "" #. module: account @@ -1126,12 +1159,6 @@ msgstr "" msgid "UoM" msgstr "" -#. module: account -#: view:product.product:0 -#: view:product.template:0 -msgid "Purchases Properties" -msgstr "" - #. module: account #: wizard_field:account.third_party_ledger.report,init,page_split:0 msgid "One Partner Per Page" @@ -1155,14 +1182,14 @@ msgid "New Supplier Invoice" msgstr "" #. module: account -#: wizard_field:account.invoice.pay,init,amount:0 -msgid "Amount paid" +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#, python-format +msgid "You must select accounts to reconcile" msgstr "" #. module: account -#: model:ir.actions.wizard,name:account.wizard_general_journal -#: model:ir.ui.menu,name:account.menu_general_journal -msgid "Print General journal" +#: wizard_field:account.invoice.pay,init,amount:0 +msgid "Amount paid" msgstr "" #. module: account @@ -1178,8 +1205,8 @@ msgid "Choose Fiscal Year" msgstr "" #. module: account -#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 -msgid "Write-Off Journal" +#: field:account.sequence.fiscalyear,sequence_main_id:0 +msgid "Main Sequence" msgstr "" #. module: account @@ -1188,6 +1215,11 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: help:account.payment.term.line,sequence:0 msgid "" @@ -1205,6 +1237,12 @@ msgstr "" msgid "Compute Code for Taxes included prices" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not validate a non-balanced entry !" +msgstr "" + #. module: account #: view:account.invoice.tax:0 #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -1253,8 +1291,8 @@ msgid "wizard.multi.charts.accounts" msgstr "" #. module: account -#: field:account.move.line,tax_amount:0 -msgid "Tax/Base Amount" +#: model:account.journal,name:account.sales_journal +msgid "Journal de vente" msgstr "" #. module: account @@ -1274,6 +1312,7 @@ msgid "Tax Report" msgstr "" #. module: account +#: wizard_button:account.analytic.account.chart,init,open:0 #: wizard_button:account.chart,init,open:0 msgid "Open Charts" msgstr "" @@ -1309,8 +1348,13 @@ msgid "Tel. :" msgstr "" #. module: account -#: model:account.journal,name:account.expenses_journal -msgid "x Expenses Journal" +#: help:account.account,currency_mode:0 +msgid "" +"This will select how the current currency rate for outgoing transactions is " +"computed. In most countries the legal method is \"average\" but only a few " +"software systems are able to manage this. So if you import from another " +"software system you may have to use the rate at date. Incoming transactions " +"always use the rate at date." msgstr "" #. module: account @@ -1319,8 +1363,13 @@ msgid "Company Currency" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "J.C. / Move name" +#: model:ir.model,name:account.model_account_fiscal_position_account_template +msgid "Fiscal Position Template Account Mapping" +msgstr "" + +#. module: account +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: account @@ -1335,6 +1384,11 @@ msgid "" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + #. module: account #: help:wizard.multi.charts.accounts,code_digits:0 msgid "No. of Digits to use for account code" @@ -1355,12 +1409,6 @@ msgstr "" msgid "Line Name" msgstr "" -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree2 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 -msgid "Supplier Invoices" -msgstr "" - #. module: account #: selection:account.payment.term.line,value:0 msgid "Fixed Amount" @@ -1382,6 +1430,13 @@ msgstr "" msgid "Not reconciled transactions" msgstr "" +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,tax_ids:0 +#: field:account.fiscal.position.template,tax_ids:0 +msgid "Tax Mapping" +msgstr "" + #. module: account #: view:account.config.wizard:0 msgid "Continue" @@ -1432,6 +1487,8 @@ msgstr "" #. module: account #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 msgid "All" msgstr "" @@ -1442,8 +1499,10 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." +#: help:account.move.line,amount_currency:0 +msgid "" +"The amount expressed in an optionnal other currency if it is a multi-" +"currency entry." msgstr "" #. module: account @@ -1478,14 +1537,19 @@ msgid "Tax Lines" msgstr "" #. module: account -#: field:account.journal,fy_seq_id:0 +#: field:ir.sequence,fiscal_ids:0 msgid "Sequences" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_account_type_form -#: model:ir.ui.menu,name:account.menu_action_account_type_form -msgid "Account Types" +#: wizard_button:account.subscription.generate,init,generate:0 +msgid "Compute Entry Dates" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot create invoice move on centralised journal" msgstr "" #. module: account @@ -1511,11 +1575,9 @@ msgid "Journal" msgstr "" #. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,tax_ids:0 -#: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,tax_ids:0 -msgid "Taxes Mapping" +#: field:account.account,child_id:0 +#: field:account.analytic.account,child_ids:0 +msgid "Child Accounts" msgstr "" #. module: account @@ -1545,11 +1607,6 @@ msgstr "" msgid "Keep empty to use the income account" msgstr "" -#. module: account -#: field:account.payment.term.line,value_amount:0 -msgid "Value Amount" -msgstr "" - #. module: account #: view:account.bank.statement.reconcile:0 #: field:account.bank.statement.reconcile,line_new_ids:0 @@ -1559,8 +1616,10 @@ msgid "Write-Off" msgstr "" #. module: account -#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 -msgid "With Currency" +#: help:account.invoice,partner_bank:0 +msgid "" +"The partner bank account to pay\n" +"Keep empty to use the default" msgstr "" #. module: account @@ -1574,18 +1633,12 @@ msgid "Close states" msgstr "" #. module: account -#: view:account.subscription:0 -msgid "Remove Lines" -msgstr "" - -#. module: account -#: field:account.invoice,address_contact_id:0 -msgid "Contact Address" +#: wizard_view:account_use_models,create:0 +msgid "Use Model" msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Crédit" msgstr "" @@ -1611,14 +1664,11 @@ msgstr "" #. module: account #: wizard_view:account.general.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_general_journal +#: model:ir.ui.menu,name:account.menu_general_journal msgid "Print General Journal" msgstr "" -#. module: account -#: help:account.period,special:0 -msgid "These periods can overlap." -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form #: model:ir.ui.menu,name:account.menu_action_account_chart_template_form @@ -1630,11 +1680,6 @@ msgstr "" msgid "Invoice Movement" msgstr "" -#. module: account -#: view:account.journal:0 -msgid "Invoice Sequences" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart #: model:ir.ui.menu,name:account.menu_wizard @@ -1664,6 +1709,11 @@ msgstr "" msgid "Open for reconciliation" msgstr "" +#. module: account +#: model:account.journal,name:account.bilan_journal +msgid "Journal d'ouverture" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -1682,8 +1732,9 @@ msgid "Account n°" msgstr "" #. module: account -#: field:account.analytic.account,type:0 -msgid "Account type" +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Free Reference" msgstr "" #. module: account @@ -1735,15 +1786,8 @@ msgid "Close Period" msgstr "" #. module: account -#: code:addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "" -"Selected Move lines does not have any account move enties in draft state" -msgstr "" - -#. module: account -#: selection:account.account.type,close_method:0 -msgid "Detail" +#: rml:account.overdue:0 +msgid "Due" msgstr "" #. module: account @@ -1767,12 +1811,6 @@ msgstr "" msgid "No Partner Defined !" msgstr "" -#. module: account -#: field:account.tax,child_depend:0 -#: field:account.tax.template,child_depend:0 -msgid "Tax on Childs" -msgstr "" - #. module: account #: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,journal:0 #: view:account.journal.period:0 @@ -1782,14 +1820,8 @@ msgid "Journals" msgstr "" #. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/invoice.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#: code:addons/account/wizard/wizard_journal.py:0 -#, python-format -msgid "UserError" +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Max Qty:" msgstr "" #. module: account @@ -1846,7 +1878,6 @@ msgstr "" #. module: account #: field:account.tax,include_base_amount:0 -#: field:account.tax.template,include_base_amount:0 msgid "Include in base amount" msgstr "" @@ -1866,14 +1897,27 @@ msgstr "" msgid "Pre-generated invoice from control" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Valid Entries" +msgstr "" + #. module: account #: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 msgid "Cost Legder for period" msgstr "" #. module: account -#: model:ir.model,name:account.model_account_fiscal_position_tax_template -msgid "Fiscal Position Template Taxes Mapping" +#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 +#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 +msgid "New Statement" +msgstr "" + +#. module: account +#: wizard_field:account.analytic.account.chart,init,from_date:0 +#: wizard_field:account.analytic.line,init,from_date:0 +msgid "From" msgstr "" #. module: account @@ -1884,18 +1928,21 @@ msgstr "" #. module: account #: wizard_view:account.central.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_central_journal +#: model:ir.ui.menu,name:account.menu_central_journal msgid "Print Central Journal" msgstr "" #. module: account -#: field:account.analytic.account,code:0 -msgid "Account code" +#: wizard_field:account.aged.trial.balance,init,period_length:0 +msgid "Period length (days)" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use an inactive account!" +#: rml:account.invoice:0 +#: field:account.invoice,amount_tax:0 +#: field:account.move.line,account_tax_id:0 +msgid "Tax" msgstr "" #. module: account @@ -1931,6 +1978,11 @@ msgid "" "partner." msgstr "" +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "Date or Code" +msgstr "" + #. module: account #: field:account.analytic.account,user_id:0 msgid "Account Manager" @@ -1949,8 +2001,8 @@ msgid "Debit amount" msgstr "" #. module: account -#: help:account.invoice,residual:0 -msgid "Remaining amount due." +#: selection:account.subscription,period_type:0 +msgid "year" msgstr "" #. module: account @@ -1971,9 +2023,8 @@ msgid "Print" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" +#: wizard_field:account.account.balance.report,checktype,date_from:0 +msgid "Start date" msgstr "" #. module: account @@ -1992,11 +2043,6 @@ msgstr "" msgid "Type" msgstr "" -#. module: account -#: field:account.analytic.account,line_ids:0 -msgid "Analytic entries" -msgstr "" - #. module: account #: view:account.journal:0 msgid "Accounts Allowed (empty for no control)" @@ -2025,8 +2071,8 @@ msgid "Pay invoice" msgstr "" #. module: account -#: help:res.partner,debit:0 -msgid "Total amount you have to pay to this supplier." +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." msgstr "" #. module: account @@ -2058,6 +2104,12 @@ msgstr "" msgid "The partner reference of this invoice." msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot delete invoice(s) that are already opened or paid !" +msgstr "" + #. module: account #: wizard_field:account.general.ledger.report,checktype,sortbydate:0 msgid "Sort by:" @@ -2069,8 +2121,8 @@ msgid "To Be Verified" msgstr "" #. module: account -#: help:res.partner,credit:0 -msgid "Total amount this customer owns you." +#: help:res.partner,debit:0 +msgid "Total amount you have to pay to this supplier." msgstr "" #. module: account @@ -2099,6 +2151,11 @@ msgstr "" msgid "Account charts" msgstr "" +#. module: account +#: help:account.tax,name:0 +msgid "This name will be displayed on reports" +msgstr "" + #. module: account #: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 @@ -2126,6 +2183,11 @@ msgstr "" msgid "Customer Refunds" msgstr "" +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -2142,18 +2204,20 @@ msgstr "" msgid "Journal-Period Name" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "There are no periods defined on New Fiscal Year." -msgstr "" - #. module: account #: field:account.tax.code,name:0 #: field:account.tax.code.template,name:0 msgid "Tax Case Name" msgstr "" +#. module: account +#: help:account.journal,entry_posted:0 +msgid "" +"Check this box if you don't want new account moves to pass through the " +"'draft' state and instead goes directly to the 'posted state' without any " +"manual validation." +msgstr "" + #. module: account #: field:account.bank.statement.line,partner_id:0 #: field:account.bank.statement.reconcile,partner_id:0 @@ -2173,8 +2237,8 @@ msgid "" msgstr "" #. module: account -#: field:account.analytic.account,partner_id:0 -msgid "Associated partner" +#: rml:account.invoice:0 +msgid "Draft Invoice" msgstr "" #. module: account @@ -2182,6 +2246,11 @@ msgstr "" msgid "Expense" msgstr "" +#. module: account +#: field:account.journal,invoice_sequence_id:0 +msgid "Invoice Sequence" +msgstr "" + #. module: account #: wizard_view:account.automatic.reconcile,init:0 msgid "Options" @@ -2214,14 +2283,6 @@ msgstr "" msgid "days" msgstr "" -#. module: account -#: help:account.tax.template,sequence:0 -msgid "" -"The sequence field is used to order the taxes lines from the lowest " -"sequences to the higher ones. The order is important if you have a tax that " -"have several tax children. In this case, the evaluation order is important." -msgstr "" - #. module: account #: selection:account.aged.trial.balance,init,direction_selection:0 msgid "Past" @@ -2268,11 +2329,6 @@ msgstr "" msgid "Computation" msgstr "" -#. module: account -#: field:account.analytic.account,parent_id:0 -msgid "Parent analytic account" -msgstr "" - #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" @@ -2291,11 +2347,8 @@ msgid "Chart of Taxes" msgstr "" #. module: account -#: help:account.tax,sequence:0 -msgid "" -"The sequence field is used to order the taxes lines from the lowest " -"sequences to the higher ones. The order is important if you have a tax that " -"have several tax childs. In this case, the evaluation order is important." +#: field:account.payment.term.line,value_amount:0 +msgid "Value Amount" msgstr "" #. module: account @@ -2304,11 +2357,8 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: help:account.journal,entry_posted:0 -msgid "" -"Check this box if you don't want that new account moves pass through the " -"'draft' state and goes direclty to the 'posted state' without any manual " -"validation." +#: field:account.invoice,address_contact_id:0 +msgid "Contact Address" msgstr "" #. module: account @@ -2327,14 +2377,21 @@ msgstr "" msgid "Draft Supplier Invoices" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "Unable to find a valid period !" +msgstr "" + #. module: account #: wizard_field:account.invoice.refund,init,period:0 msgid "Force period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Due" +#: selection:account.account.type,close_method:0 +msgid "Detail" msgstr "" #. module: account @@ -2369,7 +2426,6 @@ msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Débit" msgstr "" @@ -2393,11 +2449,6 @@ msgstr "" msgid "Your journal must have a default credit and debit account." msgstr "" -#. module: account -#: rml:account.overdue:0 -msgid "Sub-Total:" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_generate_subscription #: model:ir.ui.menu,name:account.menu_generate_subscription @@ -2443,6 +2494,16 @@ msgstr "" msgid "2" msgstr "" +#. module: account +#: wizard_view:account.chart,init:0 +msgid "(If you do not select Fiscal year it will take all open fiscal years)" +msgstr "" + +#. module: account +#: help:account.invoice.tax,base_code_id:0 +msgid "The account basis of the tax declaration." +msgstr "" + #. module: account #: rml:account.analytic.account.journal:0 #: field:account.analytic.line,date:0 @@ -2509,6 +2570,11 @@ msgstr "" msgid "Chart of Accounts Template" msgstr "" +#. module: account +#: model:account.journal,name:account.refund_sales_journal +msgid "Journal d'extourne" +msgstr "" + #. module: account #: rml:account.journal.period.print:0 msgid "Voucher No" @@ -2553,9 +2619,10 @@ msgid "Account No." msgstr "" #. module: account -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -msgid "Situation" +#: help:account.tax,child_depend:0 +msgid "" +"Set if the tax computation is based on the computation of child taxes rather " +"than on the total amount." msgstr "" #. module: account @@ -2568,6 +2635,13 @@ msgstr "" msgid "Journal Code" msgstr "" +#. module: account +#: help:account.tax,applicable_type:0 +msgid "" +"If not applicable (computed through a Python code), the tax won't appear on " +"the invoice." +msgstr "" + #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" @@ -2580,17 +2654,13 @@ msgstr "" #. module: account #: view:account.bank.statement:0 +#: field:account.move.reconcile,line_id:0 #: model:ir.actions.act_window,name:account.action_move_line_search +#: model:ir.actions.act_window,name:account.action_move_line_tree1 #: model:ir.ui.menu,name:account.menu_action_move_line_search msgid "Entry Lines" msgstr "" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_central_journal -#: model:ir.ui.menu,name:account.menu_central_journal -msgid "Print Central journal" -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/invoice.py:0 @@ -2653,12 +2723,22 @@ msgstr "" msgid "Information addendum" msgstr "" +#. module: account +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" + #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Entries Reconcile" msgstr "" +#. module: account +#: help:account.bank.statement.reconcile,total_second_amount:0 +msgid "The amount in the currency of the journal" +msgstr "" + #. module: account #: wizard_field:account.general.ledger.report,checktype,landscape:0 msgid "Landscape Mode" @@ -2676,6 +2756,7 @@ msgstr "" #: wizard_button:account.aged.trial.balance,init,end:0 #: wizard_button:account.analytic.account.analytic.check.report,init,end:0 #: wizard_button:account.analytic.account.balance.report,init,end:0 +#: wizard_button:account.analytic.account.chart,init,end:0 #: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 #: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 #: wizard_button:account.analytic.account.journal.report,init,end:0 @@ -2718,15 +2799,20 @@ msgid "Cancel" msgstr "" #. module: account -#: help:account.account.type,sign:0 -msgid "" -"Allows to change the displayed amount of the balance in the reports, in " -"order to see positive results instead of negative ones in expenses accounts." +#: field:account.account.type,name:0 +msgid "Acc. Type Name" msgstr "" #. module: account -#: field:account.account.type,name:0 -msgid "Acc. Type Name" +#: help:account.tax,base_code_id:0 +#: help:account.tax,ref_base_code_id:0 +#: help:account.tax,ref_tax_code_id:0 +#: help:account.tax,tax_code_id:0 +#: help:account.tax.template,base_code_id:0 +#: help:account.tax.template,ref_base_code_id:0 +#: help:account.tax.template,ref_tax_code_id:0 +#: help:account.tax.template,tax_code_id:0 +msgid "Use this code for the VAT declaration." msgstr "" #. module: account @@ -2757,8 +2843,8 @@ msgid "Account Payable" msgstr "" #. module: account -#: wizard_view:account.move.validate,init:0 -msgid "Select Period and Journal for Validation" +#: wizard_view:populate_statement_from_inv,init:0 +msgid "Import Invoices in Statement" msgstr "" #. module: account @@ -2772,13 +2858,14 @@ msgid "Default Credit Account" msgstr "" #. module: account -#: help:account.journal,user_id:0 -msgid "The responsible user of this journal" +#: model:process.node,name:account.process_node_supplierpaymentorder0 +msgid "Payment Order" msgstr "" #. module: account -#: model:process.node,name:account.process_node_supplierpaymentorder0 -msgid "Payment Order" +#: help:account.account.template,reconcile:0 +msgid "" +"Check this option if you want the user to reconcile entries in this account." msgstr "" #. module: account @@ -2800,11 +2887,6 @@ msgstr "" msgid "Create Invoice" msgstr "" -#. module: account -#: model:account.journal,name:account.refund_sales_journal -msgid "x Sales Credit Note Journal" -msgstr "" - #. module: account #: model:account.account.type,name:account.account_type_cash_equity msgid "Equity" @@ -2821,11 +2903,9 @@ msgid "In dispute" msgstr "" #. module: account -#: help:account.tax.code,notprintable:0 -#: help:account.tax.code.template,notprintable:0 -msgid "" -"Check this box if you don't want that any vat related to this Tax Code " -"appears on invoices" +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Unable to change tax !" msgstr "" #. module: account @@ -2861,31 +2941,31 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 -#: model:ir.ui.menu,name:account.account_analytic_chart +#: model:ir.actions.wizard,name:account.wizard_analytic_account_chart #: model:ir.ui.menu,name:account.account_analytic_chart_balance #: model:ir.ui.menu,name:account.account_analytic_def_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Analytic Chart of Accounts" msgstr "" +#. module: account +#: wizard_view:account.analytic.line,init:0 +msgid "View Account Analytic Lines" +msgstr "" + +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "Select Period and Journal for Validation" +msgstr "" + #. module: account #: field:account.invoice,number:0 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 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: field:account.invoice,amount_total:0 -#: field:account.invoice,check_total:0 -msgid "Total" +#: field:account.period,date_stop:0 +msgid "End of Period" msgstr "" #. module: account @@ -2893,6 +2973,11 @@ msgstr "" msgid "O_k" msgstr "" +#. module: account +#: field:account.invoice,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + #. module: account #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance #: model:ir.actions.wizard,name:account.account_analytic_account_inverted_balance_report @@ -2950,6 +3035,14 @@ msgstr "" msgid "Effective date" msgstr "" +#. module: account +#: help:account.tax.template,sequence:0 +msgid "" +"The sequence field is used to order the taxes lines from lower sequences to " +"higher ones. The order is important if you have a tax that has several tax " +"children. In this case, the evaluation order is important." +msgstr "" + #. module: account #: field:account.journal.column,view_id:0 #: view:account.journal.view:0 @@ -2991,14 +3084,6 @@ msgstr "" msgid "New Customer Invoice" 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." @@ -3020,8 +3105,11 @@ msgid "Open State" msgstr "" #. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Max.qty:" +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No records found for your selection!" msgstr "" #. module: account @@ -3036,19 +3124,16 @@ msgid "From statement, create entries" msgstr "" #. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" +#: field:account.analytic.account,complete_name:0 +msgid "Full Account Name" msgstr "" #. module: account #: rml:account.account.balance:0 #: rml:account.analytic.account.analytic.check:0 #: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.inverted.balance:0 #: rml:account.analytic.account.journal:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 #: rml:account.general.ledger:0 #: rml:account.journal.period.print:0 #: rml:account.partner.balance:0 @@ -3069,6 +3154,11 @@ msgstr "" msgid "Accounting Statement" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Document: Customer account statement" +msgstr "" + #. module: account #: view:product.product:0 #: view:product.template:0 @@ -3088,6 +3178,11 @@ msgstr "" msgid "Please set an analytic journal on this financial journal !" msgstr "" +#. module: account +#: view:account.fiscal.position.template:0 +msgid "Taxes Mapping" +msgstr "" + #. module: account #: wizard_view:account.move.line.unreconcile,init:0 #: wizard_view:account.reconcile.unreconcile,init:0 @@ -3102,7 +3197,6 @@ msgstr "" #. module: account #: field:account.bank.statement,move_line_ids:0 -#: field:account.move.reconcile,line_id:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line #: model:ir.model,name:account.model_account_move_line msgid "Entry lines" @@ -3182,20 +3276,22 @@ msgid "" msgstr "" #. module: account -#: constraint:account.fiscalyear:0 -msgid "Error ! The date duration of the Fiscal Year is invalid. " +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +msgid "Situation" msgstr "" #. module: account -#: help:product.template,property_account_income:0 -msgid "" -"This account will be used, instead of the default one, to value incoming " -"stock for the current product" +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date to must be set between %s and %s" msgstr "" #. module: account #: rml:account.invoice:0 -#: rml:account.overdue:0 #: xsl:account.transfer:0 msgid "Document" msgstr "" @@ -3211,15 +3307,15 @@ msgid "Unit of Measure" msgstr "" #. module: account -#: field:account.chart.template,property_account_receivable:0 -msgid "Receivable Account" +#: rml:account.analytic.account.journal:0 +msgid "Move name" msgstr "" #. module: account -#: constraint:account.period:0 +#: help:account.journal,group_invoice_lines:0 msgid "" -"Invalid period ! Some periods overlap or the date duration is not in the " -"limit of the fiscal year. " +"If this box is checked, the system will try to group the accounting lines " +"when generating them from invoices." msgstr "" #. module: account @@ -3290,8 +3386,8 @@ msgid "Base" msgstr "" #. module: account -#: field:account.analytic.account,name:0 -msgid "Account name" +#: field:account.model,name:0 +msgid "Model Name" msgstr "" #. module: account @@ -3347,12 +3443,8 @@ msgid "Account" msgstr "" #. module: account -#: help:account.invoice,payment_term:0 -msgid "" -"If you use payment terms, the due date will be computed automatically at the " -"generation of accounting entries. If you keep the payment term and the due " -"date empty, it means direct payment. The payment term may compute several " -"due dates: 50% now, 50% in one month." +#: model:account.journal,name:account.bank_journal +msgid "Journal de Banque CHF" msgstr "" #. module: account @@ -3363,6 +3455,12 @@ msgstr "" msgid "By Date and Period" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_state_open.py:0 +#, python-format +msgid "Invoice is already reconciled" +msgstr "" + #. module: account #: view:account.account:0 #: view:account.account.template:0 @@ -3506,8 +3604,8 @@ msgid "Root Tax Code" msgstr "" #. module: account -#: help:account.bank.statement.reconcile,total_second_amount:0 -msgid "The amount in the currency of the journal" +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." msgstr "" #. module: account @@ -3539,10 +3637,9 @@ 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." +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not change the tax, you should remove and recreate lines !" msgstr "" #. module: account @@ -3588,8 +3685,10 @@ msgid "Third Party Ledger" msgstr "" #. module: account -#: rml:account.vat.declaration:0 -msgid "Solde" +#: help:res.partner,property_account_receivable:0 +msgid "" +"This account will be used instead of the default one as the receivable " +"account for the current partner" msgstr "" #. module: account @@ -3603,7 +3702,6 @@ msgid "Partner Accounts" msgstr "" #. module: account -#: help:account.tax,tax_group:0 #: help:account.tax.template,tax_group:0 msgid "" "If a default tax if given in the partner it only override taxes from account " @@ -3655,13 +3753,6 @@ msgstr "" msgid "Date of the day" 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 #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -3672,6 +3763,7 @@ msgstr "" #: field:account.account,user_type:0 #: field:account.account.template,user_type:0 #: view:account.account.type:0 +#: field:account.analytic.account,type:0 #: model:ir.model,name:account.model_account_account_type msgid "Account Type" msgstr "" @@ -3700,6 +3792,7 @@ msgid "Pay and reconcile" msgstr "" #. module: account +#: rml:account.central.journal:0 #: model:ir.actions.report.xml,name:account.account_central_journal msgid "Central Journal" msgstr "" @@ -3734,6 +3827,11 @@ msgstr "" msgid "Fiscal year" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Balance :" +msgstr "" + #. module: account #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 @@ -3746,8 +3844,8 @@ msgid "3" msgstr "" #. module: account -#: constraint:account.period:0 -msgid "Error ! The date duration of the Period(s) is invalid. " +#: model:ir.actions.report.xml,name:account.account_vat_declaration +msgid "Taxes Report" msgstr "" #. module: account @@ -3766,6 +3864,11 @@ msgstr "" msgid "Entry Model" msgstr "" +#. module: account +#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 +msgid "With Currency" +msgstr "" + #. module: account #: view:account.account:0 msgid "Chart of accounts" @@ -3819,8 +3922,10 @@ msgid "# of Digits" msgstr "" #. module: account -#: wizard_field:account.move.line.reconcile,addendum,period_id:0 -msgid "Write-Off Period" +#: help:res.partner,property_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for the current " +"partner" msgstr "" #. module: account @@ -3834,12 +3939,21 @@ msgstr "" msgid "The partner account used for this invoice." msgstr "" +#. module: account +#: help:account.tax.code,notprintable:0 +#: help:account.tax.code.template,notprintable:0 +msgid "" +"Check this box if you don't want any VAT related to this Tax Code to appear " +"on invoices" +msgstr "" + #. module: account #: field:account.account.type,sequence:0 #: field:account.invoice.tax,sequence:0 #: field:account.journal.column,sequence:0 #: field:account.model.line,sequence:0 #: field:account.payment.term.line,sequence:0 +#: field:account.sequence.fiscalyear,sequence_id:0 #: field:account.tax,sequence:0 #: field:account.tax.template,sequence:0 #: field:fiscalyear.seq,sequence_id:0 @@ -3867,6 +3981,11 @@ msgstr "" msgid "Define Fiscal Years and Select Charts of Account" msgstr "" +#. module: account +#: wizard_field:account.move.line.reconcile,addendum,period_id:0 +msgid "Write-Off Period" +msgstr "" + #. module: account #: selection:account.config.wizard,period:0 msgid "3 Months" @@ -3884,6 +4003,12 @@ msgid "" "Ledger, otherwise it will only print its balance." msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Global taxes defined, but are not in invoice lines !" +msgstr "" + #. module: account #: selection:account.config.wizard,period:0 #: field:report.hr.timesheet.invoice.journal,name:0 @@ -3896,9 +4021,10 @@ msgid "Account Subscription" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Cost Ledger -" +#: field:account.model.line,date_maturity:0 +#: field:account.move.line,date_maturity:0 +#: rml:account.overdue:0 +msgid "Maturity date" msgstr "" #. module: account @@ -3917,8 +4043,10 @@ msgid "Account Configure Wizard " msgstr "" #. module: account -#: wizard_button:account.wizard_paid_open,init,yes:0 -msgid "Yes" +#: field:account.config.wizard,date1:0 +#: field:account.fiscalyear,date_start:0 +#: field:account.subscription,date_start:0 +msgid "Start Date" msgstr "" #. module: account @@ -3938,6 +4066,11 @@ msgstr "" msgid "Draft Invoices" msgstr "" +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax_template +msgid "Fiscal Position Template Tax Mapping" +msgstr "" + #. module: account #: rml:account.invoice:0 msgid "Invoice Date" @@ -3946,15 +4079,13 @@ msgstr "" #. module: account #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format -msgid "The journal must have centralised counterpart" +msgid "The old fiscal year does not have any entry to reconcile!" msgstr "" #. module: account -#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format -msgid "" -"You can not modify a posted entry of this journal !\n" -"You should mark the journal to allow canceling entries." +msgid "The journal must have centralised counterpart" msgstr "" #. module: account @@ -3980,9 +4111,17 @@ msgid "Bad total !" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 -#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 -msgid "New Statement" +#: model:ir.module.module,description:account.module_meta_information +msgid "" +"Financial and accounting module that covers:\n" +" General accounting\n" +" Cost / Analytic accounting\n" +" Third party accounting\n" +" Taxes management\n" +" Budgets\n" +" Customer and Supplier Invoices\n" +" Bank statements\n" +" " msgstr "" #. module: account @@ -4038,25 +4177,20 @@ msgid "Movement" msgstr "" #. module: account -#: rml:account.general.journal:0 -msgid "General Journal -" +#: help:account.period,special:0 +msgid "These periods can overlap." msgstr "" #. module: account -#: help:product.category,property_account_income_categ:0 +#: help:product.template,property_account_expense:0 msgid "" -"This account will be used, instead of the default one, to value incoming " -"stock for the current product category" +"This account will be used instead of the default one to value outgoing stock " +"for the current product" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Balance:" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Customer account statement" +#: model:process.node,note:account.process_node_manually0 +msgid "Encode manually the statement" msgstr "" #. module: account @@ -4083,6 +4217,11 @@ msgstr "" msgid "." msgstr "" +#. module: account +#: field:account.analytic.account,quantity_max:0 +msgid "Maximum Quantity" +msgstr "" + #. module: account #: field:account.period,name:0 msgid "Period Name" @@ -4176,12 +4315,12 @@ msgstr "" #: field:account.move.line,credit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,cost:0 msgid "Credit" msgstr "" #. module: account -#: help:account.tax,child_depend:0 #: help:account.tax.template,child_depend:0 msgid "" "Indicate if the tax computation is based on the value computed for the " @@ -4195,9 +4334,9 @@ msgid "Refund Tax Account" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree9 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 -msgid "Unpaid Supplier Invoices" +#: field:account.tax.code,child_ids:0 +#: field:account.tax.code.template,child_ids:0 +msgid "Child Codes" msgstr "" #. module: account @@ -4216,11 +4355,6 @@ msgstr "" msgid "Taxed Amount" msgstr "" -#. module: account -#: field:account.subscription,date_start:0 -msgid "Starting date" -msgstr "" - #. module: account #: field:account.invoice.line,price_subtotal:0 msgid "Subtotal w/o tax" @@ -4265,12 +4399,6 @@ msgstr "" msgid "Payable Limit" msgstr "" -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 -#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 -msgid "Write-Off amount" -msgstr "" - #. module: account #: wizard_field:account.account.balance.report,checktype,state:0 #: wizard_field:account.general.ledger.report,checktype,state:0 @@ -4297,6 +4425,11 @@ msgstr "" msgid "Credit Trans." msgstr "" +#. module: account +#: field:wizard.multi.charts.accounts,seq_journal:0 +msgid "Separated Journal Sequences" +msgstr "" + #. module: account #: help:account.bank.statement.reconcile,total_second_currency:0 msgid "The currency of the journal" @@ -4372,6 +4505,14 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account +#: help:account.account.type,sign:0 +msgid "" +"Allows you to change the sign of the balance amount displayed in the " +"reports, so that you can see positive figures instead of negative ones in " +"expenses accounts." +msgstr "" + #. module: account #: help:account.config.wizard,code:0 msgid "Name of the fiscal year as displayed in reports." @@ -4405,7 +4546,7 @@ msgid "Type Controls" msgstr "" #. module: account -#: field:account.analytic.account,complete_name:0 +#: field:account.analytic.account,name:0 #: rml:account.analytic.account.analytic.check:0 #: rml:account.analytic.account.balance:0 #: rml:account.analytic.account.inverted.balance:0 @@ -4435,8 +4576,9 @@ msgid "Unpaid Customer Invoices" msgstr "" #. module: account -#: field:account.subscription,period_total:0 -msgid "Number of period" +#: model:ir.actions.act_window,name:account.action_invoice_tree2 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 +msgid "Supplier Invoices" msgstr "" #. module: account @@ -4456,6 +4598,11 @@ msgstr "" msgid ")" msgstr "" +#. module: account +#: field:res.partner,credit:0 +msgid "Total Receivable" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_period msgid "Account period" @@ -4472,10 +4619,8 @@ msgid "Canceled Invoice" msgstr "" #. module: account -#: field:account.model.line,date_maturity:0 -#: field:account.move.line,date_maturity:0 -#: rml:account.overdue:0 -msgid "Maturity date" +#: view:account.subscription:0 +msgid "Remove Lines" msgstr "" #. module: account @@ -4511,11 +4656,6 @@ msgstr "" msgid "Closing Balance" msgstr "" -#. module: account -#: rml:account.central.journal:0 -msgid "Central Journal-" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -4527,13 +4667,6 @@ msgstr "" msgid "Running Subscriptions" msgstr "" -#. module: account -#: help:res.partner,property_account_receivable:0 -msgid "" -"This account will be used, instead of the default one, as the receivable " -"account for the current partner" -msgstr "" - #. module: account #: selection:account.move,type:0 msgid "Bank Payment" @@ -4551,8 +4684,9 @@ msgid "Credit Notes" msgstr "" #. module: account -#: wizard_field:account.aged.trial.balance,init,period_length:0 -msgid "Period length (days)" +#: field:account.config.wizard,date2:0 +#: field:account.fiscalyear,date_stop:0 +msgid "End Date" msgstr "" #. module: account @@ -4583,14 +4717,17 @@ msgid "End of Year Treatments" msgstr "" #. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Tax Declaration" +#: help:account.tax,sequence:0 +msgid "" +"The sequence field is used to order the tax lines from the lowest sequences " +"to the higher ones. The order is important if you have a tax with several " +"tax children. In this case, the evaluation order is important." msgstr "" #. module: account -#: wizard_view:account.chart,init:0 -msgid "(If you do not select Fiscal year it will take all open fiscal year)" +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Declaration" msgstr "" #. module: account @@ -4599,9 +4736,8 @@ msgid "File statement" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Free Reference" +#: view:ir.sequence:0 +msgid "Fiscal Year Sequences" msgstr "" #. module: account @@ -4635,15 +4771,13 @@ msgid "Are you sure you want to open this invoice ?" msgstr "" #. module: account -#: help:account.tax,price_include:0 -msgid "" -"Check this is the price you use on the product and invoices is including " -"this tax." +#: view:res.partner:0 +msgid "Supplier Debit" msgstr "" #. module: account -#: view:res.partner:0 -msgid "Supplier Debit" +#: help:account.model.line,quantity:0 +msgid "The optional quantity on entries" msgstr "" #. module: account @@ -4674,15 +4808,24 @@ msgstr "" msgid "General Ledger -" msgstr "" +#. module: account +#: field:report.hr.timesheet.invoice.journal,quantity:0 +msgid "Quantities" +msgstr "" + #. module: account #: field:account.analytic.account,date_start:0 msgid "Date Start" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Can not create invoice move on centralised journal" +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: field:account.invoice,amount_total:0 +#: field:account.invoice,check_total:0 +msgid "Total" msgstr "" #. module: account @@ -4692,9 +4835,9 @@ msgid "Number of entries are generated" msgstr "" #. module: account -#: model:process.transition,name:account.process_transition_suppliervalidentries0 -#: model:process.transition,name:account.process_transition_validentries0 -msgid "Valid Entries" +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Can not pay draft/proforma/cancel invoice." msgstr "" #. module: account @@ -4710,8 +4853,11 @@ msgid "Allow Reconciliation" msgstr "" #. module: account -#: rml:account.analytic.account.journal:0 -msgid "Move name" +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Date" msgstr "" #. module: account @@ -4766,6 +4912,11 @@ msgstr "" msgid "You can not deactivate an account that contains account moves." msgstr "" +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Analytic Account Charts" +msgstr "" + #. module: account #: wizard_field:account.aged.trial.balance,init,result_selection:0 msgid "Filter on Partners" @@ -4782,6 +4933,12 @@ msgstr "" msgid "Analytic Entries by Journal" msgstr "" +#. module: account +#: model:process.transition,note:account.process_transition_suppliervalidentries0 +#: model:process.transition,note:account.process_transition_validentries0 +msgid "Valid entries from invoice" +msgstr "" + #. module: account #: field:account.account,company_id:0 #: wizard_field:account.account.balance.report,checktype,company_id:0 @@ -4838,8 +4995,14 @@ msgstr "" msgid "4" msgstr "" +#. module: account +#: help:res.partner,credit:0 +msgid "Total amount this customer owes you." +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_form +#: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear_form msgid "Fiscal Years" msgstr "" @@ -4865,6 +5028,23 @@ msgstr "" msgid "Icon" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_journal.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal - Period" @@ -4905,7 +5085,6 @@ msgstr "" #: field:account.bank.statement.line,ref:0 #: field:account.model.line,ref:0 #: field:account.move.line,ref:0 -#: field:account.subscription,ref:0 #: rml:account.third_party_ledger:0 msgid "Ref." msgstr "" @@ -4929,11 +5108,11 @@ msgid "" msgstr "" #. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Date" +#: help:account.journal,centralisation:0 +msgid "" +"Check this box to determine that each entry of this journal won't create a " +"new counterpart but will share the same counterpart. This is used in fiscal " +"year closing." msgstr "" #. module: account @@ -4981,13 +5160,17 @@ msgid "Bank Statement Line" msgstr "" #. module: account -#: field:account.config.wizard,date2:0 -msgid "Ending Date" +#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 +msgid "Control Invoice" msgstr "" #. module: account -#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 -msgid "Control Invoice" +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date not in a defined fiscal year" msgstr "" #. module: account @@ -4997,12 +5180,6 @@ msgstr "" msgid "Receivable" msgstr "" -#. module: account -#: help:account.invoice.tax,base_code_id:0 -#: help:account.invoice.tax,tax_code_id:0 -msgid "The case of the tax declaration." -msgstr "" - #. module: account #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.actions.wizard,name:account.wizard_account_balance_report @@ -5024,6 +5201,7 @@ msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_state_open.py:0 #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format msgid "Warning" @@ -5035,6 +5213,7 @@ msgid "VAT:" msgstr "" #. module: account +#: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 #: rml:account.central.journal:0 #: rml:account.general.journal:0 @@ -5042,27 +5221,21 @@ msgstr "" msgid "Total:" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#, python-format -msgid "No journal for ending writings have been defined for the fiscal year" -msgstr "" - #. module: account #: model:ir.model,name:account.model_account_analytic_journal msgid "account.analytic.journal" msgstr "" #. module: account -#: view:product.product:0 -msgid "Sale Taxes" +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,account_ids:0 +#: field:account.fiscal.position.template,account_ids:0 +msgid "Account Mapping" msgstr "" #. module: account -#: help:account.tax.template,include_base_amount:0 -msgid "" -"Indicate if the amount of tax must be included in the base amount for the " -"computation of the next taxes." +#: view:product.product:0 +msgid "Sale Taxes" msgstr "" #. module: account @@ -5087,6 +5260,7 @@ msgid "Parent Account Template" msgstr "" #. module: account +#: help:account.tax,domain:0 #: help:account.tax.template,domain:0 msgid "" "This field is only used if you develop your own module allowing developers " @@ -5099,11 +5273,6 @@ msgstr "" msgid "Payment amount" msgstr "" -#. module: account -#: help:account.model.line,quantity:0 -msgid "The optionnal quantity on entries" -msgstr "" - #. module: account #: view:account.analytic.account:0 msgid "Analytic account" @@ -5140,6 +5309,7 @@ msgstr "" #: field:account.move.line,debit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,revenue:0 msgid "Debit" msgstr "" @@ -5149,11 +5319,6 @@ msgstr "" msgid "All Months" msgstr "" -#. module: account -#: model:account.journal,name:account.bank_journal -msgid "x Bank Journal" -msgstr "" - #. module: account #: wizard_field:account.invoice.refund,init,date:0 msgid "Operation date" @@ -5165,9 +5330,8 @@ msgid "Invoice Lines" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree13 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 -msgid "Unpaid Supplier Refunds" +#: field:account.period,date_start:0 +msgid "Start of Period" msgstr "" #. module: account @@ -5192,8 +5356,14 @@ msgid "Tax Description" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "Code / Date" +#: help:account.invoice,move_id:0 +msgid "Link to the automatically generated account moves." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not use an inactive account!" msgstr "" #. module: account @@ -5207,8 +5377,6 @@ msgid "Reporting" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 #: rml:account.third_party_ledger:0 msgid "/" msgstr "" @@ -5240,8 +5408,9 @@ msgid "Configuration" msgstr "" #. module: account -#: field:account.config.wizard,date1:0 -msgid "Starting Date" +#: view:account.analytic.line:0 +#: view:account.invoice:0 +msgid "Total amount" msgstr "" #. module: account @@ -5354,8 +5523,8 @@ msgid "Account Tax Code Template" msgstr "" #. module: account -#: model:process.node,note:account.process_node_manually0 -msgid "Encode manually the statement" +#: view:account.subscription:0 +msgid "Subscription Periods" msgstr "" #. module: account @@ -5393,13 +5562,6 @@ msgstr "" msgid "Write-Off journal" msgstr "" -#. module: account -#: help:account.account,reconcile:0 -msgid "" -"Check this account if the user can make a reconciliation of the entries in " -"this account." -msgstr "" - #. module: account #: wizard_button:account.invoice.pay,init,writeoff_check:0 msgid "Full Payment" @@ -5463,8 +5625,10 @@ msgid "" msgstr "" #. module: account -#: model:ir.model,name:account.model_account_fiscal_position_account_template -msgid "Fiscal Position Template Accounts Mapping" +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "" +"Selected Move lines does not have any account move enties in draft state" msgstr "" #. module: account @@ -5478,8 +5642,8 @@ msgid "All account entries" msgstr "" #. module: account -#: selection:account.subscription,period_type:0 -msgid "year" +#: help:account.invoice.tax,tax_code_id:0 +msgid "The tax basis of the tax declaration." msgstr "" #. module: account @@ -5495,6 +5659,12 @@ msgstr "" msgid "Choose Journal and Payment Date" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You must define an analytic journal of type '%s' !" +msgstr "" + #. module: account #: selection:account.analytic.account,state:0 #: selection:account.bank.statement,state:0 @@ -5515,8 +5685,8 @@ msgid "Unpaid Customer Refunds" msgstr "" #. module: account -#: wizard_field:account.analytic.line,init,from_date:0 -msgid "From" +#: help:account.invoice,residual:0 +msgid "Remaining amount due." msgstr "" #. module: account @@ -5573,6 +5743,21 @@ msgstr "" msgid "Supplier Invoice Process" msgstr "" +#. module: account +#: rml:account.account.balance:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: rml:account.partner.balance:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +msgid "Page" +msgstr "" + #. module: account #: view:account.move:0 #: view:account.move.line:0 @@ -5593,7 +5778,6 @@ msgstr "" #. module: account #: rml:account.account.balance:0 #: rml:account.general.journal:0 -#: rml:account.overdue:0 msgid ":" msgstr "" @@ -5612,13 +5796,6 @@ msgstr "" msgid "and Journals" msgstr "" -#. module: account -#: help:account.account.template,reconcile:0 -msgid "" -"Check this option if the user can make a reconciliation of the entries in " -"this account." -msgstr "" - #. module: account #: view:account.bank.statement:0 #: view:account.bank.statement.reconcile:0 @@ -5631,6 +5808,11 @@ msgstr "" msgid "The income or expense account related to the selected product." msgstr "" +#. module: account +#: field:account.tax,type_tax_use:0 +msgid "Tax Application" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form #: model:ir.ui.menu,name:account.menu_action_subscription_form @@ -5643,12 +5825,6 @@ msgstr "" msgid "Closing of fiscal year cancelled, please check the box !" msgstr "" -#. module: account -#: view:account.analytic.line:0 -#: view:account.invoice:0 -msgid "Total amount" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree6 #: model:ir.ui.menu,name:account.menu_action_invoice_tree6 @@ -5656,8 +5832,8 @@ msgid "PRO-FORMA Customer Invoices" msgstr "" #. module: account -#: field:account.invoice,amount_untaxed:0 -msgid "Untaxed" +#: field:account.subscription,period_total:0 +msgid "Number of Periods" msgstr "" #. module: account @@ -5666,11 +5842,6 @@ msgstr "" msgid "Bad account !" msgstr "" -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "Total :" -msgstr "" - #. module: account #: code:addons/account/account.py:0 #: code:addons/account/account_move_line.py:0 @@ -5688,7 +5859,6 @@ msgstr "" #: wizard_field:account.analytic.account.journal.report,init,date2:0 #: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date2:0 #: wizard_field:account.automatic.reconcile,init,date2:0 -#: field:account.period,date_stop:0 msgid "End of period" msgstr "" @@ -5699,6 +5869,7 @@ msgid "Account Entry" msgstr "" #. module: account +#: rml:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" msgstr "" @@ -5727,11 +5898,6 @@ msgstr "" msgid "Taxes missing !" msgstr "" -#. module: account -#: help:account.invoice,partner_bank:0 -msgid "The bank account to pay to or to be paid from" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Refund" @@ -5770,8 +5936,15 @@ msgid "Bank Accounts" msgstr "" #. module: account -#: field:res.partner,credit:0 -msgid "Total Receivable" +#: constraint:account.period:0 +msgid "" +"Invalid period ! Some periods overlap or the date period is not in the scope " +"of the fiscal year. " +msgstr "" + +#. module: account +#: help:account.journal,invoice_sequence_id:0 +msgid "The sequence used for invoice numbers in this journal." msgstr "" #. module: account @@ -5792,8 +5965,8 @@ msgid "" msgstr "" #. module: account -#: model:ir.actions.report.xml,name:account.account_vat_declaration -msgid "Taxes Report" +#: constraint:account.fiscalyear:0 +msgid "Error ! The duration of the Fiscal Year is invalid. " msgstr "" #. module: account @@ -5829,11 +6002,6 @@ msgstr "" msgid "Closing of states cancelled, please check the box !" msgstr "" -#. module: account -#: help:account.config.wizard,name:0 -msgid "Name of the fiscal year as displayed on screens." -msgstr "" - #. module: account #: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger #: model:ir.actions.wizard,name:account.account_analytic_account_quantity_cost_ledger_report @@ -5862,6 +6030,7 @@ msgid "Total amount due:" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,to_date:0 #: wizard_field:account.analytic.line,init,to_date:0 msgid "To" msgstr "" @@ -5893,23 +6062,15 @@ msgid "Fiscal Year to close" msgstr "" #. module: account -#: help:product.template,property_account_expense:0 -msgid "" -"This account will be used, instead of the default one, to value outgoing " -"stock for the current product" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,date_from:0 -#: field:account.fiscalyear,date_start:0 -msgid "Start date" -msgstr "" - -#. module: account -#: wizard_view:account.print.journal.report,init:0 -#: model:ir.actions.wizard,name:account.wizard_print_journal -#: model:ir.ui.menu,name:account.menu_print_journal -msgid "Print Journal" +#: wizard_field:account.aged.trial.balance,init,date1:0 +#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 +#: wizard_field:account.analytic.account.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 +#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.journal.report,init,date1:0 +#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 +#: wizard_field:account.automatic.reconcile,init,date1:0 +msgid "Start of period" msgstr "" #. module: account @@ -5944,8 +6105,15 @@ msgid "Description" msgstr "" #. module: account -#: field:report.hr.timesheet.invoice.journal,quantity:0 -msgid "Quantities" +#: help:product.template,property_account_income:0 +msgid "" +"This account will be used instead of the default one to value incoming stock " +"for the current product" +msgstr "" + +#. module: account +#: field:account.tax,child_ids:0 +msgid "Child Tax Accounts" msgstr "" #. module: account @@ -5953,19 +6121,6 @@ msgstr "" msgid "Parent Right" msgstr "" -#. module: account -#: wizard_field:account.aged.trial.balance,init,date1:0 -#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 -#: wizard_field:account.analytic.account.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 -#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.journal.report,init,date1:0 -#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 -#: wizard_field:account.automatic.reconcile,init,date1:0 -#: field:account.period,date_start:0 -msgid "Start of period" -msgstr "" - #. module: account #: model:ir.ui.menu,name:account.account_account_menu msgid "Financial Accounts" @@ -5982,9 +6137,10 @@ msgid "Account Configure" msgstr "" #. module: account -#: model:process.transition,note:account.process_transition_suppliervalidentries0 -#: model:process.transition,note:account.process_transition_validentries0 -msgid "Valid entries from invoice" +#: help:res.partner,property_account_payable:0 +msgid "" +"This account will be used instead of the default one as the payable account " +"for the current partner" msgstr "" #. module: account @@ -5993,12 +6149,6 @@ msgstr "" msgid "Case Code" msgstr "" -#. module: account -#: field:account.tax.code,child_ids:0 -#: field:account.tax.code.template,child_ids:0 -msgid "Childs Codes" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "5" @@ -6047,12 +6197,6 @@ msgstr "" msgid "Customer" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft invoice." -msgstr "" - #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" @@ -6064,13 +6208,13 @@ msgid "Accounting Properties" msgstr "" #. module: account -#: wizard_field:account.print.journal.report,init,sort_selection:0 -msgid "Entries Sorted By" +#: model:ir.model,name:account.model_account_sequence_fiscalyear +msgid "account.sequence.fiscalyear" msgstr "" #. module: account -#: help:account.tax,name:0 -msgid "This name will be used to be displayed on reports" +#: wizard_field:account.print.journal.report,init,sort_selection:0 +msgid "Entries Sorted By" msgstr "" #. module: account @@ -6112,6 +6256,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 #: field:account.period,fiscalyear_id:0 +#: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" @@ -6163,30 +6308,22 @@ msgid "Python Code (reverse)" msgstr "" #. module: account -#: rml:account.account.balance:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: rml:account.partner.balance:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: rml:account.vat.declaration:0 -msgid "Page" +#: model:ir.module.module,shortdesc:account.module_meta_information +msgid "Accounting and financial management" msgstr "" #. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,account_ids:0 #: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,account_ids:0 msgid "Accounts Mapping" msgstr "" +#. module: account +#: help:product.category,property_account_expense_categ:0 +msgid "" +"This account will be used to value outgoing stock for the current product " +"category" +msgstr "" + #. module: account #: help:account.tax,base_sign:0 #: help:account.tax,ref_base_sign:0 @@ -6223,8 +6360,13 @@ msgid "General Debit" msgstr "" #. module: account -#: help:account.invoice,move_id:0 -msgid "Link to the automatically generated account moves." +#: field:account.analytic.account,code:0 +msgid "Account Code" +msgstr "" + +#. module: account +#: help:account.config.wizard,name:0 +msgid "Name of the fiscal year as displayed on screens." msgstr "" #. module: account @@ -6244,6 +6386,11 @@ msgstr "" msgid "Fiscal Positions" msgstr "" +#. module: account +#: model:process.process,name:account.process_process_statementprocess0 +msgid "Statement Process" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_bank_statement_reconcile msgid "Statement reconcile" @@ -6256,6 +6403,13 @@ msgstr "" msgid "Check this box" msgstr "" +#. module: account +#: help:account.tax,price_include:0 +msgid "" +"Check this if the price you use on the product and invoices includes this " +"tax." +msgstr "" + #. module: account #: field:account.journal.column,name:0 msgid "Column Name" @@ -6277,24 +6431,23 @@ msgid "Filters" msgstr "" #. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "at" +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#, python-format +msgid "You must enter a period length that cannot be 0 or below !" msgstr "" #. module: account -#: help:account.tax,applicable_type:0 +#: wizard_button:account.wizard_paid_open,init,yes:0 +msgid "Yes" +msgstr "" + +#. module: account +#: help:account.account,reconcile:0 msgid "" -"If not applicable (computed through a Python code), the tax do not appears " -"on the invoice." +"Check this if the user is allowed to reconcile entries in this account." msgstr "" #. module: account -#: model:process.process,name:account.process_process_statementprocess0 -msgid "Statement Process" -msgstr "" - -#. module: account -#: wizard_button:account.subscription.generate,init,generate:0 -msgid "Compute Entry Dates" +#: model:ir.actions.report.xml,name:account.account_overdue +msgid "Overdue Payments" msgstr "" diff --git a/addons/account/i18n/ko_KO.po b/addons/account/i18n/ko_KO.po new file mode 100644 index 00000000000..cd8b2dc223b --- /dev/null +++ b/addons/account/i18n/ko_KO.po @@ -0,0 +1,6453 @@ +# Korean translation for openobject-addons +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-05-01 11:33+0000\n" +"Last-Translator: ekodaq \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-05-19 13:28+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Integrity Error !" +msgstr "통합성 오류!" + +#. module: account +#: field:account.tax.template,description:0 +msgid "Internal Name" +msgstr "내부 명칭" + +#. module: account +#: view:account.tax.code:0 +msgid "Account Tax Code" +msgstr "계정 세금 코드" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree9 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 +msgid "Unpaid Supplier Invoices" +msgstr "미결제 공급자 인보이스" + +#. module: account +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 +#, python-format +msgid "No journal for ending writing has been defined for the fiscal year" +msgstr "당기에 정의된 마감 저널이 없음" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_entries +msgid "Entries Encoding" +msgstr "엔트리 인코딩" + +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement from draft" +msgstr "초안을 확정함" + +#. module: account +#: model:account.account.type,name:account.account_type_asset +msgid "Asset" +msgstr "자산" + +#. module: account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "액션 정의에서 유효하지 않은 모델 이름" + +#. module: account +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "" +"Specified Journal does not have any account move entries in draft state for " +"this period" +msgstr "이 기간에는 지정된 저널의 초안 상태 계정 이동 엔트리가 없습니다" + +#. module: account +#: wizard_view:account_use_models,init_form:0 +msgid "Select Message" +msgstr "메시지를 선택하세요" + +#. module: account +#: help:product.category,property_account_income_categ:0 +msgid "" +"This account will be used to value incoming stock for the current product " +"category" +msgstr "이 계정은 현재 상품 카테고리의 입고품 평가에 이용됩니다" + +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "세금 계정" + +#. module: account +#: wizard_view:account.automatic.reconcile,reconcile:0 +msgid "Reconciliation result" +msgstr "재조정 결과" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled +msgid "Unreconciled entries" +msgstr "조정되지 않은 엔트리" + +#. module: account +#: field:account.invoice.tax,base_code_id:0 +#: field:account.tax,base_code_id:0 +#: field:account.tax.template,base_code_id:0 +msgid "Base Code" +msgstr "베이스 코드" + +#. module: account +#: view:account.account:0 +msgid "Account Statistics" +msgstr "계정 통계" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_vat_declaration +#: model:ir.ui.menu,name:account.menu_wizard_vat_declaration +msgid "Print Taxes Report" +msgstr "세금 리포트 출력" + +#. module: account +#: field:account.account,parent_id:0 +msgid "Parent" +msgstr "부모" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Account move line \"%s\" is not valid" +msgstr "계정이동 라인 \"%s\"은 유효하지 않습니다" + +#. module: account +#: field:account.invoice,residual:0 +msgid "Residual" +msgstr "" + +#. module: account +#: field:account.tax,base_sign:0 +#: field:account.tax,ref_base_sign:0 +#: field:account.tax.template,base_sign:0 +#: field:account.tax.template,ref_base_sign:0 +msgid "Base Code Sign" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_unreconcile_select +#: model:ir.ui.menu,name:account.menu_unreconcile_select +msgid "Unreconcile entries" +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "Error ! The duration of the Period(s) is/are invalid. " +msgstr "" + +#. module: account +#: view:account.bank.statement.reconcile:0 +#: field:account.bank.statement.reconcile,line_ids:0 +#: field:account.move,line_id:0 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open +#: model:ir.actions.act_window,name:account.action_move_line_form +#: model:ir.ui.menu,name:account.menu_action_move_line_form +msgid "Entries" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Debit Centralisation" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_invoice_state_confirm +msgid "Confirm draft invoices" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days2:0 +msgid "" +"Day of the month, set -1 for the last day of the current month. If it's " +"positive, it gives the day of the next month. Set 0 for net days (otherwise " +"it's based on the beginning of the month)." +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account +#: field:account.config.wizard,charts:0 +msgid "Charts of Account" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_move_line_select +msgid "Move line select" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Keep empty to use the expense account" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"You can not modify a posted entry of this journal !\n" +"You should set the journal to allow cancelling entries if you want to do " +"that." +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +msgid "Entry label" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_model_line +msgid "Account Model Entries" +msgstr "" + +#. module: account +#: field:account.tax.code,sum_period:0 +msgid "Period Sum" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Compute Code (if type=code)" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You have to provide an account for the write off entry !" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account +#: wizard_view:account.aged.trial.balance,init:0 +msgid "Aged Trial Balance" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries +msgid "Recurrent Entries" +msgstr "" + +#. module: account +#: field:account.analytic.line,amount:0 +#: field:account.bank.statement.line,amount:0 +#: field:account.bank.statement.reconcile.line,amount:0 +#: rml:account.invoice:0 +#: field:account.invoice.tax,amount:0 +#: field:account.move,amount:0 +#: field:account.tax,amount:0 +#: field:account.tax.template,amount:0 +#: xsl:account.transfer:0 +msgid "Amount" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger +#: model:ir.actions.wizard,name:account.wizard_third_party_ledger +#: model:ir.ui.menu,name:account.menu_third_party_ledger +msgid "Partner Ledger" +msgstr "" + +#. module: account +#: field:product.template,supplier_taxes_id:0 +msgid "Supplier Taxes" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Accounting Entries-" +msgstr "" + +#. module: account +#: help:account.journal,view_id:0 +msgid "" +"Gives the view used when writing or browsing entries in this journal. The " +"view tell Open ERP which fields should be visible, required or readonly and " +"in which order. You can create your own view for a faster encoding in each " +"journal." +msgstr "" + +#. module: account +#: help:account.invoice,payment_term:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment. The payment term may compute several " +"due dates, for example 50% now, 50% in one month." +msgstr "" + +#. module: account +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +msgid "Fixed" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not delete posted movement: \"%s\"!" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.analytic.account.analytic.check.report,init:0 +#: wizard_view:account.analytic.account.balance.report,init:0 +#: wizard_view:account.analytic.account.cost_ledger.report,init:0 +#: wizard_view:account.analytic.account.inverted.balance.report,init:0 +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +#: wizard_view:account.vat.declaration,init:0 +msgid "Select period" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "" +"Please verify the price of the invoice !\n" +"The real total does not match the computed total." +msgstr "" + +#. module: account +#: field:account.invoice,origin:0 +#: field:account.invoice.line,origin:0 +msgid "Origin" +msgstr "" + +#. module: account +#: field:account.account,reconcile:0 +#: wizard_button:account.automatic.reconcile,init,reconcile:0 +#: field:account.bank.statement.line,reconcile_id:0 +#: view:account.bank.statement.reconcile:0 +#: field:account.bank.statement.reconcile.line,line_id:0 +#: field:account.move.line,reconcile_id:0 +#: wizard_button:account.move.line.reconcile,addendum,reconcile:0 +#: wizard_button:account.move.line.reconcile,init_full,reconcile:0 +msgid "Reconcile" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Reference" +msgstr "" + +#. module: account +#: wizard_view:account.subscription.generate,init:0 +msgid "Subscription Compute" +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Account Num." +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Delta Debit" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_receivable:0 +msgid "Receivable Account" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "No analytic journal !" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Debit Trans." +msgstr "" + +#. module: account +#: field:account.analytic.line,account_id:0 +#: field:account.invoice.line,account_analytic_id:0 +#: field:account.move.line,analytic_account_id:0 +#: field:report.hr.timesheet.invoice.journal,account_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account +#: field:account.tax,child_depend:0 +#: field:account.tax.template,child_depend:0 +msgid "Tax on Children" +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +#: rml:account.general.journal:0 +#: field:account.journal,name:0 +msgid "Journal Name" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "No period found !" +msgstr "" + +#. module: account +#: view:account.payment.term:0 +msgid "Description on invoices" +msgstr "" + +#. module: account +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "" + +#. module: account +#: field:account.bank.statement.reconcile,total_entry:0 +msgid "Total entries" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_src_id:0 +#: field:account.fiscal.position.account.template,account_src_id:0 +msgid "Account Source" +msgstr "" + +#. module: account +#: field:account.journal,update_posted:0 +msgid "Allow Cancelling Entries" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_paymentorderbank0 +#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 +msgid "Payment Reconcilation" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Can not %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: model:account.journal,name:account.expenses_journal +msgid "Journal de frais" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal +msgid "All Analytic Entries" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Date:" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Disc. (%)" +msgstr "" + +#. module: account +#: selection:account.account.type,sign:0 +msgid "Negative" +msgstr "" + +#. module: account +#: field:account.analytic.line,move_id:0 +msgid "Move Line" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "" +"Would your payment have been carried out after this mail was sent, please " +"consider the present one as void. Do not hesitate to contact our accounting " +"departement at +32 81 81 37 00." +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Contra" +msgstr "" + +#. module: account +#: field:account.analytic.account,state:0 +#: field:account.bank.statement,state:0 +#: field:account.invoice,state:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:account.subscription:0 +msgid "State" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree13 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 +msgid "Unpaid Supplier Refunds" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Special Computation" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement with/without reconciliation from draft statement" +msgstr "" + +#. module: account +#: wizard_view:account.move.bank.reconcile,init:0 +#: model:ir.actions.wizard,name:account.action_account_bank_reconcile_tree +#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_check_tree +msgid "Bank reconciliation" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +#: field:account.model,ref:0 +#: field:account.move,ref:0 +#: rml:account.overdue:0 +#: field:account.subscription,ref:0 +msgid "Ref" +msgstr "" + +#. module: account +#: field:account.tax.template,type_tax_use:0 +msgid "Tax Use In" +msgstr "" + +#. module: account +#: help:account.tax.template,include_base_amount:0 +msgid "" +"Set if the amount of tax must be included in the base amount before " +"computing the next taxes." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing +msgid "Periodical Processing" +msgstr "" + +#. module: account +#: view:report.hr.timesheet.invoice.journal:0 +msgid "Analytic Entries Stats" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form +msgid "Tax Code Templates" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Supplier invoice" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_reconcilepaid0 +#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 +msgid "Reconcile Paid" +msgstr "" + +#. module: account +#: wizard_field:account.chart,init,target_move:0 +msgid "Target Moves" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form +msgid "Tax Templates" +msgstr "" + +#. module: account +#: field:account.invoice,reconciled:0 +msgid "Paid/Reconciled" +msgstr "" + +#. module: account +#: field:account.account.type,close_method:0 +msgid "Deferral Method" +msgstr "" + +#. module: account +#: field:account.tax.template,include_base_amount:0 +msgid "Include in Base Amount" +msgstr "" + +#. module: account +#: field:account.tax,ref_base_code_id:0 +#: field:account.tax.template,ref_base_code_id:0 +msgid "Refund Base Code" +msgstr "" + +#. module: account +#: view:account.invoice.line:0 +msgid "Line" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "J.C. or Move name" +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +#: selection:account.tax.template,applicable_type:0 +msgid "True" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days:0 +msgid "" +"Number of days to add before computation of the day of month.If Date=15/01, " +"Number of Days=22, Day of Month=-1, then the due date is 28/02." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax +msgid "account.tax" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Bank Journal " +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Printing Date" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "Mvt" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not use this general account in this journal !" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_aged_trial_balance +#: model:ir.ui.menu,name:account.menu_aged_trial_balance +msgid "Aged Partner Balance" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Entry Controls" +msgstr "" + +#. module: account +#: help:account.model.line,sequence:0 +msgid "" +"The sequence field is used to order the resources from lower sequences to " +"higher ones" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +#: wizard_view:account.analytic.line,init:0 +msgid "(Keep empty to open the current situation)" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account +msgid "Fiscal Position Accounts Mapping" +msgstr "" + +#. module: account +#: field:account.analytic.account,contact_id:0 +msgid "Contact" +msgstr "" + +#. module: account +#: selection:account.model.line,date:0 +#: selection:account.model.line,date_maturity:0 +msgid "Partner Payment Term" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Account Entry Reconcile" +msgstr "" + +#. module: account +#: wizard_button:account.move.bank.reconcile,init,open:0 +msgid "Open for bank reconciliation" +msgstr "" + +#. module: account +#: field:account.invoice.line,discount:0 +msgid "Discount (%)" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not add/modify entries in a closed journal." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "" +"You can not do this modification on a reconciled entry ! Please note that " +"you can just change some non important fields !" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 +#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 +msgid "Write-Off amount" +msgstr "" + +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_analytic_accounting +msgid "Analytic Accounting" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + +#. module: account +#: field:account.analytic.account,line_ids:0 +#: view:account.analytic.line:0 +#: code:addons/account/project/wizard/wizard_account_analytic_line.py:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_line_form +#: model:ir.ui.menu,name:account.next_id_41 +#, python-format +msgid "Analytic Entries" +msgstr "" + +#. module: account +#: field:account.analytic.line,user_id:0 +#: field:account.journal,user_id:0 +msgid "User" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form +msgid "account.analytic.line.extended" +msgstr "" + +#. module: account +#: field:account.analytic.account,partner_id:0 +msgid "Associated Partner" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You must first select a partner !" +msgstr "" + +#. module: account +#: field:account.invoice,comment:0 +msgid "Additional Information" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Select the Period for Analysis" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_sign:0 +#: field:account.tax,tax_sign:0 +#: field:account.tax.template,ref_tax_sign:0 +#: field:account.tax.template,tax_sign:0 +msgid "Tax Code Sign" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Journal Voucher" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "St." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_line_open +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" +msgstr "" + +#. module: account +#: field:account.tax.code,sign:0 +#: field:account.tax.code.template,sign:0 +msgid "Sign for parent" +msgstr "" + +#. module: account +#: field:account.fiscalyear,end_journal_period_id:0 +msgid "End of Year Entries Journal" +msgstr "" + +#. module: account +#: view:product.product:0 +#: view:product.template:0 +msgid "Purchase Properties" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paymententries0 +msgid "Can be draft or validated" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.pay,init,reconcile:0 +msgid "Partial Payment" +msgstr "" + +#. module: account +#: wizard_view:account_use_models,create:0 +msgid "Move Lines Created." +msgstr "" + +#. module: account +#: field:account.fiscalyear,state:0 +#: field:account.journal.period,state:0 +#: field:account.move,state:0 +#: field:account.move.line,state:0 +#: field:account.period,state:0 +#: field:account.subscription,state:0 +msgid "Status" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Period to" +msgstr "" + +#. module: account +#: field:account.account.type,partner_account:0 +msgid "Partner account" +msgstr "" + +#. module: account +#: wizard_view:account.subscription.generate,init:0 +msgid "Generate entries before:" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger +#: model:ir.actions.wizard,name:account.account_analytic_account_cost_ledger_report +msgid "Cost Ledger" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "(Keep empty for all open fiscal years)" +msgstr "" + +#. module: account +#: field:account.invoice,move_lines:0 +msgid "Move Lines" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The opening journal must not have any entry in the new fiscal year !" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_config_wizard +msgid "account.config.wizard" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree +#: model:ir.ui.menu,name:account.report_account_analytic_journal_print +msgid "Account cost and revenue by journal" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "6" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_30 +msgid "Bank Reconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_account_template +msgid "Templates for Accounts" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_form +#: model:ir.model,name:account.model_account_analytic_account +#: model:ir.ui.menu,name:account.account_analytic_def_account +msgid "Analytic Accounts" +msgstr "" + +#. module: account +#: wizard_view:account.print.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_print_journal +#: model:ir.ui.menu,name:account.menu_print_journal +msgid "Print Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_accounts_wizard +msgid "account.bank.accounts.wizard" +msgstr "" + +#. module: account +#: field:account.move.line,date_created:0 +#: field:account.move.reconcile,create_date:0 +msgid "Creation date" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.refund,init,cancel_invoice:0 +msgid "Cancel Invoice" +msgstr "" + +#. module: account +#: field:account.journal.column,required:0 +msgid "Required" +msgstr "" + +#. module: account +#: field:product.category,property_account_expense_categ:0 +#: field:product.template,property_account_expense:0 +msgid "Expense Account" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 +msgid "Write-Off Journal" +msgstr "" + +#. module: account +#: field:account.model.line,amount_currency:0 +#: field:account.move.line,amount_currency:0 +msgid "Amount Currency" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense_categ:0 +msgid "Expense Category Account" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,fy2_id:0 +msgid "New Fiscal Year" +msgstr "" + +#. module: account +#: help:account.tax,tax_group:0 +msgid "" +"If a default tax is given in the partner it only overrides taxes from " +"accounts (or products) in the same group." +msgstr "" + +#. module: account +#: wizard_field:account.open_closed_fiscalyear,init,fyear_id:0 +msgid "Fiscal Year to Open" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Select Chart of Accounts" +msgstr "" + +#. module: account +#: field:account.analytic.account,quantity:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: field:account.analytic.line,unit_amount:0 +#: rml:account.invoice:0 +#: field:account.invoice.line,quantity:0 +#: field:account.model.line,quantity:0 +#: field:account.move.line,quantity:0 +msgid "Quantity" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Printing Date :" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,date_to:0 +#: wizard_field:account.general.ledger.report,checktype,date_to:0 +#: wizard_field:account.partner.balance.report,init,date2:0 +#: wizard_field:account.third_party_ledger.report,init,date2:0 +msgid "End date" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_amount:0 +msgid "Base Code Amount" +msgstr "" + +#. module: account +#: help:account.journal,user_id:0 +msgid "The user responsible for this journal" +msgstr "" + +#. module: account +#: field:account.journal,default_debit_account_id:0 +msgid "Default Debit Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree +#: model:ir.ui.menu,name:account.menu_bank_statement_tree +msgid "Entries by Statements" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_analyticinvoice0 +msgid "analytic Invoice" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,period_id:0 +#: field:account.bank.statement,period_id:0 +#: wizard_field:account.central.journal.report,init,period_id:0 +#: view:account.fiscalyear:0 +#: rml:account.general.journal:0 +#: wizard_field:account.general.journal.report,init,period_id:0 +#: wizard_field:account.invoice.pay,init,period_id:0 +#: field:account.journal.period,period_id:0 +#: field:account.move,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 +#: field:account.move.line,period_id:0 +#: wizard_field:account.move.validate,init,period_id:0 +#: view:account.period:0 +#: wizard_field:account.print.journal.report,init,period_id:0 +#: field:account.subscription,period_nbr:0 +msgid "Period" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Grand total" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_accounting +msgid "Financial Accounting" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Net Total:" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,name:0 +#: field:account.fiscal.position.account,position_id:0 +#: field:account.fiscal.position.account.template,position_id:0 +#: field:account.fiscal.position.tax,position_id:0 +#: field:account.fiscal.position.tax.template,position_id:0 +#: view:account.fiscal.position.template:0 +#: field:account.invoice,fiscal_position:0 +#: model:ir.model,name:account.model_account_fiscal_position +#: field:res.partner,property_account_position:0 +msgid "Fiscal Position" +msgstr "" + +#. module: account +#: field:account.analytic.line,product_uom_id:0 +#: field:account.move.line,product_uom_id:0 +msgid "UoM" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,page_split:0 +msgid "One Partner Per Page" +msgstr "" + +#. module: account +#: field:account.account,child_parent_ids:0 +#: field:account.account.template,child_parent_ids:0 +msgid "Children" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax +msgid "Fiscal Position Taxes Mapping" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree2_new +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2_new +msgid "New Supplier Invoice" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#, python-format +msgid "You must select accounts to reconcile" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,init,amount:0 +msgid "Amount paid" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: model:process.transition,name:account.process_transition_customerinvoice0 +#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 +msgid "Customer Invoice" +msgstr "" + +#. module: account +#: wizard_view:account.open_closed_fiscalyear,init:0 +msgid "Choose Fiscal Year" +msgstr "" + +#. module: account +#: field:account.sequence.fiscalyear,sequence_main_id:0 +msgid "Main Sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree +#: model:ir.ui.menu,name:account.account_analytic_journal_print +msgid "Print Analytic Journals" +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + +#. module: account +#: help:account.payment.term.line,sequence:0 +msgid "" +"The sequence field is used to order the payment term lines from the lowest " +"sequences to the higher ones" +msgstr "" + +#. module: account +#: field:account.bank.statement.reconcile,total_new:0 +msgid "Total write-off" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code for Taxes included prices" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not validate a non-balanced entry !" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +#: model:ir.actions.act_window,name:account.action_tax_code_list +#: model:ir.ui.menu,name:account.menu_action_tax_code_list +msgid "Tax codes" +msgstr "" + +#. module: account +#: field:account.fiscal.position.template,chart_template_id:0 +#: field:account.tax.template,chart_template_id:0 +#: field:wizard.multi.charts.accounts,chart_template_id:0 +msgid "Chart Template" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_categ:0 +msgid "Income Category Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.analytic_account_form +#: model:ir.ui.menu,name:account.account_analytic_form +msgid "New Analytic Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template +msgid "Fiscal Position Templates" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: field:account.invoice.line,price_unit:0 +msgid "Unit Price" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.action_move_journal_line_form_select +msgid "Standard entry" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" + +#. module: account +#: model:account.journal,name:account.sales_journal +msgid "Journal de vente" +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +#: field:account.fiscal.position.template,name:0 +msgid "Fiscal Position Template" +msgstr "" + +#. module: account +#: field:account.payment.term,line_ids:0 +msgid "Terms" +msgstr "" + +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Report" +msgstr "" + +#. module: account +#: wizard_button:account.analytic.account.chart,init,open:0 +#: wizard_button:account.chart,init,open:0 +msgid "Open Charts" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close.state,init:0 +msgid "Are you sure you want to close the fiscal year ?" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Bank Receipt" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Bank account" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_template_ids:0 +msgid "Tax Template List" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoiceimport0 +msgid "Invoice import" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Tel. :" +msgstr "" + +#. module: account +#: help:account.account,currency_mode:0 +msgid "" +"This will select how the current currency rate for outgoing transactions is " +"computed. In most countries the legal method is \"average\" but only a few " +"software systems are able to manage this. So if you import from another " +"software system you may have to use the rate at date. Incoming transactions " +"always use the rate at date." +msgstr "" + +#. module: account +#: field:account.account,company_currency_id:0 +msgid "Company Currency" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account_template +msgid "Fiscal Position Template Account Mapping" +msgstr "" + +#. module: account +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.reconcile,init_partial,addendum:0 +msgid "Reconcile With Write-Off" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "" +"The expected balance (%.2f) is different than the computed one. (%.2f)" +msgstr "" + +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + +#. module: account +#: help:wizard.multi.charts.accounts,code_digits:0 +msgid "No. of Digits to use for account code" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_end_real:0 +msgid "Ending Balance" +msgstr "" + +#. module: account +#: view:product.product:0 +msgid "Purchase Taxes" +msgstr "" + +#. module: account +#: field:account.payment.term.line,name:0 +msgid "Line Name" +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +msgid "Fixed Amount" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Analytic Credit" +msgstr "" + +#. module: account +#: field:account.move.line,reconcile_partial_id:0 +#: wizard_button:account.move.line.reconcile,init_partial,partial:0 +msgid "Partial Reconcile" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,reconcile,unreconciled:0 +msgid "Not reconciled transactions" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,tax_ids:0 +#: field:account.fiscal.position.template,tax_ids:0 +msgid "Tax Mapping" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Continue" +msgstr "" + +#. module: account +#: field:account.payment.term.line,value:0 +msgid "Value" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,addendum,writeoff_acc_id:0 +#: wizard_field:account.move.line.reconcile,addendum,writeoff_acc_id:0 +msgid "Write-Off account" +msgstr "" + +#. module: account +#: field:account.model.line,model_id:0 +#: field:account.subscription,model_id:0 +msgid "Model" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close_state +#: model:ir.ui.menu,name:account.menu_wizard_fy_close_state +msgid "Close a Fiscal Year" +msgstr "" + +#. module: account +#: field:account.journal,centralisation:0 +msgid "Centralised counterpart" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaymentorder0 +msgid "Select invoices you want to pay and manages advances" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: model:account.account.type,name:account.account_type_root +#: selection:account.analytic.account,type:0 +#: field:account.journal,view_id:0 +msgid "View" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,display_account:0 +#: selection:account.general.ledger.report,checktype,display_account:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "All" +msgstr "" + +#. module: account +#: field:account.move.line,analytic_lines:0 +#: model:ir.model,name:account.model_account_analytic_line +msgid "Analytic lines" +msgstr "" + +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "" +"The amount expressed in an optionnal other currency if it is a multi-" +"currency entry." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "" +"You can not do this modification on a confirmed entry ! Please note that you " +"can just change some non important fields !" +msgstr "" + +#. module: account +#: wizard_view:account.move.line.unreconcile,init:0 +#: wizard_view:account.reconcile.unreconcile,init:0 +msgid "" +"If you unreconciliate transactions, you must also verify all the actions " +"that are linked to those transactions because they will not be disable" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_electronicfile0 +msgid "Electronic File" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Customer Credit" +msgstr "" + +#. module: account +#: field:account.invoice,tax_line:0 +msgid "Tax Lines" +msgstr "" + +#. module: account +#: field:ir.sequence,fiscal_ids:0 +msgid "Sequences" +msgstr "" + +#. module: account +#: wizard_button:account.subscription.generate,init,generate:0 +msgid "Compute Entry Dates" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot create invoice move on centralised journal" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,journal_id:0 +#: field:account.bank.statement,journal_id:0 +#: wizard_field:account.central.journal.report,init,journal_id:0 +#: wizard_field:account.general.journal.report,init,journal_id:0 +#: field:account.invoice,journal_id:0 +#: field:account.journal.period,journal_id:0 +#: field:account.model,journal_id:0 +#: field:account.move,journal_id:0 +#: wizard_field:account.move.bank.reconcile,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 +#: field:account.move.line,journal_id:0 +#: wizard_field:account.move.validate,init,journal_id:0 +#: wizard_field:account.print.journal.report,init,journal_id:0 +#: field:fiscalyear.seq,journal_id:0 +#: model:ir.actions.report.xml,name:account.account_journal +#: model:ir.model,name:account.model_account_journal +#: wizard_field:populate_statement_from_inv,init,journal_id:0 +#: field:report.hr.timesheet.invoice.journal,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account +#: field:account.account,child_id:0 +#: field:account.analytic.account,child_ids:0 +msgid "Child Accounts" +msgstr "" + +#. module: account +#: field:account.account,check_history:0 +msgid "Display History" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,date1:0 +msgid " Start date" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,display_account:0 +#: wizard_field:account.general.ledger.report,checktype,display_account:0 +msgid "Display accounts " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement_reconcile_line +msgid "Statement reconcile line" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Keep empty to use the income account" +msgstr "" + +#. module: account +#: view:account.bank.statement.reconcile:0 +#: field:account.bank.statement.reconcile,line_new_ids:0 +#: wizard_view:account.move.line.reconcile,init_full:0 +#: wizard_view:account.move.line.reconcile,init_partial:0 +msgid "Write-Off" +msgstr "" + +#. module: account +#: help:account.invoice,partner_bank:0 +msgid "" +"The partner bank account to pay\n" +"Keep empty to use the default" +msgstr "" + +#. module: account +#: field:res.partner,debit:0 +msgid "Total Payable" +msgstr "" + +#. module: account +#: wizard_button:account.fiscalyear.close.state,init,close:0 +msgid "Close states" +msgstr "" + +#. module: account +#: wizard_view:account_use_models,create:0 +msgid "Use Model" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Crédit" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_income +msgid "Income" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +msgid "Supplier" +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_amount:0 +msgid "Tax Code Amount" +msgstr "" + +#. module: account +#: selection:account.account.type,sign:0 +msgid "Positive" +msgstr "" + +#. module: account +#: wizard_view:account.general.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_general_journal +#: model:ir.ui.menu,name:account.menu_general_journal +msgid "Print General Journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_chart_template_form +#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form +msgid "Chart of Accounts Templates" +msgstr "" + +#. module: account +#: field:account.invoice,move_id:0 +msgid "Invoice Movement" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_wizard_multi_chart +#: model:ir.ui.menu,name:account.menu_wizard +#: view:wizard.multi.charts.accounts:0 +msgid "Generate Chart of Accounts from a Chart Template" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "The statement balance is incorrect !\n" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_legal_statement +msgid "Legal Statements" +msgstr "" + +#. module: account +#: field:account.tax.code,parent_id:0 +#: field:account.tax.code.template,parent_id:0 +msgid "Parent Code" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.reconcile.select,init,open:0 +msgid "Open for reconciliation" +msgstr "" + +#. module: account +#: model:account.journal,name:account.bilan_journal +msgid "Journal d'ouverture" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Purchase Journal" +msgstr "" + +#. module: account +#: selection:account.tax,tax_group:0 +#: selection:account.tax.template,tax_group:0 +msgid "VAT" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Account n°" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Free Reference" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,account_ids:0 +msgid "Account to reconcile" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: field:account.model.line,partner_id:0 +#: field:account.move.line,partner_id:0 +msgid "Partner Ref." +msgstr "" + +#. module: account +#: selection:account.partner.balance.report,init,result_selection:0 +#: selection:account.third_party_ledger.report,init,result_selection:0 +msgid "Receivable and Payable Accounts" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: field:account.subscription,lines_id:0 +msgid "Subscription Lines" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Purchase" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Total quantity" +msgstr "" + +#. module: account +#: field:account.invoice,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: account +#: wizard_view:account.period.close,init:0 +#: wizard_button:account.period.close,init,close:0 +msgid "Close Period" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Due" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "Third party" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Type Allowed (empty for no control)" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_start:0 +msgid "Starting Balance" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "No Partner Defined !" +msgstr "" + +#. module: account +#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,journal:0 +#: view:account.journal.period:0 +#: model:ir.actions.act_window,name:account.action_account_journal_period_tree +#: model:ir.ui.menu,name:account.menu_action_account_journal_period_tree +msgid "Journals" +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Max Qty:" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.refund,init,refund:0 +msgid "Refund Invoice" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_period_tree +#: model:ir.actions.wizard,name:account.wizard_period_close +#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree +msgid "Close a Period" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_2_report_hr_timesheet_invoice_journal +msgid "Costs & Revenues" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "Error ! You can not create recursive accounts." +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Account Number" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Skip" +msgstr "" + +#. module: account +#: field:account.invoice,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: account +#: help:account.account.type,sequence:0 +msgid "Gives the sequence order when displaying a list of account types." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Re-Open" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close,init:0 +msgid "Are you sure you want to create entries?" +msgstr "" + +#. module: account +#: field:account.tax,include_base_amount:0 +msgid "Include in base amount" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Delta Credit" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile_unreconcile +#: model:ir.actions.wizard,name:account.wizard_unreconcile +msgid "Unreconcile Entries" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierdraftinvoices0 +msgid "Pre-generated invoice from control" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Valid Entries" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "Cost Legder for period" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 +#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 +msgid "New Statement" +msgstr "" + +#. module: account +#: wizard_field:account.analytic.account.chart,init,from_date:0 +#: wizard_field:account.analytic.line,init,from_date:0 +msgid "From" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_reconciliation0 +#: model:process.node,note:account.process_node_supplierreconciliation0 +msgid "Reconciliation of entries from invoice(s) and payment(s)" +msgstr "" + +#. module: account +#: wizard_view:account.central.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_central_journal +#: model:ir.ui.menu,name:account.menu_central_journal +msgid "Print Central Journal" +msgstr "" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,period_length:0 +msgid "Period length (days)" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: field:account.invoice,amount_tax:0 +#: field:account.move.line,account_tax_id:0 +msgid "Tax" +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +msgid "Percent" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_charts +msgid "Charts" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Sale" +msgstr "" + +#. module: account +#: wizard_button:account.account.balance.report,account_selection,checktype:0 +#: wizard_button:account.general.ledger.report,account_selection,checktype:0 +msgid "Next" +msgstr "" + +#. module: account +#: help:res.partner,property_account_position:0 +msgid "" +"The fiscal position will determine taxes and the accounts used for the the " +"partner." +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +msgid "Date or Code" +msgstr "" + +#. module: account +#: field:account.analytic.account,user_id:0 +msgid "Account Manager" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entries are not of the same account or already reconciled ! " +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,debit:0 +#: wizard_field:account.move.line.reconcile,init_partial,debit:0 +msgid "Debit amount" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "year" +msgstr "" + +#. module: account +#: wizard_button:account.account.balance.report,checktype,report:0 +#: wizard_button:account.analytic.account.analytic.check.report,init,report:0 +#: wizard_button:account.analytic.account.balance.report,init,report:0 +#: wizard_button:account.analytic.account.cost_ledger.report,init,report:0 +#: wizard_button:account.analytic.account.inverted.balance.report,init,report:0 +#: wizard_button:account.analytic.account.journal.report,init,report:0 +#: wizard_button:account.analytic.account.quantity_cost_ledger.report,init,report:0 +#: wizard_button:account.central.journal.report,init,print:0 +#: wizard_button:account.general.journal.report,init,print:0 +#: wizard_button:account.general.ledger.report,checktype,checkreport:0 +#: wizard_button:account.partner.balance.report,init,report:0 +#: wizard_button:account.print.journal.report,init,print:0 +#: wizard_button:account.third_party_ledger.report,init,report:0 +msgid "Print" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,date_from:0 +msgid "Start date" +msgstr "" + +#. module: account +#: model:account.journal,name:account.refund_expenses_journal +msgid "x Expenses Credit Notes Journal" +msgstr "" + +#. module: account +#: field:account.analytic.journal,type:0 +#: field:account.bank.statement.line,type:0 +#: field:account.invoice,type:0 +#: field:account.journal,type:0 +#: field:account.move,type:0 +#: field:account.move.reconcile,type:0 +#: xsl:account.transfer:0 +msgid "Type" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Allowed (empty for no control)" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Untaxed amount" +msgstr "" + +#. module: account +#: field:account.tax,account_collected_id:0 +#: field:account.tax.template,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Analytic Lines" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.pay,init:0 +#: model:ir.actions.wizard,name:account.wizard_invoice_pay +msgid "Pay invoice" +msgstr "" + +#. module: account +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree5 +#: model:ir.ui.menu,name:account.menu_invoice_draft +msgid "Draft Customer Invoices" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription_line +msgid "Account Subscription Line" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "No Filter" +msgstr "" + +#. module: account +#: field:account.payment.term.line,days:0 +msgid "Number of Days" +msgstr "" + +#. module: account +#: help:account.invoice,reference:0 +msgid "The partner reference of this invoice." +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Cannot delete invoice(s) that are already opened or paid !" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,sortbydate:0 +msgid "Sort by:" +msgstr "" + +#. module: account +#: field:account.move,to_check:0 +msgid "To Be Verified" +msgstr "" + +#. module: account +#: help:res.partner,debit:0 +msgid "Total amount you have to pay to this supplier." +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "7" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Invalid action !" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_transfers +msgid "Transfers" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Li." +msgstr "" + +#. module: account +#: wizard_view:account.chart,init:0 +msgid "Account charts" +msgstr "" + +#. module: account +#: help:account.tax,name:0 +msgid "This name will be displayed on reports" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Printing date" +msgstr "" + +#. module: account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account +#: wizard_field:account.partner.balance.report,init,date1:0 +msgid " Start date" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.journal.report,init:0 +msgid "Analytic Journal Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree3 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 +msgid "Customer Refunds" +msgstr "" + +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "No sequence defined in the journal !" +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "J.C./Move name" +msgstr "" + +#. module: account +#: field:account.journal.period,name:0 +msgid "Journal-Period Name" +msgstr "" + +#. module: account +#: field:account.tax.code,name:0 +#: field:account.tax.code.template,name:0 +msgid "Tax Case Name" +msgstr "" + +#. module: account +#: help:account.journal,entry_posted:0 +msgid "" +"Check this box if you don't want new account moves to pass through the " +"'draft' state and instead goes directly to the 'posted state' without any " +"manual validation." +msgstr "" + +#. module: account +#: field:account.bank.statement.line,partner_id:0 +#: field:account.bank.statement.reconcile,partner_id:0 +#: rml:account.general.ledger:0 +#: field:account.invoice,partner_id:0 +#: field:account.move,partner_id:0 +#: wizard_field:account.partner.balance.report,init,result_selection:0 +#: wizard_field:account.third_party_ledger.report,init,result_selection:0 +msgid "Partner" +msgstr "" + +#. module: account +#: help:account.invoice,number:0 +msgid "" +"Unique number of the invoice, computed automatically when the invoice is " +"created." +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Draft Invoice" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_expense +msgid "Expense" +msgstr "" + +#. module: account +#: field:account.journal,invoice_sequence_id:0 +msgid "Invoice Sequence" +msgstr "" + +#. module: account +#: wizard_view:account.automatic.reconcile,init:0 +msgid "Options" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optionnal other currency." +msgstr "" + +#. module: account +#: model:process.process,name:account.process_process_invoiceprocess0 +msgid "Customer Invoice Process" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,period_id:0 +msgid "Opening Entries Period" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_validate_account_moves +#: model:ir.actions.wizard,name:account.wizard_validate_account_moves_line +#: model:ir.ui.menu,name:account.menu_validate_account_moves +msgid "Validate Account Moves" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "days" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,init,direction_selection:0 +msgid "Past" +msgstr "" + +#. module: account +#: field:account.analytic.account,company_currency_id:0 +#: field:account.bank.accounts.wizard,currency_id:0 +#: field:account.bank.statement,currency:0 +#: field:account.bank.statement.reconcile,total_currency:0 +#: field:account.bank.statement.reconcile,total_second_currency:0 +#: rml:account.general.ledger:0 +#: field:account.invoice,currency_id:0 +#: field:account.journal,currency:0 +#: field:account.model.line,currency_id:0 +#: field:account.move.line,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened +msgid "Unpaid invoices" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_paymentreconcile0 +msgid "Payment Reconcile" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_reconciliation_form +#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_tree +msgid "Statements reconciliation" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_new +#: model:ir.ui.menu,name:account.menu_action_subscription_form_new +msgid "New Subscription" +msgstr "" + +#. module: account +#: view:account.payment.term:0 +msgid "Computation" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Entry" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingentries0 +#: model:process.node,note:account.process_node_supplieraccountingentries0 +msgid "Validated accounting entries." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_tree +#: model:ir.ui.menu,name:account.menu_action_tax_code_tree +msgid "Chart of Taxes" +msgstr "" + +#. module: account +#: field:account.payment.term.line,value_amount:0 +msgid "Value Amount" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open +msgid "Reconciled entries" +msgstr "" + +#. module: account +#: field:account.invoice,address_contact_id:0 +msgid "Contact Address" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create 3 Months Periods" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "(keep empty to use the current period)" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree8 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree8 +msgid "Draft Supplier Invoices" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "Unable to find a valid period !" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.refund,init,period:0 +msgid "Force period" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +msgid "Detail" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +msgid "Consolidation" +msgstr "" + +#. module: account +#: field:account.chart.template,account_root_id:0 +msgid "Root Account" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Configration Error !" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "" +"Exception made of a mistake of our side, it seems that the following bills " +"stay unpaid. Please, take appropriate measures in order to carry out this " +"payment in the next 8 days." +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "VAT :" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Débit" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,account_selection,Account_list:0 +#: model:ir.actions.act_window,name:account.action_account_tree +#: model:ir.actions.wizard,name:account.wizard_account_chart +#: model:ir.ui.menu,name:account.menu_action_account_tree +#: model:ir.ui.menu,name:account.menu_action_account_tree2 +msgid "Chart of Accounts" +msgstr "" + +#. module: account +#: model:account.journal,name:account.check_journal +msgid "x Checks Journal" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Your journal must have a default credit and debit account." +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_generate_subscription +#: model:ir.ui.menu,name:account.menu_generate_subscription +msgid "Create subscription entries" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,journal_id:0 +msgid "Opening Entries Journal" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Create a Fiscal Year" +msgstr "" + +#. module: account +#: field:product.template,taxes_id:0 +msgid "Customer Taxes" +msgstr "" + +#. module: account +#: field:account.invoice,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: account +#: help:account.account.balance.report,checktype,periods:0 +#: help:account.general.ledger.report,checktype,periods:0 +#: help:account.partner.balance.report,init,periods:0 +#: help:account.third_party_ledger.report,init,periods:0 +#: help:account.vat.declaration,init,periods:0 +msgid "All periods if empty" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_liability +msgid "Liability" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "2" +msgstr "" + +#. module: account +#: wizard_view:account.chart,init:0 +msgid "(If you do not select Fiscal year it will take all open fiscal years)" +msgstr "" + +#. module: account +#: help:account.invoice.tax,base_code_id:0 +msgid "The account basis of the tax declaration." +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +#: field:account.analytic.line,date:0 +#: field:account.bank.statement,date:0 +#: field:account.bank.statement.line,date:0 +#: field:account.bank.statement.reconcile,name:0 +#: rml:account.general.ledger:0 +#: selection:account.general.ledger.report,checktype,sortbydate:0 +#: rml:account.journal.period.print:0 +#: field:account.move,date:0 +#: rml:account.overdue:0 +#: wizard_field:account.subscription.generate,init,date:0 +#: field:account.subscription.line,date:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: xsl:account.transfer:0 +msgid "Date" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"No period defined for this date !\n" +"Please create a fiscal year." +msgstr "" + +#. module: account +#: field:account.invoice,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.unreconcile,init,unrec:0 +#: wizard_button:account.reconcile.unreconcile,init,unrec:0 +msgid "Unreconcile" +msgstr "" + +#. module: account +#: field:account.tax,type:0 +#: field:account.tax.template,type:0 +msgid "Tax Type" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_statemententries0 +msgid "Statement Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The journal must have default credit and debit account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_template_form +#: model:ir.ui.menu,name:account.menu_action_account_template_form +msgid "Account Templates" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Chart of Accounts Template" +msgstr "" + +#. module: account +#: model:account.journal,name:account.refund_sales_journal +msgid "Journal d'extourne" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "Voucher No" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_automatic_reconcile +#: model:ir.ui.menu,name:account.menu_automatic_reconcile +msgid "Automatic reconciliation" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Import Invoice" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Some entries are already reconciled !" +msgstr "" + +#. module: account +#: field:account.journal,refund_journal:0 +msgid "Refund Journal" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Account Tax" +msgstr "" + +#. module: account +#: field:account.account,shortcut:0 +#: field:account.account.template,shortcut:0 +msgid "Shortcut" +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,acc_no:0 +msgid "Account No." +msgstr "" + +#. module: account +#: help:account.tax,child_depend:0 +msgid "" +"Set if the tax computation is based on the computation of child taxes rather " +"than on the total amount." +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation date." +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +msgid "Journal Code" +msgstr "" + +#. module: account +#: help:account.tax,applicable_type:0 +msgid "" +"If not applicable (computed through a Python code), the tax won't appear on " +"the invoice." +msgstr "" + +#. module: account +#: field:account.model,lines_id:0 +msgid "Model Entries" +msgstr "" + +#. module: account +#: field:account.analytic.account,date:0 +msgid "Date End" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.move.reconcile,line_id:0 +#: model:ir.actions.act_window,name:account.action_move_line_search +#: model:ir.actions.act_window,name:account.action_move_line_tree1 +#: model:ir.ui.menu,name:account.menu_action_move_line_search +msgid "Entry Lines" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/invoice.py:0 +#, python-format +msgid "No Analytic Journal !" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Applicable Code (if type=code)" +msgstr "" + +#. module: account +#: wizard_button:account.move.journal,init,open:0 +msgid "Open Journal" +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +#: field:account.tax,python_applicable:0 +#: field:account.tax,python_compute:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,applicable_type:0 +#: field:account.tax.template,python_applicable:0 +#: field:account.tax.template,python_compute:0 +#: selection:account.tax.template,type:0 +msgid "Python Code" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.action_account_analytic_line +#: model:ir.actions.wizard,name:account.action_move_journal_line_form +#: model:ir.ui.menu,name:account.account_entries_analytic_entries +#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form +msgid "Entries Encoding by Line" +msgstr "" + +#. module: account +#: help:account.chart.template,tax_template_ids:0 +msgid "List of all the taxes that have to be installed by the wizard" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Period from" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement +#: model:process.node,name:account.process_node_bankstatement0 +#: model:process.node,name:account.process_node_supplierbankstatement0 +msgid "Bank Statement" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.pay,addendum:0 +#: wizard_view:account.move.line.reconcile,addendum:0 +msgid "Information addendum" +msgstr "" + +#. module: account +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_entriesreconcile0 +#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 +msgid "Entries Reconcile" +msgstr "" + +#. module: account +#: help:account.bank.statement.reconcile,total_second_amount:0 +msgid "The amount in the currency of the journal" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,landscape:0 +msgid "Landscape Mode" +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 "" + +#. module: account +#: wizard_button:account.account.balance.report,account_selection,end:0 +#: wizard_button:account.account.balance.report,checktype,end:0 +#: wizard_button:account.aged.trial.balance,init,end:0 +#: wizard_button:account.analytic.account.analytic.check.report,init,end:0 +#: wizard_button:account.analytic.account.balance.report,init,end:0 +#: wizard_button:account.analytic.account.chart,init,end:0 +#: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 +#: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 +#: wizard_button:account.analytic.account.journal.report,init,end:0 +#: wizard_button:account.analytic.account.quantity_cost_ledger.report,init,end:0 +#: wizard_button:account.analytic.line,init,end:0 +#: wizard_button:account.automatic.reconcile,init,end:0 +#: view:account.bank.statement:0 +#: wizard_button:account.central.journal.report,init,end:0 +#: wizard_button:account.chart,init,end:0 +#: wizard_button:account.fiscalyear.close,init,end:0 +#: wizard_button:account.fiscalyear.close.state,init,end:0 +#: wizard_button:account.general.journal.report,init,end:0 +#: wizard_button:account.general.ledger.report,account_selection,end:0 +#: wizard_button:account.general.ledger.report,checktype,end:0 +#: view:account.invoice:0 +#: wizard_button:account.invoice.pay,addendum,end:0 +#: wizard_button:account.invoice.pay,init,end:0 +#: wizard_button:account.invoice.refund,init,end:0 +#: view:account.move:0 +#: wizard_button:account.move.bank.reconcile,init,end:0 +#: wizard_button:account.move.journal,init,end:0 +#: wizard_button:account.move.line.reconcile,addendum,end:0 +#: wizard_button:account.move.line.reconcile,init_full,end:0 +#: wizard_button:account.move.line.reconcile,init_partial,end:0 +#: wizard_button:account.move.line.reconcile.select,init,end:0 +#: wizard_button:account.move.line.unreconcile,init,end:0 +#: wizard_button:account.move.line.unreconcile.select,init,end:0 +#: wizard_button:account.move.validate,init,end:0 +#: wizard_button:account.open_closed_fiscalyear,init,end:0 +#: wizard_button:account.partner.balance.report,init,end:0 +#: wizard_button:account.period.close,init,end:0 +#: wizard_button:account.print.journal.report,init,end:0 +#: wizard_button:account.reconcile.unreconcile,init,end:0 +#: wizard_button:account.subscription.generate,init,end:0 +#: wizard_button:account.third_party_ledger.report,init,end:0 +#: wizard_button:account.vat.declaration,init,end:0 +#: wizard_button:account_use_models,init_form,end:0 +#: view:wizard.multi.charts.accounts:0 +msgid "Cancel" +msgstr "" + +#. module: account +#: field:account.account.type,name:0 +msgid "Acc. Type Name" +msgstr "" + +#. module: account +#: help:account.tax,base_code_id:0 +#: help:account.tax,ref_base_code_id:0 +#: help:account.tax,ref_tax_code_id:0 +#: help:account.tax,tax_code_id:0 +#: help:account.tax.template,base_code_id:0 +#: help:account.tax.template,ref_base_code_id:0 +#: help:account.tax.template,ref_tax_code_id:0 +#: help:account.tax.template,tax_code_id:0 +msgid "Use this code for the VAT declaration." +msgstr "" + +#. module: account +#: field:account.move.line,blocked:0 +msgid "Litigation" +msgstr "" + +#. module: account +#: view:account.move.line:0 +#: wizard_view:account.move.validate,init:0 +#: view:account.payment.term:0 +msgid "Information" +msgstr "" + +#. module: account +#: help:account.journal,currency:0 +msgid "The currency used to enter statement" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_tax_report +msgid "Taxes Reports" +msgstr "" + +#. module: account +#: field:res.partner,property_account_payable:0 +msgid "Account Payable" +msgstr "" + +#. module: account +#: wizard_view:populate_statement_from_inv,init:0 +msgid "Import Invoices in Statement" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Other Info" +msgstr "" + +#. module: account +#: field:account.journal,default_credit_account_id:0 +msgid "Default Credit Account" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_supplierpaymentorder0 +msgid "Payment Order" +msgstr "" + +#. module: account +#: help:account.account.template,reconcile:0 +msgid "" +"Check this option if you want the user to reconcile entries in this account." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Already Reconciled" +msgstr "" + +#. module: account +#: 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 "" + +#. module: account +#: model:process.node,name:account.process_node_invoiceinvoice0 +msgid "Create Invoice" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_cash_equity +msgid "Equity" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_code_template +msgid "Tax Code Template" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "In dispute" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Unable to change tax !" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Dear Sir/Madam," +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_generic_report +msgid "Generic Reports" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,power:0 +msgid "Power" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.line,init:0 +msgid "Account Analytic Lines Analysis" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Price" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +#: rml:account.third_party_ledger:0 +msgid "-" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 +#: model:ir.actions.wizard,name:account.wizard_analytic_account_chart +#: model:ir.ui.menu,name:account.account_analytic_chart_balance +#: model:ir.ui.menu,name:account.account_analytic_def_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 +msgid "Analytic Chart of Accounts" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.line,init:0 +msgid "View Account Analytic Lines" +msgstr "" + +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "Select Period and Journal for Validation" +msgstr "" + +#. module: account +#: field:account.invoice,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: account +#: field:account.period,date_stop:0 +msgid "End of Period" +msgstr "" + +#. module: account +#: wizard_button:populate_statement_from_inv,go,finish:0 +msgid "O_k" +msgstr "" + +#. module: account +#: field:account.invoice,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance +#: model:ir.actions.wizard,name:account.account_analytic_account_inverted_balance_report +msgid "Inverted Analytic Balance" +msgstr "" + +#. module: account +#: field:account.tax,applicable_type:0 +#: field:account.tax.template,applicable_type:0 +msgid "Applicable Type" +msgstr "" + +#. module: account +#: field:account.invoice,reference:0 +msgid "Invoice Reference" +msgstr "" + +#. module: account +#: field:account.account,name:0 +#: field:account.account.template,name:0 +#: field:account.bank.statement,name:0 +#: field:account.bank.statement.line,name:0 +#: field:account.chart.template,name:0 +#: field:account.config.wizard,name:0 +#: field:account.model.line,name:0 +#: field:account.move.line,name:0 +#: field:account.move.reconcile,name:0 +#: field:account.subscription,name:0 +msgid "Name" +msgstr "" + +#. module: account +#: wizard_view:account.move.line.reconcile,init_full:0 +#: wizard_view:account.move.line.reconcile,init_partial:0 +msgid "Reconciliation transactions" +msgstr "" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,direction_selection:0 +msgid "Analysis Direction" +msgstr "" + +#. module: account +#: wizard_button:populate_statement_from_inv,init,go:0 +msgid "_Go" +msgstr "" + +#. module: account +#: field:res.partner,ref_companies:0 +msgid "Companies that refers to partner" +msgstr "" + +#. module: account +#: field:account.move.line,date:0 +msgid "Effective date" +msgstr "" + +#. module: account +#: help:account.tax.template,sequence:0 +msgid "" +"The sequence field is used to order the taxes lines from lower sequences to " +"higher ones. The order is important if you have a tax that has several tax " +"children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: field:account.journal.column,view_id:0 +#: view:account.journal.view:0 +#: field:account.journal.view,name:0 +#: model:ir.model,name:account.model_account_journal_view +msgid "Journal View" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Credit Centralisation" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Customer Ref:" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Partner ID" +msgstr "" + +#. module: account +#: wizard_view:account.automatic.reconcile,init:0 +#: wizard_view:account.invoice.pay,addendum:0 +#: wizard_view:account.move.line.reconcile,addendum:0 +msgid "Write-Off Move" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total credit" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree1_new +#: model:ir.ui.menu,name:account.menu_action_invoice_tree1_new +msgid "New Customer Invoice" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Best regards." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_hr_timesheet_invoice_journal +msgid "Analytic account costs and revenues" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.refund,init:0 +msgid "Are you sure you want to refund this invoice ?" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_paid_open +msgid "Open State" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "The account entries lines are not in valid state." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_statemententries0 +msgid "From statement, create entries" +msgstr "" + +#. module: account +#: field:account.analytic.account,complete_name:0 +msgid "Full Account Name" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: rml:account.partner.balance:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +msgid "1cm 27.7cm 20cm 27.7cm" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree12 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree12 +msgid "Draft Supplier Refunds" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_accountingstatemententries0 +msgid "Accounting Statement" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Document: Customer account statement" +msgstr "" + +#. module: account +#: view:product.product:0 +#: view:product.template:0 +#: view:res.partner:0 +msgid "Accounting" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Unable to reconcile entry \"%s\": %.2f" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Please set an analytic journal on this financial journal !" +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +msgid "Taxes Mapping" +msgstr "" + +#. module: account +#: wizard_view:account.move.line.unreconcile,init:0 +#: wizard_view:account.reconcile.unreconcile,init:0 +msgid "Unreconciliation transactions" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderbank0 +#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 +msgid "Reconcilation of entries from payment order." +msgstr "" + +#. module: account +#: field:account.bank.statement,move_line_ids:0 +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line +#: model:ir.model,name:account.model_account_move_line +msgid "Entry lines" +msgstr "" + +#. module: account +#: wizard_view:account.automatic.reconcile,init:0 +#: wizard_view:account.move.line.reconcile,init_full:0 +#: wizard_view:account.move.line.reconcile,init_partial:0 +#: wizard_view:account.move.line.reconcile.select,init:0 +#: code:addons/account/wizard/wizard_reconcile_select.py:0 +#: model:ir.ui.menu,name:account.next_id_20 +#: model:process.node,name:account.process_node_reconciliation0 +#: model:process.node,name:account.process_node_supplierreconciliation0 +#, python-format +msgid "Reconciliation" +msgstr "" + +#. module: account +#: field:account.move.line,centralisation:0 +msgid "Centralisation" +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_code_id:0 +#: field:account.tax,description:0 +#: field:account.tax,tax_code_id:0 +#: field:account.tax.template,tax_code_id:0 +#: model:ir.model,name:account.model_account_tax_code +msgid "Tax Code" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Analytic Journal -" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "EXJ" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Analytic Debit" +msgstr "" + +#. module: account +#: field:account.account,currency_mode:0 +msgid "Outgoing Currencies Rate" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree10 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree10 +msgid "Draft Customer Refunds" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Sales Journal" +msgstr "" + +#. module: account +#: field:account.journal.column,readonly:0 +msgid "Readonly" +msgstr "" + +#. module: account +#: help:account.model.line,date_maturity:0 +msgid "" +"The maturity date of the generated entries for this model. You can chosse " +"between the date of the creation action or the the date of the creation of " +"the entries plus the partner payment terms." +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +msgid "Situation" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date to must be set between %s and %s" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: xsl:account.transfer:0 +msgid "Document" +msgstr "" + +#. module: account +#: help:account.move.line,move_id:0 +msgid "The move of this entry line." +msgstr "" + +#. module: account +#: field:account.invoice.line,uos_id:0 +msgid "Unit of Measure" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +msgid "Move name" +msgstr "" + +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "" +"If this box is checked, the system will try to group the accounting lines " +"when generating them from invoices." +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,trans_nbr:0 +#: wizard_field:account.move.line.reconcile,init_partial,trans_nbr:0 +msgid "# of Transaction" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_invoice_state_cancel +msgid "Cancel selected invoices" +msgstr "" + +#. module: account +#: view:account.analytic.journal:0 +#: field:account.analytic.line,journal_id:0 +#: field:account.journal,analytic_journal_id:0 +#: model:ir.actions.report.xml,name:account.analytic_journal_print +#: model:ir.actions.wizard,name:account.account_analytic_account_journal_report +msgid "Analytic Journal" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "Entry Label" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentreconcile0 +msgid "Reconcilate the entries from payment" +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "(" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not modify/delete a journal with entries for this period !" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.period:0 +#: view:account.subscription:0 +msgid "Set to Draft" +msgstr "" + +#. module: account +#: help:account.invoice,origin:0 +#: help:account.invoice.line,origin:0 +msgid "Reference of the document that produced this invoice." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.aged.trial.balance,init,result_selection:0 +msgid "Payable" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: field:account.invoice.tax,base:0 +msgid "Base" +msgstr "" + +#. module: account +#: field:account.model,name:0 +msgid "Model Name" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +msgid "Others" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "8" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.move:0 +#: wizard_button:account.move.validate,init,validate:0 +msgid "Validate" +msgstr "" + +#. module: account +#: view:account.model:0 +#: field:account.model,legend:0 +msgid "Legend" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftinvoices0 +msgid "Proposed invoice to be checked, validated and printed" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_move_line_select +msgid "account.move.line.select" +msgstr "" + +#. module: account +#: view:account.account:0 +#: rml:account.account.balance:0 +#: wizard_field:account.account.balance.report,account_selection,Account_list:0 +#: wizard_field:account.automatic.reconcile,init,writeoff_acc_id:0 +#: field:account.bank.statement.line,account_id:0 +#: field:account.bank.statement.reconcile.line,account_id:0 +#: field:account.invoice,account_id:0 +#: field:account.invoice.line,account_id:0 +#: field:account.journal,account_control_ids:0 +#: field:account.model.line,account_id:0 +#: field:account.move.line,account_id:0 +#: wizard_field:account.move.line.reconcile.select,init,account_id:0 +#: wizard_field:account.move.line.unreconcile.select,init,account_id:0 +#: model:ir.model,name:account.model_account_account +msgid "Account" +msgstr "" + +#. module: account +#: model:account.journal,name:account.bank_journal +msgid "Journal de Banque CHF" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Date and Period" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_state_open.py:0 +#, python-format +msgid "Invoice is already reconciled" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,note:0 +#: view:account.invoice.line:0 +#: field:account.invoice.line,note:0 +msgid "Notes" +msgstr "" + +#. module: account +#: help:account.invoice,reconciled:0 +msgid "" +"The account moves of the invoice have been reconciled with account moves of " +"the payment(s)." +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: view:account.invoice:0 +#: field:account.invoice.line,invoice_line_tax_id:0 +#: model:ir.actions.act_window,name:account.action_tax_form +#: model:ir.ui.menu,name:account.menu_action_tax_form +#: model:ir.ui.menu,name:account.next_id_27 +msgid "Taxes" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close,init:0 +msgid "Close Fiscal Year with new entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "BNK" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "Average Rate" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_bankstatement0 +#: model:process.node,note:account.process_node_supplierbankstatement0 +msgid "Statement encoding produces payment entries" +msgstr "" + +#. module: account +#: field:account.account,code:0 +#: rml:account.account.balance:0 +#: field:account.account.template,code:0 +#: field:account.account.type,code:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: field:account.analytic.line,code:0 +#: field:account.config.wizard,code:0 +#: field:account.fiscalyear,code:0 +#: rml:account.general.journal:0 +#: field:account.journal,code:0 +#: rml:account.partner.balance:0 +#: field:account.period,code:0 +#: rml:account.vat.declaration:0 +msgid "Code" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance +msgid "Financial Management" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:0 +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entries: " +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +msgid "None" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close +#: model:ir.ui.menu,name:account.menu_wizard_fy_close +msgid "Generate Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "The account is not defined to be reconcile !" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile +msgid "Reconcile Entries" +msgstr "" + +#. module: account +#: wizard_view:account.wizard_paid_open,init:0 +msgid "(Invoice should be unreconciled if you want to open it)" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Additionnal Information" +msgstr "" + +#. module: account +#: field:account.tax,name:0 +#: field:account.tax.template,name:0 +msgid "Tax Name" +msgstr "" + +#. module: account +#: wizard_view:account.fiscalyear.close.state,init:0 +msgid " Close states of Fiscal year and periods" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term +msgid "30 Days End of Month" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Couldn't create move between different companies" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_code_root_id:0 +msgid "Root Tax Code" +msgstr "" + +#. module: account +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." +msgstr "" + +#. module: account +#: field:account.tax.code,notprintable:0 +#: field:account.tax.code.template,notprintable:0 +msgid "Not Printable in Invoice" +msgstr "" + +#. module: account +#: field:account.move.line,move_id:0 +msgid "Move" +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_src_id:0 +#: field:account.fiscal.position.tax.template,tax_src_id:0 +msgid "Tax Source" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_balance +#: model:ir.actions.wizard,name:account.account_analytic_account_balance_report +msgid "Analytic Balance" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not change the tax, you should remove and recreate lines !" +msgstr "" + +#. module: account +#: selection:account.analytic.account,state:0 +msgid "Pending" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_bank_reconcile.py:0 +#, python-format +msgid "" +"You have to define the bank account\n" +"in the journal definition for reconciliation." +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Bank Information" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entry \"%s\" is not valid !" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Fax :" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance +#: model:ir.actions.wizard,name:account.wizard_partner_balance_report +#: model:ir.ui.menu,name:account.menu_partner_balance +msgid "Partner Balance" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "Third Party Ledger" +msgstr "" + +#. module: account +#: help:res.partner,property_account_receivable:0 +msgid "" +"This account will be used instead of the default one as the receivable " +"account for the current partner" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement +msgid "Bank statements" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_22 +msgid "Partner Accounts" +msgstr "" + +#. module: account +#: help:account.tax.template,tax_group:0 +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 +#: view:account.bank.statement:0 +msgid "Real Entries" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_importinvoice0 +msgid "Import invoice" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:wizard.multi.charts.accounts:0 +msgid "Create" +msgstr "" + +#. module: account +#: model:process.transition.action,name:account.process_transition_action_createentries0 +msgid "Create entry" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_line +msgid "Invoice line" +msgstr "" + +#. module: account +#: help:account.account,currency_id:0 +#: help:account.account.template,currency_id:0 +msgid "Force all moves for this account to have this secondary currency." +msgstr "" + +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "" +"All draft account entries in this journal and period will be validated. It " +"means you won't be able to modify their accouting fields." +msgstr "" + +#. module: account +#: selection:account.model.line,date:0 +#: selection:account.model.line,date_maturity:0 +msgid "Date of the day" +msgstr "" + +#. module: account +#: field:account.tax,parent_id:0 +#: field:account.tax.template,parent_id:0 +msgid "Parent Tax Account" +msgstr "" + +#. module: account +#: field:account.account,user_type:0 +#: field:account.account.template,user_type:0 +#: view:account.account.type:0 +#: field:account.analytic.account,type:0 +#: model:ir.model,name:account.model_account_account_type +msgid "Account Type" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Bank account owner" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "Filter on Periods" +msgstr "" + +#. module: account +#: field:res.partner,property_account_receivable:0 +msgid "Account Receivable" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.pay,addendum,reconcile:0 +msgid "Pay and reconcile" +msgstr "" + +#. module: account +#: rml:account.central.journal:0 +#: model:ir.actions.report.xml,name:account.account_central_journal +msgid "Central Journal" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/account_analytic_line.py:0 +#: code:addons/account/account_bank_statement.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Error !" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "Balance brought forward" +msgstr "" + +#. module: account +#: field:account.account,child_consol_ids:0 +msgid "Consolidated Children" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,fiscalyear:0 +#: wizard_field:account.chart,init,fiscalyear:0 +#: wizard_field:account.general.ledger.report,checktype,fiscalyear:0 +#: wizard_field:account.partner.balance.report,init,fiscalyear:0 +#: wizard_field:account.third_party_ledger.report,init,fiscalyear:0 +msgid "Fiscal year" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Balance :" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,display_account:0 +#: selection:account.general.ledger.report,checktype,display_account:0 +msgid "With balance is not equal to 0" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "3" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_vat_declaration +msgid "Taxes Report" +msgstr "" + +#. module: account +#: selection:account.journal.period,state:0 +msgid "Printed" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree4_new +#: model:ir.ui.menu,name:account.menu_action_invoice_tree4_new +msgid "New Supplier Refund" +msgstr "" + +#. module: account +#: view:account.model:0 +msgid "Entry Model" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 +msgid "With Currency" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Chart of accounts" +msgstr "" + +#. module: account +#: field:account.subscription.line,subscription_id:0 +msgid "Subscription" +msgstr "" + +#. module: account +#: field:account.analytic.journal,code:0 +msgid "Journal code" +msgstr "" + +#. module: account +#: wizard_button:account.fiscalyear.close,init,close:0 +#: view:account.model:0 +msgid "Create entries" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Project line" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "SAJ" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,init,max_amount:0 +msgid "Maximum write-off amount" +msgstr "" + +#. module: account +#: field:account.invoice.tax,manual:0 +msgid "Manual" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Compute Taxes" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,code_digits:0 +msgid "# of Digits" +msgstr "" + +#. module: account +#: help:res.partner,property_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for the current " +"partner" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,addendum,comment:0 +#: wizard_field:account.invoice.pay,init,name:0 +msgid "Entry Name" +msgstr "" + +#. module: account +#: help:account.invoice,account_id:0 +msgid "The partner account used for this invoice." +msgstr "" + +#. module: account +#: help:account.tax.code,notprintable:0 +#: help:account.tax.code.template,notprintable:0 +msgid "" +"Check this box if you don't want any VAT related to this Tax Code to appear " +"on invoices" +msgstr "" + +#. module: account +#: field:account.account.type,sequence:0 +#: field:account.invoice.tax,sequence:0 +#: field:account.journal.column,sequence:0 +#: field:account.model.line,sequence:0 +#: field:account.payment.term.line,sequence:0 +#: field:account.sequence.fiscalyear,sequence_id:0 +#: field:account.tax,sequence:0 +#: field:account.tax.template,sequence:0 +#: field:fiscalyear.seq,sequence_id:0 +msgid "Sequence" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_template +msgid "Template for Fiscal Position" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Entry encoding" +msgstr "" + +#. module: account +#: wizard_view:account.invoice.refund,init:0 +#: model:ir.actions.wizard,name:account.wizard_invoice_refund +msgid "Credit Note" +msgstr "" + +#. module: account +#: model:ir.actions.todo,note:account.config_fiscalyear +msgid "Define Fiscal Years and Select Charts of Account" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,addendum,period_id:0 +msgid "Write-Off Period" +msgstr "" + +#. module: account +#: selection:account.config.wizard,period:0 +msgid "3 Months" +msgstr "" + +#. module: account +#: wizard_view:account.move.journal,init:0 +msgid "Standard entries" +msgstr "" + +#. module: account +#: help:account.account,check_history:0 +msgid "" +"Check this box if you want to print all entries when printing the General " +"Ledger, otherwise it will only print its balance." +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Global taxes defined, but are not in invoice lines !" +msgstr "" + +#. module: account +#: selection:account.config.wizard,period:0 +#: field:report.hr.timesheet.invoice.journal,name:0 +msgid "Month" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription +msgid "Account Subscription" +msgstr "" + +#. module: account +#: field:account.model.line,date_maturity:0 +#: field:account.move.line,date_maturity:0 +#: rml:account.overdue:0 +msgid "Maturity date" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Entry Subscription" +msgstr "" + +#. module: account +#: selection:account.print.journal.report,init,sort_selection:0 +msgid "By date" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_config_wizard_form +msgid "Account Configure Wizard " +msgstr "" + +#. module: account +#: field:account.config.wizard,date1:0 +#: field:account.fiscalyear,date_start:0 +#: field:account.subscription,date_start:0 +msgid "Start Date" +msgstr "" + +#. module: account +#: wizard_view:account.general.ledger.report,account_selection:0 +msgid "Select Chart" +msgstr "" + +#. module: account +#: selection:account.chart,init,target_move:0 +#: model:ir.actions.report.xml,name:account.account_move_line_list +msgid "All Entries" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_draftinvoices0 +#: model:process.node,name:account.process_node_supplierdraftinvoices0 +msgid "Draft Invoices" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax_template +msgid "Fiscal Position Template Tax Mapping" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Invoice Date" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The old fiscal year does not have any entry to reconcile!" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The journal must have centralised counterpart" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +msgid "Unreconciled" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "month" +msgstr "" + +#. module: account +#: field:account.account,note:0 +#: field:account.account.template,note:0 +msgid "Note" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Bad total !" +msgstr "" + +#. module: account +#: model:ir.module.module,description:account.module_meta_information +msgid "" +"Financial and accounting module that covers:\n" +" General accounting\n" +" Cost / Analytic accounting\n" +" Third party accounting\n" +" Taxes management\n" +" Budgets\n" +" Customer and Supplier Invoices\n" +" Bank statements\n" +" " +msgstr "" + +#. module: account +#: field:account.journal,sequence_id:0 +msgid "Entry Sequence" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +msgid "Closed" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paymententries0 +msgid "Payment Entries" +msgstr "" + +#. module: account +#: help:account.automatic.reconcile,init,account_ids:0 +msgid "" +"If no account is specified, the reconciliation will be made using every " +"accounts that can be reconcilied" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_payment_term_line +msgid "Payment Term Line" +msgstr "" + +#. module: account +#: selection:account.tax,tax_group:0 +#: selection:account.tax.template,tax_group:0 +msgid "Other" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_general_ledger +#: model:ir.actions.wizard,name:account.wizard_general_ledger +#: model:ir.actions.wizard,name:account.wizard_general_ledger_report +#: model:ir.ui.menu,name:account.menu_general_ledger +msgid "General Ledger" +msgstr "" + +#. module: account +#: field:account.journal.view,columns_id:0 +msgid "Columns" +msgstr "" + +#. module: account +#: selection:account.general.ledger.report,checktype,sortbydate:0 +msgid "Movement" +msgstr "" + +#. module: account +#: help:account.period,special:0 +msgid "These periods can overlap." +msgstr "" + +#. module: account +#: help:product.template,property_account_expense:0 +msgid "" +"This account will be used instead of the default one to value outgoing stock " +"for the current product" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_manually0 +msgid "Encode manually the statement" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_journal_form +#: model:ir.ui.menu,name:account.menu_action_account_journal_form +msgid "Financial Journals" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Period" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "." +msgstr "" + +#. module: account +#: field:account.analytic.account,quantity_max:0 +msgid "Maximum Quantity" +msgstr "" + +#. module: account +#: field:account.period,name:0 +msgid "Period Name" +msgstr "" + +#. module: account +#: help:account.analytic.journal,type:0 +msgid "" +"Gives the type of the analytic journal. When a document (eg: an invoice) " +"needs to create analytic entries, Open ERP will look for a matching journal " +"of the same type." +msgstr "" + +#. module: account +#: field:account.journal,groups_id:0 +msgid "Groups" +msgstr "" + +#. module: account +#: rml:account.analytic.account.quantity_cost_ledger:0 +msgid "Code/Date" +msgstr "" + +#. module: account +#: field:account.account,active:0 +#: field:account.analytic.account,active:0 +#: field:account.analytic.journal,active:0 +#: field:account.journal,active:0 +#: field:account.journal.period,active:0 +#: field:account.payment.term,active:0 +#: field:account.tax,active:0 +msgid "Active" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_electronicfile0 +msgid "Import from your bank statements" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Properties" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Customer Accounting Properties" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Select entries" +msgstr "" + +#. module: account +#: selection:account.chart,init,target_move:0 +msgid "All Posted Entries" +msgstr "" + +#. module: account +#: wizard_field:account.vat.declaration,init,based_on:0 +msgid "Base on" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Cash Payment" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_payable:0 +msgid "Payable Account" +msgstr "" + +#. module: account +#: field:account.account,currency_id:0 +#: field:account.account.template,currency_id:0 +msgid "Secondary Currency" +msgstr "" + +#. module: account +#: field:account.account,credit:0 +#: rml:account.account.balance:0 +#: field:account.analytic.account,credit:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.central.journal:0 +#: rml:account.journal.period.print:0 +#: field:account.model.line,credit:0 +#: field:account.move.line,credit:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +#: field:report.hr.timesheet.invoice.journal,cost:0 +msgid "Credit" +msgstr "" + +#. module: account +#: help:account.tax.template,child_depend:0 +msgid "" +"Indicate if the tax computation is based on the value computed for the " +"computation of child taxes or based on the total amount." +msgstr "" + +#. module: account +#: field:account.tax,account_paid_id:0 +#: field:account.tax.template,account_paid_id:0 +msgid "Refund Tax Account" +msgstr "" + +#. module: account +#: field:account.tax.code,child_ids:0 +#: field:account.tax.code.template,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account +#: field:account.invoice,move_name:0 +msgid "Account Move" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,line_ids:0 +msgid "Statement lines" +msgstr "" + +#. module: account +#: field:account.move.line,amount_taxed:0 +msgid "Taxed Amount" +msgstr "" + +#. module: account +#: field:account.invoice.line,price_subtotal:0 +msgid "Subtotal w/o tax" +msgstr "" + +#. module: account +#: field:account.invoice.line,invoice_id:0 +msgid "Invoice Ref" +msgstr "" + +#. module: account +#: field:account.analytic.line,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "" + +#. module: account +#: wizard_field:account.third_party_ledger.report,init,reconcil:0 +msgid " Include Reconciled Entries" +msgstr "" + +#. module: account +#: help:account.move.line,blocked:0 +msgid "" +"You can check this box to mark the entry line as a litigation with the " +"associated partner" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree1 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree1 +msgid "Customer Invoices" +msgstr "" + +#. module: account +#: field:res.partner,debit_limit:0 +msgid "Payable Limit" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,state:0 +#: wizard_field:account.general.ledger.report,checktype,state:0 +#: wizard_field:account.partner.balance.report,init,state:0 +#: wizard_field:account.third_party_ledger.report,init,state:0 +msgid "Date/Period Filter" +msgstr "" + +#. module: account +#: field:account.move,name:0 +msgid "Number" +msgstr "" + +#. module: account +#: rml:account.analytic.account.journal:0 +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.statement.line,type:0 +#: selection:account.journal,type:0 +msgid "General" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +msgid "Credit Trans." +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,seq_journal:0 +msgid "Separated Journal Sequences" +msgstr "" + +#. module: account +#: help:account.bank.statement.reconcile,total_second_currency:0 +msgid "The currency of the journal" +msgstr "" + +#. module: account +#: view:account.journal.column:0 +#: model:ir.model,name:account.model_account_journal_column +msgid "Journal Column" +msgstr "" + +#. module: account +#: selection:account.fiscalyear,state:0 +#: selection:account.invoice,state:0 +#: selection:account.journal.period,state:0 +#: selection:account.period,state:0 +#: selection:account.subscription,state:0 +msgid "Done" +msgstr "" + +#. module: account +#: wizard_field:account.account.balance.report,checktype,periods:0 +#: field:account.config.wizard,period:0 +#: view:account.fiscalyear:0 +#: field:account.fiscalyear,period_ids:0 +#: wizard_field:account.general.ledger.report,checktype,periods:0 +#: wizard_field:account.partner.balance.report,init,periods:0 +#: wizard_field:account.third_party_ledger.report,init,periods:0 +#: wizard_field:account.vat.declaration,init,periods:0 +#: model:ir.actions.act_window,name:account.action_account_period_form +#: model:ir.ui.menu,name:account.menu_action_account_period_form +#: model:ir.ui.menu,name:account.next_id_23 +msgid "Periods" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: view:account.invoice:0 +#: field:account.move.line,invoice:0 +#: model:ir.model,name:account.model_account_invoice +#: model:res.request.link,name:account.req_link_invoice +msgid "Invoice" +msgstr "" + +#. module: account +#: selection:account.analytic.account,state:0 +#: selection:account.invoice,state:0 +#: wizard_button:account.open_closed_fiscalyear,init,open:0 +#: wizard_button:account_use_models,create,open_move:0 +msgid "Open" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_29 +msgid "Search Entries" +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 "" + +#. module: account +#: field:account.account,tax_ids:0 +#: field:account.account.template,tax_ids:0 +msgid "Default Taxes" +msgstr "" + +#. module: account +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account +#: help:account.account.type,sign:0 +msgid "" +"Allows you to change the sign of the balance amount displayed in the " +"reports, so that you can see positive figures instead of negative ones in " +"expenses accounts." +msgstr "" + +#. module: account +#: help:account.config.wizard,code:0 +msgid "Name of the fiscal year as displayed in reports." +msgstr "" + +#. module: account +#: help:account.move.line,date_maturity:0 +msgid "" +"This field is used for payable and receivable entries. You can put the limit " +"date for the payment of this entry line." +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Third party (Country)" +msgstr "" + +#. module: account +#: field:account.account,parent_left:0 +msgid "Parent Left" +msgstr "" + +#. module: account +#: help:account.journal,sequence_id:0 +msgid "The sequence gives the display order for a list of journals" +msgstr "" + +#. module: account +#: field:account.journal,type_control_ids:0 +msgid "Type Controls" +msgstr "" + +#. module: account +#: field:account.analytic.account,name:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.central.journal:0 +msgid "Account Name" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,init,date:0 +msgid "Payment date" +msgstr "" + +#. module: account +#: wizard_button:account_use_models,create,end:0 +msgid "Ok" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Taxes:" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree7 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree7 +msgid "Unpaid Customer Invoices" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree2 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 +msgid "Supplier Invoices" +msgstr "" + +#. module: account +#: field:account.analytic.line,product_id:0 +#: field:account.invoice.line,product_id:0 +#: field:account.move.line,product_id:0 +msgid "Product" +msgstr "" + +#. module: account +#: rml:account.partner.balance:0 +msgid "Partner name" +msgstr "" + +#. module: account +#: rml:account.tax.code.entries:0 +msgid ")" +msgstr "" + +#. module: account +#: field:res.partner,credit:0 +msgid "Total Receivable" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_period +msgid "Account period" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,init,journal_id:0 +msgid "Journal/Payment Mode" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Canceled Invoice" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Remove Lines" +msgstr "" + +#. module: account +#: wizard_field:account.general.ledger.report,checktype,soldeinit:0 +#: wizard_field:account.partner.balance.report,init,soldeinit:0 +#: wizard_field:account.third_party_ledger.report,init,soldeinit:0 +msgid "Include initial balances" +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Account Template" +msgstr "" + +#. module: account +#: field:account.tax.code,sum:0 +msgid "Year Sum" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_filestatement0 +msgid "Import file from your bank statement" +msgstr "" + +#. module: account +#: field:account.account,type:0 +#: field:account.account.template,type:0 +msgid "Internal Type" +msgstr "" + +#. module: account +#: field:account.account,balance:0 +msgid "Closing Balance" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "9" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_running +#: model:ir.ui.menu,name:account.menu_action_subscription_form_running +msgid "Running Subscriptions" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Bank Payment" +msgstr "" + +#. module: account +#: selection:account.move,state:0 +msgid "Posted" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Credit Notes" +msgstr "" + +#. module: account +#: field:account.config.wizard,date2:0 +#: field:account.fiscalyear,date_stop:0 +msgid "End Date" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_open_closed_fiscalyear +#: model:ir.ui.menu,name:account.menu_wizard_open_closed_fy +msgid "Cancel Opening Entries" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoicemanually0 +msgid "Manually statement" +msgstr "" + +#. module: account +#: field:account.payment.term.line,days2:0 +msgid "Day of the Month" +msgstr "" + +#. module: account +#: field:account.analytic.journal,line_ids:0 +#: field:account.tax.code,line_ids:0 +msgid "Lines" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_end_year_treatments +msgid "End of Year Treatments" +msgstr "" + +#. module: account +#: help:account.tax,sequence:0 +msgid "" +"The sequence field is used to order the tax lines from the lowest sequences " +"to the higher ones. The order is important if you have a tax with several " +"tax children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Declaration" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_filestatement0 +msgid "File statement" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequences" +msgstr "" + +#. module: account +#: view:account.model.line:0 +msgid "Entry Model Line" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Account Tax Template" +msgstr "" + +#. module: account +#: help:account.model,name:0 +msgid "This is a model for recurring accounting entries" +msgstr "" + +#. module: account +#: wizard_view:account.wizard_paid_open,init:0 +msgid "Open Invoice" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftstatement0 +msgid "Set starting and ending balance for control" +msgstr "" + +#. module: account +#: wizard_view:account.wizard_paid_open,init:0 +msgid "Are you sure you want to open this invoice ?" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Supplier Debit" +msgstr "" + +#. module: account +#: help:account.model.line,quantity:0 +msgid "The optional quantity on entries" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "JNRL" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +#: view:account.period:0 +msgid "States" +msgstr "" + +#. module: account +#: view:account.move:0 +#: model:process.node,name:account.process_node_accountingentries0 +#: model:process.node,name:account.process_node_supplieraccountingentries0 +msgid "Accounting Entries" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_partner_account_move_unreconciled +msgid "Receivables & Payables" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "General Ledger -" +msgstr "" + +#. module: account +#: field:report.hr.timesheet.invoice.journal,quantity:0 +msgid "Quantities" +msgstr "" + +#. module: account +#: field:account.analytic.account,date_start:0 +msgid "Date Start" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: field:account.invoice,amount_total:0 +#: field:account.invoice,check_total:0 +msgid "Total" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_customerinvoice0 +#: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 +msgid "Number of entries are generated" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Can not pay draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_account_use_model +#: model:ir.actions.wizard,name:account.wizard_line_account_use_model +#: model:ir.ui.menu,name:account.menu_account_use_model +msgid "Create Entries From Models" +msgstr "" + +#. module: account +#: field:account.account.template,reconcile:0 +msgid "Allow Reconciliation" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,state:0 +#: selection:account.general.ledger.report,checktype,state:0 +#: selection:account.partner.balance.report,init,state:0 +#: selection:account.third_party_ledger.report,init,state:0 +msgid "By Date" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree4 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree4 +msgid "Supplier Refunds" +msgstr "" + +#. module: account +#: help:account.model.line,date:0 +msgid "The date of the generated entries" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.refund,init,modify_invoice:0 +msgid "Modify Invoice" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Supplier Accounting Properties" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Analytic Account Statistics" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "" +"This will automatically configure your chart of accounts, bank accounts, " +"taxes and journals according to the selected template" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,statement_id:0 +#: field:account.move.line,statement_id:0 +msgid "Statement" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_move_line_form_encode_by_move +#: model:ir.ui.menu,name:account.menu_encode_entries_by_move +msgid "Entries Encoding by Move" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not deactivate an account that contains account moves." +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Analytic Account Charts" +msgstr "" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,result_selection:0 +msgid "Filter on Partners" +msgstr "" + +#. module: account +#: field:account.tax,price_include:0 +msgid "Tax Included in Price" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree2 +#: model:ir.ui.menu,name:account.account_analytic_journal_entries +msgid "Analytic Entries by Journal" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_suppliervalidentries0 +#: model:process.transition,note:account.process_transition_validentries0 +msgid "Valid entries from invoice" +msgstr "" + +#. module: account +#: field:account.account,company_id:0 +#: wizard_field:account.account.balance.report,checktype,company_id:0 +#: wizard_field:account.aged.trial.balance,init,company_id:0 +#: field:account.analytic.account,company_id:0 +#: field:account.fiscal.position,company_id:0 +#: field:account.fiscalyear,company_id:0 +#: wizard_field:account.general.ledger.report,checktype,company_id:0 +#: field:account.invoice,company_id:0 +#: field:account.journal,company_id:0 +#: wizard_field:account.partner.balance.report,init,company_id:0 +#: field:account.tax,company_id:0 +#: field:account.tax.code,company_id:0 +#: wizard_field:account.third_party_ledger.report,init,company_id:0 +#: wizard_field:account.vat.declaration,init,company_id:0 +#: field:wizard.multi.charts.accounts,company_id:0 +msgid "Company" +msgstr "" + +#. module: account +#: rml:account.general.ledger:0 +msgid "Crebit" +msgstr "" + +#. module: account +#: selection:account.subscription,state:0 +msgid "Running" +msgstr "" + +#. module: account +#: help:account.tax,include_base_amount:0 +msgid "" +"Indicate if the amount of tax must be included in the base amount for the " +"computation of the next taxes" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_draftstatement0 +msgid "Draft statement" +msgstr "" + +#. module: account +#: field:account.analytic.journal,name:0 +msgid "Journal name" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoiceimport0 +msgid "Import invoice from statement" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "4" +msgstr "" + +#. module: account +#: help:res.partner,credit:0 +msgid "Total amount this customer owes you." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear_form +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:account.menu_action_account_fiscalyear_form +msgid "Fiscal Years" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_importinvoice0 +msgid "Import from invoices or payments" +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_reconcile_select +#: model:ir.ui.menu,name:account.menu_reconcile_select +msgid "Reconcile entries" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Change" +msgstr "" + +#. module: account +#: field:account.journal.period,icon:0 +msgid "Icon" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_journal.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "UserError" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_period +msgid "Journal - Period" +msgstr "" + +#. module: account +#: wizard_field:account.move.line.reconcile,init_full,credit:0 +#: wizard_field:account.move.line.reconcile,init_partial,credit:0 +msgid "Credit amount" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create Monthly Periods" +msgstr "" + +#. module: account +#: wizard_button:account.aged.trial.balance,init,print:0 +msgid "Print Aged Trial Balance" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"You can specify year, month and date in the name of the model using the " +"following labels:\n" +"\n" +"%(year)s : To Specify Year \n" +"%(month)s : To Specify Month \n" +"%(date)s : Current Date\n" +"\n" +"e.g. My model on %(date)s" +msgstr "" + +#. module: account +#: field:account.analytic.line,ref:0 +#: field:account.bank.statement.line,ref:0 +#: field:account.model.line,ref:0 +#: field:account.move.line,ref:0 +#: rml:account.third_party_ledger:0 +msgid "Ref." +msgstr "" + +#. module: account +#: field:account.invoice,address_invoice_id:0 +msgid "Invoice Address" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "General Credit" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "" +"Tax base different !\n" +"Click on compute to update tax base" +msgstr "" + +#. module: account +#: help:account.journal,centralisation:0 +msgid "" +"Check this box to determine that each entry of this journal won't create a " +"new counterpart but will share the same counterpart. This is used in fiscal " +"year closing." +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +msgid "Cancelled" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree +#: model:ir.ui.menu,name:account.menu_bank_statement_draft_tree +msgid "Draft statements" +msgstr "" + +#. module: account +#: wizard_field:populate_statement_from_inv,init,date:0 +msgid "Date payment" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "A/c No." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree_month +#: model:ir.ui.menu,name:account.report_account_analytic_journal_print_month +msgid "Account cost and revenue by journal (This Month)" +msgstr "" + +#. module: account +#: selection:account.partner.balance.report,init,result_selection:0 +#: selection:account.third_party_ledger.report,init,result_selection:0 +msgid "Receivable Accounts" +msgstr "" + +#. module: account +#: wizard_button:account.move.line.unreconcile.select,init,open:0 +msgid "Open for unreconciliation" +msgstr "" + +#. module: account +#: field:account.bank.statement.reconcile,statement_line:0 +#: model:ir.model,name:account.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account +#: wizard_button:account.automatic.reconcile,reconcile,end:0 +msgid "OK" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 +msgid "Control Invoice" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date not in a defined fiscal year" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.aged.trial.balance,init,result_selection:0 +msgid "Receivable" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_account_balance +#: model:ir.actions.wizard,name:account.wizard_account_balance_report +#: model:ir.actions.wizard,name:account.wizard_balance_report +#: model:ir.ui.menu,name:account.menu_account_balance_report +msgid "Account Balance" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_analytic_check +#: model:ir.actions.wizard,name:account.account_analytic_account_analytic_check_report +msgid "Analytic Check" +msgstr "" + +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optionnal other currency if it is a multi-currency entry." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_state_open.py:0 +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "VAT:" +msgstr "" + +#. module: account +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.quantity_cost_ledger:0 +#: rml:account.central.journal:0 +#: rml:account.general.journal:0 +#: rml:account.invoice:0 +msgid "Total:" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_journal +msgid "account.analytic.journal" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,account_ids:0 +#: field:account.fiscal.position.template,account_ids:0 +msgid "Account Mapping" +msgstr "" + +#. module: account +#: view:product.product:0 +msgid "Sale Taxes" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_reconcile +msgid "Account Reconciliation" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: selection:account.bank.statement,state:0 +msgid "Confirm" +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,account_selection:0 +msgid "Select parent account" +msgstr "" + +#. module: account +#: field:account.account.template,parent_id:0 +msgid "Parent Account Template" +msgstr "" + +#. module: account +#: help:account.tax,domain:0 +#: help:account.tax.template,domain:0 +msgid "" +"This field is only used if you develop your own module allowing developers " +"to create specific taxes in a custom domain." +msgstr "" + +#. module: account +#: field:account.bank.statement.reconcile,total_amount:0 +#: field:account.bank.statement.reconcile,total_second_amount:0 +msgid "Payment amount" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Analytic account" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: selection:account.invoice,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:0 +#, python-format +msgid "Please verify that an account is defined in the journal." +msgstr "" + +#. module: account +#: selection:account.move.line,state:0 +msgid "Valid" +msgstr "" + +#. module: account +#: field:account.account,debit:0 +#: rml:account.account.balance:0 +#: field:account.analytic.account,debit:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.central.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: field:account.model.line,debit:0 +#: field:account.move.line,debit:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +#: field:report.hr.timesheet.invoice.journal,revenue:0 +msgid "Debit" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_42 +msgid "All Months" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.refund,init,date:0 +msgid "Operation date" +msgstr "" + +#. module: account +#: field:account.invoice,invoice_line:0 +msgid "Invoice Lines" +msgstr "" + +#. module: account +#: field:account.period,date_start:0 +msgid "Start of Period" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,report_name:0 +msgid "Name of new entries" +msgstr "" + +#. module: account +#: wizard_button:account_use_models,init_form,create:0 +msgid "Create Entries" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_code_id:0 +#: field:account.tax.template,ref_tax_code_id:0 +msgid "Refund Tax Code" +msgstr "" + +#. module: account +#: field:account.invoice.tax,name:0 +msgid "Tax Description" +msgstr "" + +#. module: account +#: help:account.invoice,move_id:0 +msgid "Link to the automatically generated account moves." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You can not use an inactive account!" +msgstr "" + +#. module: account +#: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 +msgid "Reconciled transactions" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reporting +msgid "Reporting" +msgstr "" + +#. module: account +#: rml:account.third_party_ledger:0 +msgid "/" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_invoiceinvoice0 +#: model:process.node,note:account.process_node_supplierinvoiceinvoice0 +msgid "Have a number and entries are generated" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "Analytic Check -" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +msgid "Account Balance -" +msgstr "" + +#. module: account +#: field:account.journal,group_invoice_lines:0 +msgid "Group invoice lines" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_configuration +msgid "Configuration" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: view:account.invoice:0 +msgid "Total amount" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Account Journal" +msgstr "" + +#. module: account +#: view:account.subscription.line:0 +msgid "Subscription lines" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income:0 +msgid "Income Account on Product Template" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Entry is already reconciled" +msgstr "" + +#. module: account +#: wizard_button:populate_statement_from_inv,go,end:0 +#: wizard_button:populate_statement_from_inv,init,end:0 +msgid "_Cancel" +msgstr "" + +#. module: account +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "Select Date-Period" +msgstr "" + +#. module: account +#: rml:account.analytic.account.inverted.balance:0 +msgid "Inverted Analytic Balance -" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paidinvoice0 +#: model:process.node,name:account.process_node_supplierpaidinvoice0 +msgid "Paid invoice" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Definition" +msgstr "" + +#. module: account +#: field:account.tax,tax_group:0 +#: field:account.tax.template,tax_group:0 +msgid "Tax Group" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree3_new +#: model:ir.ui.menu,name:account.menu_action_invoice_tree3_new +msgid "New Customer Refund" +msgstr "" + +#. module: account +#: help:wizard.multi.charts.accounts,seq_journal:0 +msgid "" +"Check this box if you want to use a different sequence for each created " +"journal. Otherwise, all will use the same sequence." +msgstr "" + +#. module: account +#: model:ir.actions.wizard,name:account.wizard_populate_statement_from_inv +msgid "Import invoices" +msgstr "" + +#. module: account +#: wizard_view:account.move.line.unreconcile,init:0 +#: wizard_view:account.move.line.unreconcile.select,init:0 +#: wizard_view:account.reconcile.unreconcile,init:0 +msgid "Unreconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_fiscalyear_seq +msgid "Maintains Invoice sequences with Fiscal Year" +msgstr "" + +#. module: account +#: selection:account.account.balance.report,checktype,display_account:0 +#: selection:account.general.ledger.report,checktype,display_account:0 +msgid "With movements" +msgstr "" + +#. module: account +#: field:account.tax,domain:0 +#: field:account.tax.template,domain:0 +msgid "Domain" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Account Data" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +msgid "Account Tax Code Template" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Subscription Periods" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_manually0 +msgid "Manually" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.tax:0 +#: view:account.tax.template:0 +#: selection:account.vat.declaration,init,based_on:0 +#: model:ir.actions.act_window,name:account.act_res_partner_2_account_invoice_opened +#: model:ir.actions.act_window,name:account.action_invoice_tree +#: model:ir.actions.report.xml,name:account.account_invoices +#: model:ir.ui.menu,name:account.menu_finance_invoice +#: wizard_field:populate_statement_from_inv,go,lines:0 +msgid "Invoices" +msgstr "" + +#. module: account +#: selection:account.partner.balance.report,init,result_selection:0 +#: selection:account.third_party_ledger.report,init,result_selection:0 +msgid "Payable Accounts" +msgstr "" + +#. module: account +#: view:account.invoice.line:0 +#: field:account.invoice.tax,invoice_id:0 +msgid "Invoice Line" +msgstr "" + +#. module: account +#: wizard_field:account.invoice.pay,addendum,writeoff_journal_id:0 +msgid "Write-Off journal" +msgstr "" + +#. module: account +#: wizard_button:account.invoice.pay,init,writeoff_check:0 +msgid "Full Payment" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Journal Purchase" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Cash Receipt" +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_dest_id:0 +#: field:account.fiscal.position.tax.template,tax_dest_id:0 +msgid "Replacement Tax" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoicemanually0 +msgid "Encode manually statement comes into the draft statement" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_43 +msgid "This Month" +msgstr "" + +#. module: account +#: field:account.account.type,sign:0 +msgid "Sign on Reports" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_journal.py:0 +#, python-format +msgid "This period is already closed !" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,payment_ids:0 +#: selection:account.vat.declaration,init,based_on:0 +msgid "Payments" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingstatemententries0 +msgid "Accounting entries at statement's confirmation" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "" +"No fiscal year defined for this date !\n" +"Please create one." +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "" +"Selected Move lines does not have any account move enties in draft state" +msgstr "" + +#. module: account +#: wizard_button:account.wizard_paid_open,init,end:0 +msgid "No" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_partner_account_move +msgid "All account entries" +msgstr "" + +#. module: account +#: help:account.invoice.tax,tax_code_id:0 +msgid "The tax basis of the tax declaration." +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "Date Filter" +msgstr "" + +#. module: account +#: wizard_view:populate_statement_from_inv,init:0 +msgid "Choose Journal and Payment Date" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You must define an analytic journal of type '%s' !" +msgstr "" + +#. module: account +#: selection:account.analytic.account,state:0 +#: selection:account.bank.statement,state:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.invoice,state:0 +#: selection:account.journal.period,state:0 +#: selection:account.move,state:0 +#: selection:account.move.line,state:0 +#: selection:account.period,state:0 +#: selection:account.subscription,state:0 +msgid "Draft" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree11 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree11 +msgid "Unpaid Customer Refunds" +msgstr "" + +#. module: account +#: help:account.invoice,residual:0 +msgid "Remaining amount due." +msgstr "" + +#. module: account +#: wizard_view:account.period.close,init:0 +msgid "Are you sure ?" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: view:account.invoice:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account +#: field:account.move.reconcile,line_partial_ids:0 +msgid "Partial Entry lines" +msgstr "" + +#. module: account +#: help:account.move.line,statement_id:0 +msgid "The bank statement used for bank reconciliation" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Fiscalyear" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_bank_reconcile.py:0 +#, python-format +msgid "Standard Encoding" +msgstr "" + +#. module: account +#: wizard_button:account.analytic.line,init,open:0 +msgid "Open Entries" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Bad account!" +msgstr "" + +#. module: account +#: selection:account.analytic.account,type:0 +#: selection:account.move.line,centralisation:0 +msgid "Normal" +msgstr "" + +#. module: account +#: model:process.process,name:account.process_process_supplierinvoiceprocess0 +msgid "Supplier Invoice Process" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +#: rml:account.analytic.account.analytic.check:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.inverted.balance:0 +#: rml:account.analytic.account.journal:0 +#: rml:account.general.ledger:0 +#: rml:account.journal.period.print:0 +#: rml:account.partner.balance:0 +#: rml:account.tax.code.entries:0 +#: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 +msgid "Page" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Optional Information" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_payment_term_form +#: model:ir.ui.menu,name:account.menu_action_payment_term_form +msgid "Payment Terms" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,init,result_selection:0 +msgid "Receivable and Payable" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +#: rml:account.general.journal:0 +msgid ":" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,reconcile_amount:0 +msgid "Amount reconciled" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "At Date" +msgstr "" + +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.bank.statement.reconcile:0 +#: view:account.subscription:0 +msgid "Compute" +msgstr "" + +#. module: account +#: help:account.invoice.line,account_id:0 +msgid "The income or expense account related to the selected product." +msgstr "" + +#. module: account +#: field:account.tax,type_tax_use:0 +msgid "Tax Application" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form +#: model:ir.ui.menu,name:account.menu_action_subscription_form +msgid "Subscription Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "Closing of fiscal year cancelled, please check the box !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree6 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree6 +msgid "PRO-FORMA Customer Invoices" +msgstr "" + +#. module: account +#: field:account.subscription,period_total:0 +msgid "Number of Periods" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "Bad account !" +msgstr "" + +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_bank_reconcile.py:0 +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: account +#: wizard_field:account.analytic.account.analytic.check.report,init,date2:0 +#: wizard_field:account.analytic.account.balance.report,init,date2:0 +#: wizard_field:account.analytic.account.cost_ledger.report,init,date2:0 +#: wizard_field:account.analytic.account.inverted.balance.report,init,date2:0 +#: wizard_field:account.analytic.account.journal.report,init,date2:0 +#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date2:0 +#: wizard_field:account.automatic.reconcile,init,date2:0 +msgid "End of period" +msgstr "" + +#. module: account +#: view:account.move:0 +#: model:ir.model,name:account.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account +#: rml:account.general.journal:0 +#: model:ir.actions.report.xml,name:account.account_general_journal +msgid "General Journal" +msgstr "" + +#. module: account +#: rml:account.account.balance:0 +#: selection:account.account.type,close_method:0 +#: field:account.analytic.account,balance:0 +#: rml:account.analytic.account.balance:0 +#: rml:account.analytic.account.cost_ledger:0 +#: rml:account.analytic.account.inverted.balance:0 +#: field:account.bank.statement,balance_end:0 +#: field:account.bank.statement.reconcile,total_balance:0 +#: rml:account.general.ledger:0 +#: field:account.move.line,balance:0 +#: rml:account.partner.balance:0 +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +#: rml:account.third_party_ledger:0 +msgid "Balance" +msgstr "" + +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Taxes missing !" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +msgid "Refund" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "No piece number !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_form +#: model:ir.ui.menu,name:account.account_def_analytic_journal +msgid "Analytic Journal Definition" +msgstr "" + +#. module: account +#: field:account.journal,entry_posted:0 +msgid "Skip 'Draft' State for Created Entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_template +msgid "account.tax.template" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,bank_accounts_id:0 +msgid "Bank Accounts" +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "" +"Invalid period ! Some periods overlap or the date period is not in the scope " +"of the fiscal year. " +msgstr "" + +#. module: account +#: help:account.journal,invoice_sequence_id:0 +msgid "The sequence used for invoice numbers in this journal." +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: view:account.journal:0 +#: view:account.move:0 +#: view:account.move.line:0 +msgid "General Information" +msgstr "" + +#. module: account +#: help:populate_statement_from_inv,init,journal_id:0 +msgid "" +"This field allow you to choose the accounting journals you want for " +"filtering the invoices. If you left this field empty, it will search on all " +"sale, purchase and cash journals." +msgstr "" + +#. module: account +#: constraint:account.fiscalyear:0 +msgid "Error ! The duration of the Fiscal Year is invalid. " +msgstr "" + +#. module: account +#: selection:account.analytic.account,state:0 +msgid "Close" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,move_ids:0 +msgid "Moves" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_form +#: model:ir.ui.menu,name:account.menu_action_account_form +msgid "List of Accounts" +msgstr "" + +#. module: account +#: view:product.product:0 +#: view:product.template:0 +msgid "Sales Properties" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#, python-format +msgid "Closing of states cancelled, please check the box !" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger +#: model:ir.actions.wizard,name:account.account_analytic_account_quantity_cost_ledger_report +msgid "Cost Ledger (Only quantities)" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "You have to define an analytic journal on the '%s' journal!" +msgstr "" + +#. module: account +#: wizard_view:account.move.validate,init:0 +msgid "Validate Account Entries" +msgstr "" + +#. module: account +#: selection:account.print.journal.report,init,sort_selection:0 +msgid "Reference Number" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Total amount due:" +msgstr "" + +#. module: account +#: wizard_field:account.analytic.account.chart,init,to_date:0 +#: wizard_field:account.analytic.line,init,to_date:0 +msgid "To" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form +msgid "Entries of Open Analytic Journals" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +msgid "Manual Invoice Taxes" +msgstr "" + +#. module: account +#: field:account.model.line,date:0 +msgid "Current Date" +msgstr "" + +#. module: account +#: selection:account.move,type:0 +msgid "Journal Sale" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,fy_id:0 +#: wizard_field:account.fiscalyear.close.state,init,fy_id:0 +msgid "Fiscal Year to close" +msgstr "" + +#. module: account +#: wizard_field:account.aged.trial.balance,init,date1:0 +#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 +#: wizard_field:account.analytic.account.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 +#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 +#: wizard_field:account.analytic.account.journal.report,init,date1:0 +#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 +#: wizard_field:account.automatic.reconcile,init,date1:0 +msgid "Start of period" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.account_template_folder +msgid "Templates" +msgstr "" + +#. module: account +#: wizard_button:account.vat.declaration,init,report:0 +msgid "Print VAT Decl." +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_intracom +msgid "IntraCom" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: field:account.analytic.account,description:0 +#: field:account.analytic.line,name:0 +#: field:account.bank.statement.reconcile.line,name:0 +#: rml:account.invoice:0 +#: field:account.invoice,name:0 +#: field:account.invoice.line,name:0 +#: wizard_field:account.invoice.refund,init,description:0 +#: rml:account.overdue:0 +#: field:account.payment.term,note:0 +#: field:account.tax.code,info:0 +#: field:account.tax.code.template,info:0 +msgid "Description" +msgstr "" + +#. module: account +#: help:product.template,property_account_income:0 +msgid "" +"This account will be used instead of the default one to value incoming stock " +"for the current product" +msgstr "" + +#. module: account +#: field:account.tax,child_ids:0 +msgid "Child Tax Accounts" +msgstr "" + +#. module: account +#: field:account.account,parent_right:0 +msgid "Parent Right" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.account_account_menu +msgid "Financial Accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: account +#: view:account.config.wizard:0 +msgid "Account Configure" +msgstr "" + +#. module: account +#: help:res.partner,property_account_payable:0 +msgid "" +"This account will be used instead of the default one as the payable account " +"for the current partner" +msgstr "" + +#. module: account +#: field:account.tax.code,code:0 +#: field:account.tax.code.template,code:0 +msgid "Case Code" +msgstr "" + +#. module: account +#: selection:account.automatic.reconcile,init,power:0 +msgid "5" +msgstr "" + +#. module: account +#: field:product.category,property_account_income_categ:0 +#: field:product.template,property_account_income:0 +msgid "Income Account" +msgstr "" + +#. module: account +#: field:account.period,special:0 +msgid "Opening/Closing Period" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:0 +#, python-format +msgid "" +"Can not create an automatic sequence for this piece !\n" +"\n" +"Put a sequence in the journal definition for automatic numbering or create a " +"sequence manually for this piece." +msgstr "" + +#. module: account +#: rml:account.analytic.account.balance:0 +msgid "Analytic Balance -" +msgstr "" + +#. module: account +#: wizard_field:account_use_models,init_form,model:0 +#: model:ir.model,name:account.model_account_model +msgid "Account Model" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.act_account_analytic_account_2_account_invoice_line +msgid "Invoice lines" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +msgid "Customer" +msgstr "" + +#. module: account +#: field:account.subscription,period_type:0 +msgid "Period Type" +msgstr "" + +#. module: account +#: view:product.category:0 +msgid "Accounting Properties" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_sequence_fiscalyear +msgid "account.sequence.fiscalyear" +msgstr "" + +#. module: account +#: wizard_field:account.print.journal.report,init,sort_selection:0 +msgid "Entries Sorted By" +msgstr "" + +#. module: account +#: rml:account.journal.period.print:0 +msgid "Print Journal -" +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,bank_account_id:0 +#: field:account.chart.template,bank_account_view_id:0 +#: field:account.invoice,partner_bank:0 +msgid "Bank Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_model_form +#: model:ir.ui.menu,name:account.menu_action_model_form +msgid "Models Definition" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_cash_moves +#: selection:account.analytic.journal,type:0 +#: selection:account.journal,type:0 +msgid "Cash" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_dest_id:0 +#: field:account.fiscal.position.account.template,account_dest_id:0 +msgid "Account Destination" +msgstr "" + +#. module: account +#: rml:account.overdue:0 +msgid "Maturity" +msgstr "" + +#. module: account +#: field:account.fiscalyear,name:0 +#: field:account.period,fiscalyear_id:0 +#: field:account.sequence.fiscalyear,fiscalyear_id:0 +#: field:fiscalyear.seq,fiscalyear_id:0 +#: model:ir.model,name:account.model_account_fiscalyear +msgid "Fiscal Year" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,init,direction_selection:0 +msgid "Future" +msgstr "" + +#. module: account +#: help:account.account.balance.report,checktype,fiscalyear:0 +#: help:account.chart,init,fiscalyear:0 +#: help:account.general.ledger.report,checktype,fiscalyear:0 +#: help:account.partner.balance.report,init,fiscalyear:0 +#: help:account.third_party_ledger.report,init,fiscalyear:0 +msgid "Keep empty for all open fiscal year" +msgstr "" + +#. module: account +#: rml:account.invoice:0 +#: selection:account.invoice,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_entriesreconcile0 +#: model:process.transition,note:account.process_transition_supplierentriesreconcile0 +msgid "Reconcile Entries." +msgstr "" + +#. module: account +#: field:account.subscription.line,move_id:0 +msgid "Entry" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paidinvoice0 +#: model:process.node,note:account.process_node_supplierpaidinvoice0 +#: model:process.transition,note:account.process_transition_reconcilepaid0 +#: model:process.transition,note:account.process_transition_supplierreconcilepaid0 +msgid "Paid invoice when reconciled." +msgstr "" + +#. module: account +#: field:account.tax,python_compute_inv:0 +#: field:account.tax.template,python_compute_inv:0 +msgid "Python Code (reverse)" +msgstr "" + +#. module: account +#: model:ir.module.module,shortdesc:account.module_meta_information +msgid "Accounting and financial management" +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +msgid "Accounts Mapping" +msgstr "" + +#. module: account +#: help:product.category,property_account_expense_categ:0 +msgid "" +"This account will be used to value outgoing stock for the current product " +"category" +msgstr "" + +#. module: account +#: help:account.tax,base_sign:0 +#: help:account.tax,ref_base_sign:0 +#: help:account.tax,ref_tax_sign:0 +#: help:account.tax,tax_sign:0 +#: help:account.tax.template,base_sign:0 +#: help:account.tax.template,ref_base_sign:0 +#: help:account.tax.template,ref_tax_sign:0 +#: help:account.tax.template,tax_sign:0 +msgid "Usually 1 or -1." +msgstr "" + +#. module: account +#: help:account.invoice,date_due:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment." +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Bank Details" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense:0 +msgid "Expense Account on Product Template" +msgstr "" + +#. module: account +#: rml:account.analytic.account.analytic.check:0 +msgid "General Debit" +msgstr "" + +#. module: account +#: field:account.analytic.account,code:0 +msgid "Account Code" +msgstr "" + +#. module: account +#: help:account.config.wizard,name:0 +msgid "Name of the fiscal year as displayed on screens." +msgstr "" + +#. module: account +#: field:account.invoice,payment_term:0 +#: view:account.payment.term:0 +#: field:account.payment.term,name:0 +#: view:account.payment.term.line:0 +#: field:account.payment.term.line,payment_id:0 +#: model:ir.model,name:account.model_account_payment_term +#: field:res.partner,property_payment_term:0 +msgid "Payment Term" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form +msgid "Fiscal Positions" +msgstr "" + +#. module: account +#: model:process.process,name:account.process_process_statementprocess0 +msgid "Statement Process" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement_reconcile +msgid "Statement reconcile" +msgstr "" + +#. module: account +#: wizard_field:account.fiscalyear.close,init,sure:0 +#: wizard_field:account.fiscalyear.close.state,init,sure:0 +#: wizard_field:account.period.close,init,sure:0 +msgid "Check this box" +msgstr "" + +#. module: account +#: help:account.tax,price_include:0 +msgid "" +"Check this if the price you use on the product and invoices includes this " +"tax." +msgstr "" + +#. module: account +#: field:account.journal.column,name:0 +msgid "Column Name" +msgstr "" + +#. module: account +#: help:account.move.line,quantity:0 +msgid "" +"The optional quantity expressed by this line, eg: number of product sold. " +"The quantity is not a legal requirement but is very usefull for some reports." +msgstr "" + +#. module: account +#: wizard_view:account.account.balance.report,checktype:0 +#: wizard_view:account.general.ledger.report,checktype:0 +#: wizard_view:account.partner.balance.report,init:0 +#: wizard_view:account.third_party_ledger.report,init:0 +msgid "Filters" +msgstr "" + +#. module: account +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#, python-format +msgid "You must enter a period length that cannot be 0 or below !" +msgstr "" + +#. module: account +#: wizard_button:account.wizard_paid_open,init,yes:0 +msgid "Yes" +msgstr "" + +#. module: account +#: help:account.account,reconcile:0 +msgid "" +"Check this if the user is allowed to reconcile entries in this account." +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_overdue +msgid "Overdue Payments" +msgstr "" diff --git a/addons/account/i18n/lt_LT.po b/addons/account/i18n/lt_LT.po index 96bae68cf7f..433741292ac 100644 --- a/addons/account/i18n/lt_LT.po +++ b/addons/account/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Nustatymai" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Juodraštis" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 0244c71612c..59ab6b3b532 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -478,7 +484,7 @@ msgstr "" #. module: account #: rml:account.overdue:0 msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at +32 81 81 37 00." -msgstr "Indien dit schrijven uw betaling mocht kruisen, mag u dit negeren. Aarzel niet om contact op te nemen met onze boekhouding voor eventuele vragen." +msgstr "" #. module: account #: selection:account.move,type:0 @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/nl_NL.po b/addons/account/i18n/nl_NL.po index 8a9afd18397..a97ae218e25 100644 --- a/addons/account/i18n/nl_NL.po +++ b/addons/account/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "BTW rekening" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Grootboekschema" msgid "Move line select" msgstr "Veplaats geselecteerde regel" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "Geeft de weergave wanneer mutaties in het dagboek worden geschreven of doorgebladerd. De weergave verteld Open ERP welke velden er zichtbaar, verplicht of alleen lezen moeten zijn en in welke volgorde. U kunt uw eigen weergave aanmaken voor een snellere codering in elk dagboek." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Kostenplaatsboekingen" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Vouchernr" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "account.config.wizard" msgid "Account cost and revenue by journal" msgstr "Kosten en opbrengsten per dagboek" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Bedrag Valuta" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Druk kostenplaatsdagboeken af" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Vouchernr" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Kostenplaatsregels" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Het bedrag wordt in een andere valuta laten zien wanneer een andere valuta geboekt wordt." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "De methode voor het berekenen van de BTW." #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Optie's" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Bedrag in andere mogelijke munteenheid weergeven." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importeer factuur" msgid "Some entries are already reconciled !" msgstr "Enkele mutaties zijn reeds afgeletterd !" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "en dagboeken" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Rekeningnr." msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Laat dit veld leeg wanneer je de huidige datum wilt gebruiken." - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Bankafschrift" msgid "Information addendum" msgstr "Informatie addendum" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "De methode voor het berekenen van de BTW." - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "Geschil" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Geachte heer/mevrouw" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Factuurreferentie" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Open status" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "De boekhoudmutatie regels zijn niet in een geldige status" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "BTW rekening" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Alle concept boekingen in dit dagboek en deze en periode worden gevalide msgid "Date of the day" msgstr "Datum" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Afgesloten" msgid "Payment Entries" msgstr "Betalingsboekingen" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Op periode" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Gefactureerd" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Afgeletterde boekingen meenemen" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "U kunt dit vakje aanvinken om de mutatie als betwiste mutatie te markeren bij de gekoppelde relatie" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Credietlimiet" msgid "Date/Period Filter" msgstr "Datum/Periode filter" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Nummer" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "Importbestand voor uw bankafschriften" msgid "Internal Type" msgstr "Interne soort" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "Eindsaldo" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Saldilijst" msgid "Analytic Check" msgstr "Kostenplaats controle" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "De optionele tweede valuta wanneer dit een multi-valuta boeking betreft." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "Teken op rapporten" msgid "This period is already closed !" msgstr "Deze periode is al gesloten!" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Concept" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Gefactureerd" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "Op datum" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "en dagboeken" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Algemeen dagboek" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Vervaldatum" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Meestal 1 of -1" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "Indien u betalingstermijnen hanteert zal de vervaldatum automatisch worden berekend bij het aanmaken van de boekhoudmutaties. Wanneer u de betaaltermijn en de vervaldatum leeg laat zal deze als directe betaling worden geboekt" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/pl_PL.po b/addons/account/i18n/pl_PL.po index 2b9470c757a..6ac67252686 100644 --- a/addons/account/i18n/pl_PL.po +++ b/addons/account/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Konto Podatkowe" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Konto Podatkowe" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 46a1d9163d5..0bb173d7718 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Conta de imposto" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Plano de contas" msgid "Move line select" msgstr "Mover a linha selecionada" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Lançamentos analíticos" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "account.config.wizard" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "wizard.multi.charts.accounts" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Linhas analíticas" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "O montante expresso em outra moeda opcional se a entrada for multi-moeda." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opções" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "A quantia expressa em outra moeda opcional." - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importar fatura" msgid "Some entries are already reconciled !" msgstr "Alguns lançamentos já estão conciliados !" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Mantenha vazio pra usar o período na data de validação" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "Informação adicional" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "Em disputa" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Caros Ser/Senhora," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Referencia fatura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Abrir estado" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Conta de imposto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "Data do dia" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Fechado" msgid "Payment Entries" msgstr "Lançamentos de pagamento" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Por período" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Pago" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "Este período já está fechado" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Esboço" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Pago" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "Na Data" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/pt_PT.po b/addons/account/i18n/pt_PT.po index b368e1fbe1c..ddd644a7516 100644 --- a/addons/account/i18n/pt_PT.po +++ b/addons/account/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Conta de imposto" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "Graficos de contas" msgid "Move line select" msgstr "Seleccionar linhas de movimento" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "Dá a vista usada ao escrever ou ao consultar entradas neste jornal. A vista diz a Open ERP que campos devem ser visíveis, exigido ou apenas de leitura e em que ordem. Você pode criar sua própria vista para uma codificação mais rápida em cada diário." #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Movimentos analíticos" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Número de voucher" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Custo e retorno da conta por diário" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Montante da moeda" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Imprimir diários analíticos" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Número de voucher" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Linhas da analítica" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "O montante expresso numa outra moeda opcional se isto for uma entrada multi-moedas." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Opções" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "O montante expresso em outra moeda opcional" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "Importar factura" msgid "Some entries are already reconciled !" msgstr "Algumas entradas ja estão reconciliadas !" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "e diários" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "Nº de conta" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Manter vazio para utilizar o periodo da data de validação" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Declaração bancaria" msgid "Information addendum" msgstr "adenda da informação" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "Em disputa" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Caro Sr./Sra." +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Referencia da factura" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Estado aberto" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "As linhas de entrada de conta não estão no estado valido" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Conta de imposto" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Todas as entradas em rascunho neste diário será validado. Significa qu msgid "Date of the day" msgstr "Data do dia" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Fechado" msgid "Payment Entries" msgstr "Entradas de pagamentos" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "Por período" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Pago" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr " Incluir entradas reconciliadas" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Você pode validar esta caixa para marcar a linha de entrada como um litígios com o terceiro relacionado" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Limite pagável" msgid "Date/Period Filter" msgstr "Data/Filtrar periodo" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "Número" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "Importar ficheiro da tua declaração bancaria" msgid "Internal Type" msgstr "Tipo interno" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "Fechar balanço" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Balanço da conta" msgid "Analytic Check" msgstr "Verificação analítica" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "A outra moeda opcional se é uma entrada multi-moeda." - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "Definir relatórios" msgid "This period is already closed !" msgstr "Este período já esta fechado !" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Rascunho" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Pago" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "Na data" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "e diários" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Diário geral" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Maturidade" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "Normalmente 1 ou -1" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/ro_RO.po b/addons/account/i18n/ro_RO.po index bc7392375da..51a838a8c04 100644 --- a/addons/account/i18n/ro_RO.po +++ b/addons/account/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/ru_RU.po b/addons/account/i18n/ru_RU.po index f2cf768381b..028553cb320 100644 --- a/addons/account/i18n/ru_RU.po +++ b/addons/account/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Налоговый счет" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Проводки аналитики" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Расходы и доходы по счету по журналам" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Валюта суммы" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Распечатать журналы аналитики" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "Строки аналитики" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Параметры" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Сумма выражена в необязательной дополнительной валюте" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "и журналы" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Банковская выписка" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "Под вопросом" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Уважаемые господа," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Ссылка на счет" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Открытые" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Налоговый счет" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Закрыто" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Оплачено" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Лимит оплаты" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Остатки по счету" msgid "Analytic Check" msgstr "Аналитическая проверка" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "Необязательная иная валюта, если данная проводка является многовалютной" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Черновик" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Оплачено" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "и журналы" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Срок платежа" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/sl_SL.po b/addons/account/i18n/sl_SL.po index 533ef7115b3..e4649bc545a 100644 --- a/addons/account/i18n/sl_SL.po +++ b/addons/account/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Konto davkov" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Analitične vknjižbe" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Odhodki in prihodki po dnevnikih" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Valuta zneska" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Znesek, izražen v neobvezni drugi valuti v primeru večvalutne vknjižbe" +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Možnosti" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Znesek, izražen v drugi valut" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Pustite prazno v primeru obdobja veljavnosti" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Bančni izpisek" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "V sporu" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Dragi gospod/gospa," +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Sklic računa" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Odpri stanje" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Konto davkov" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "Datum dneva" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Zaprt" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Plačano" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Z okljukanjem tega polja označite postavko vknjižbe kot pravdanje s partnerjem." +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Mejni zapadli znesek" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Saldo konta" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "Neobvezna druga valuta v primeru večvalutnih vknjižb" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Osnutek" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Plačano" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Glavni dnevnik" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Zapadlost" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/sv_SE.po b/addons/account/i18n/sv_SE.po index 3a435f23792..61363d7b69b 100644 --- a/addons/account/i18n/sv_SE.po +++ b/addons/account/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,9 +80,8 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/sv_SV.po b/addons/account/i18n/sv_SV.po index 17dab616a26..90d10968bce 100644 --- a/addons/account/i18n/sv_SV.po +++ b/addons/account/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,6 +58,11 @@ msgstr "" msgid "Asset" msgstr "Tillgång" +#. module: account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format @@ -70,9 +75,13 @@ msgid "Select Message" msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" +#: help:product.category,property_account_income_categ:0 +msgid "This account will be used to value incoming stock for the current product category" +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." msgstr "" #. module: account @@ -119,17 +128,6 @@ msgstr "" msgid "Residual" msgstr "" -#. module: account -#: view:account.subscription:0 -msgid "Subscription Periods" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft invoice." -msgstr "" - #. module: account #: field:account.tax,base_sign:0 #: field:account.tax,ref_base_sign:0 @@ -189,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -287,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -304,8 +309,9 @@ msgid "Warning !" msgstr "" #. module: account -#: model:ir.actions.report.xml,name:account.account_overdue -msgid "Overdue Payments" +#: code:addons/account/account.py:0 +#, python-format +msgid "You can not delete posted movement: \"%s\"!" msgstr "" #. module: account @@ -400,11 +406,23 @@ msgstr "" msgid "Journal Name" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "No period found !" +msgstr "" + #. module: account #: view:account.payment.term:0 msgid "Description on invoices" msgstr "" +#. module: account +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "" + #. module: account #: field:account.bank.statement.reconcile,total_entry:0 msgid "Total entries" @@ -427,6 +445,17 @@ msgstr "" msgid "Payment Reconcilation" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Can not %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: model:account.journal,name:account.expenses_journal +msgid "Journal de frais" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal msgid "All Analytic Entries" @@ -634,11 +663,12 @@ msgid "Entry Controls" msgstr "" #. module: account -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive account." +#: help:account.model.line,sequence:0 +msgid "The sequence field is used to order the resources from lower sequences to higher ones" msgstr "" #. module: account +#: wizard_view:account.analytic.account.chart,init:0 #: wizard_view:account.analytic.line,init:0 msgid "(Keep empty to open the current situation)" msgstr "" @@ -648,11 +678,6 @@ msgstr "" msgid "Fiscal Position Accounts Mapping" msgstr "" -#. module: account -#: model:account.journal,name:account.sales_journal -msgid "x Sales Journal" -msgstr "" - #. module: account #: field:account.analytic.account,contact_id:0 msgid "Contact" @@ -707,6 +732,11 @@ msgstr "" msgid "Analytic Accounting" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + #. module: account #: field:account.analytic.account,line_ids:0 #: view:account.analytic.line:0 @@ -755,8 +785,8 @@ msgid "Customer Refund" msgstr "" #. module: account -#: field:wizard.multi.charts.accounts,seq_journal:0 -msgid "Separated Journal Sequences" +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Select the Period for Analysis" msgstr "" #. module: account @@ -888,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -903,6 +938,12 @@ msgstr "" msgid "Templates for Accounts" msgstr "" +#. module: account +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_form #: model:ir.model,name:account.model_account_analytic_account @@ -955,6 +996,15 @@ msgstr "" msgid "Amount Currency" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" @@ -1119,12 +1169,6 @@ msgstr "" msgid "Amount paid" msgstr "" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_general_journal -#: model:ir.ui.menu,name:account.menu_general_journal -msgid "Print General journal" -msgstr "" - #. module: account #: selection:account.invoice,type:0 #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -1217,8 +1261,13 @@ msgid "wizard.multi.charts.accounts" msgstr "" #. module: account -#: field:account.move.line,tax_amount:0 -msgid "Tax/Base Amount" +#: model:account.journal,name:account.sales_journal +msgid "Journal de vente" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." msgstr "" #. module: account @@ -1238,6 +1287,7 @@ msgid "Tax Report" msgstr "" #. module: account +#: wizard_button:account.analytic.account.chart,init,open:0 #: wizard_button:account.chart,init,open:0 msgid "Open Charts" msgstr "" @@ -1303,6 +1353,11 @@ msgstr "" msgid "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + #. module: account #: help:wizard.multi.charts.accounts,code_digits:0 msgid "No. of Digits to use for account code" @@ -1402,6 +1457,7 @@ msgstr "" #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 #: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 msgid "All" msgstr "" @@ -1412,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -1449,9 +1505,8 @@ msgid "Sequences" msgstr "" #. module: account -#: model:ir.actions.act_window,name:account.action_account_type_form -#: model:ir.ui.menu,name:account.menu_action_account_type_form -msgid "Account Types" +#: wizard_button:account.subscription.generate,init,generate:0 +msgid "Compute Entry Dates" msgstr "" #. module: account @@ -1524,8 +1579,9 @@ msgid "Write-Off" msgstr "" #. module: account -#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 -msgid "With Currency" +#: help:account.invoice,partner_bank:0 +msgid "The partner bank account to pay\n" +"Keep empty to use the default" msgstr "" #. module: account @@ -1545,7 +1601,6 @@ msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Crédit" msgstr "" @@ -1571,6 +1626,8 @@ msgstr "" #. module: account #: wizard_view:account.general.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_general_journal +#: model:ir.ui.menu,name:account.menu_general_journal msgid "Print General Journal" msgstr "" @@ -1614,6 +1671,11 @@ msgstr "" msgid "Open for reconciliation" msgstr "" +#. module: account +#: model:account.journal,name:account.bilan_journal +msgid "Journal d'ouverture" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -1686,8 +1748,8 @@ msgid "Close Period" msgstr "" #. module: account -#: selection:account.account.type,close_method:0 -msgid "Detail" +#: rml:account.overdue:0 +msgid "Due" msgstr "" #. module: account @@ -1797,6 +1859,12 @@ msgstr "" msgid "Pre-generated invoice from control" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Valid Entries" +msgstr "" + #. module: account #: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 msgid "Cost Legder for period" @@ -1809,6 +1877,7 @@ msgid "New Statement" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,from_date:0 #: wizard_field:account.analytic.line,init,from_date:0 msgid "From" msgstr "" @@ -1821,6 +1890,8 @@ msgstr "" #. module: account #: wizard_view:account.central.journal.report,init:0 +#: model:ir.actions.wizard,name:account.wizard_central_journal +#: model:ir.ui.menu,name:account.menu_central_journal msgid "Print Central Journal" msgstr "" @@ -1959,6 +2030,11 @@ msgstr "" msgid "Pay invoice" msgstr "" +#. module: account +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree5 #: model:ir.ui.menu,name:account.menu_invoice_draft @@ -2067,6 +2143,11 @@ msgstr "" msgid "Customer Refunds" msgstr "" +#. module: account +#: rml:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + #. module: account #: code:addons/account/account.py:0 #, python-format @@ -2130,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2251,14 +2327,21 @@ msgstr "" msgid "Draft Supplier Invoices" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_use_model.py:0 +#, python-format +msgid "Unable to find a valid period !" +msgstr "" + #. module: account #: wizard_field:account.invoice.refund,init,period:0 msgid "Force period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Due" +#: selection:account.account.type,close_method:0 +msgid "Detail" msgstr "" #. module: account @@ -2272,11 +2355,6 @@ msgstr "" msgid "Root Account" msgstr "" -#. module: account -#: help:account.model.line,sequence:0 -msgid "The sequence field is used to order the resources from lower sequences to higher ones" -msgstr "" - #. module: account #: code:addons/account/account_bank_statement.py:0 #, python-format @@ -2295,7 +2373,6 @@ msgstr "" #. module: account #: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 msgid "Débit" msgstr "" @@ -2319,11 +2396,6 @@ msgstr "" msgid "Your journal must have a default credit and debit account." msgstr "" -#. module: account -#: rml:account.overdue:0 -msgid "Sub-Total:" -msgstr "" - #. module: account #: model:ir.actions.wizard,name:account.wizard_generate_subscription #: model:ir.ui.menu,name:account.menu_generate_subscription @@ -2443,6 +2515,11 @@ msgstr "" msgid "Chart of Accounts Template" msgstr "" +#. module: account +#: model:account.journal,name:account.refund_sales_journal +msgid "Journal d'extourne" +msgstr "" + #. module: account #: rml:account.journal.period.print:0 msgid "Voucher No" @@ -2465,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2491,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2525,12 +2602,6 @@ msgstr "" msgid "Entry Lines" msgstr "" -#. module: account -#: model:ir.actions.wizard,name:account.wizard_central_journal -#: model:ir.ui.menu,name:account.menu_central_journal -msgid "Print Central journal" -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/invoice.py:0 @@ -2593,17 +2664,17 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Entries Reconcile" msgstr "" +#. module: account +#: help:account.bank.statement.reconcile,total_second_amount:0 +msgid "The amount in the currency of the journal" +msgstr "" + #. module: account #: wizard_field:account.general.ledger.report,checktype,landscape:0 msgid "Landscape Mode" @@ -2621,6 +2692,7 @@ msgstr "" #: wizard_button:account.aged.trial.balance,init,end:0 #: wizard_button:account.analytic.account.analytic.check.report,init,end:0 #: wizard_button:account.analytic.account.balance.report,init,end:0 +#: wizard_button:account.analytic.account.chart,init,end:0 #: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 #: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 #: wizard_button:account.analytic.account.journal.report,init,end:0 @@ -2750,11 +2822,6 @@ msgstr "" msgid "Create Invoice" msgstr "" -#. module: account -#: model:account.journal,name:account.refund_sales_journal -msgid "x Sales Credit Note Journal" -msgstr "" - #. module: account #: model:account.account.type,name:account.account_type_cash_equity msgid "Equity" @@ -2776,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2809,9 +2887,10 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 -#: model:ir.ui.menu,name:account.account_analytic_chart +#: model:ir.actions.wizard,name:account.wizard_analytic_account_chart #: model:ir.ui.menu,name:account.account_analytic_chart_balance #: model:ir.ui.menu,name:account.account_analytic_def_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Analytic Chart of Accounts" msgstr "" @@ -2870,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -2969,8 +3049,12 @@ msgid "Open State" msgstr "" #. module: account -#: field:account.journal,entry_posted:0 -msgid "Skip 'Draft' State for Created Entries" +#: code:addons/account/wizard/wizard_central_journal.py:0 +#: code:addons/account/wizard/wizard_general_journal.py:0 +#: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "No records found for your selection!" msgstr "" #. module: account @@ -2979,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3016,8 +3106,8 @@ msgid "Accounting Statement" msgstr "" #. module: account -#: help:product.category,property_account_income_categ:0 -msgid "This account will be used to value incoming stock for the current product category" +#: rml:account.overdue:0 +msgid "Document: Customer account statement" msgstr "" #. module: account @@ -3139,9 +3229,17 @@ msgstr "" msgid "Situation" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date to must be set between %s and %s" +msgstr "" + #. module: account #: rml:account.invoice:0 -#: rml:account.overdue:0 #: xsl:account.transfer:0 msgid "Document" msgstr "" @@ -3290,6 +3388,11 @@ msgstr "" msgid "Account" msgstr "" +#. module: account +#: model:account.journal,name:account.bank_journal +msgid "Journal de Banque CHF" +msgstr "" + #. module: account #: selection:account.account.balance.report,checktype,state:0 #: selection:account.general.ledger.report,checktype,state:0 @@ -3298,6 +3401,12 @@ msgstr "" msgid "By Date and Period" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_state_open.py:0 +#, python-format +msgid "Invoice is already reconciled" +msgstr "" + #. module: account #: view:account.account:0 #: view:account.account.template:0 @@ -3439,8 +3548,8 @@ msgid "Root Tax Code" msgstr "" #. module: account -#: help:account.bank.statement.reconcile,total_second_amount:0 -msgid "The amount in the currency of the journal" +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." msgstr "" #. module: account @@ -3522,11 +3631,6 @@ msgstr "" msgid "This account will be used instead of the default one as the receivable account for the current partner" msgstr "" -#. module: account -#: rml:account.vat.declaration:0 -msgid "Solde" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement msgid "Bank statements" @@ -3585,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -3659,6 +3768,11 @@ msgstr "" msgid "Fiscal year" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Balance :" +msgstr "" + #. module: account #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 @@ -3691,6 +3805,11 @@ msgstr "" msgid "Entry Model" msgstr "" +#. module: account +#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 +msgid "With Currency" +msgstr "" + #. module: account #: view:account.account:0 msgid "Chart of accounts" @@ -3892,6 +4011,12 @@ msgstr "" msgid "Invoice Date" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#, python-format +msgid "The old fiscal year does not have any entry to reconcile!" +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format @@ -3949,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -3998,11 +4128,6 @@ msgstr "" msgid "Encode manually the statement" msgstr "" -#. module: account -#: rml:account.overdue:0 -msgid "Customer account statement" -msgstr "" - #. module: account #: model:ir.actions.act_window,name:account.action_account_journal_form #: model:ir.ui.menu,name:account.menu_action_account_journal_form @@ -4018,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4122,6 +4247,7 @@ msgstr "Valuta" #: field:account.move.line,credit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,cost:0 msgid "Credit" msgstr "" @@ -4190,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4209,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4227,6 +4355,11 @@ msgstr "" msgid "Credit Trans." msgstr "" +#. module: account +#: field:wizard.multi.charts.accounts,seq_journal:0 +msgid "Separated Journal Sequences" +msgstr "" + #. module: account #: help:account.bank.statement.reconcile,total_second_currency:0 msgid "The currency of the journal" @@ -4442,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -4623,9 +4751,9 @@ msgid "Number of entries are generated" msgstr "" #. module: account -#: model:process.transition,name:account.process_transition_suppliervalidentries0 -#: model:process.transition,name:account.process_transition_validentries0 -msgid "Valid Entries" +#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#, python-format +msgid "Can not pay draft/proforma/cancel invoice." msgstr "" #. module: account @@ -4698,6 +4826,11 @@ msgstr "" msgid "You can not deactivate an account that contains account moves." msgstr "" +#. module: account +#: wizard_view:account.analytic.account.chart,init:0 +msgid "Analytic Account Charts" +msgstr "" + #. module: account #: wizard_field:account.aged.trial.balance,init,result_selection:0 msgid "Filter on Partners" @@ -4749,12 +4882,6 @@ msgstr "" msgid "Running" msgstr "" -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" -msgstr "" - #. module: account #: help:account.tax,include_base_amount:0 msgid "Indicate if the amount of tax must be included in the base amount for the computation of the next taxes" @@ -4817,10 +4944,15 @@ msgstr "Ikon" #: code:addons/account/account.py:0 #: code:addons/account/account_move_line.py:0 #: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 #: code:addons/account/wizard/wizard_automatic_reconcile.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 #: code:addons/account/wizard/wizard_journal.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "UserError" msgstr "" @@ -4936,6 +5068,15 @@ msgstr "" msgid "Control Invoice" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_account_balance_report.py:0 +#: code:addons/account/wizard/wizard_general_ledger_report.py:0 +#: code:addons/account/wizard/wizard_partner_balance_report.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 +#, python-format +msgid "Date not in a defined fiscal year" +msgstr "" + #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 @@ -4957,13 +5098,9 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_state_open.py:0 #: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format msgid "Warning" @@ -5069,6 +5206,7 @@ msgstr "" #: field:account.move.line,debit:0 #: rml:account.tax.code.entries:0 #: rml:account.third_party_ledger:0 +#: rml:account.vat.declaration:0 #: field:report.hr.timesheet.invoice.journal,revenue:0 msgid "Debit" msgstr "" @@ -5078,11 +5216,6 @@ msgstr "" msgid "All Months" msgstr "" -#. module: account -#: model:account.journal,name:account.bank_journal -msgid "x Bank Journal" -msgstr "" - #. module: account #: wizard_field:account.invoice.refund,init,date:0 msgid "Operation date" @@ -5138,7 +5271,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: account #: rml:account.third_party_ledger:0 @@ -5285,8 +5418,8 @@ msgid "Account Tax Code Template" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Balance:" +#: view:account.subscription:0 +msgid "Subscription Periods" msgstr "" #. module: account @@ -5366,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5437,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5537,7 +5680,6 @@ msgstr "" #. module: account #: rml:account.account.balance:0 #: rml:account.general.journal:0 -#: rml:account.overdue:0 msgid ":" msgstr "" @@ -5552,13 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "" - -#. module: account -#: model:account.journal,name:account.expenses_journal -msgid "x Expenses Journal" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5640,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -5663,11 +5801,6 @@ msgstr "" msgid "Taxes missing !" msgstr "" -#. module: account -#: help:account.invoice,partner_bank:0 -msgid "The bank account to pay to or to be paid from" -msgstr "" - #. module: account #: rml:account.invoice:0 msgid "Refund" @@ -5690,6 +5823,11 @@ msgstr "" msgid "Analytic Journal Definition" msgstr "" +#. module: account +#: field:account.journal,entry_posted:0 +msgid "Skip 'Draft' State for Created Entries" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "account.tax.template" @@ -5790,6 +5928,7 @@ msgid "Total amount due:" msgstr "" #. module: account +#: wizard_field:account.analytic.account.chart,init,to_date:0 #: wizard_field:account.analytic.line,init,to_date:0 msgid "To" msgstr "" @@ -5948,12 +6087,6 @@ msgstr "" msgid "Customer" msgstr "" -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft invoice." -msgstr "" - #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" @@ -6012,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6091,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" @@ -6178,6 +6307,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_aged_trial_balance.py:0 +#, python-format +msgid "You must enter a period length that cannot be 0 or below !" +msgstr "" + #. module: account #: wizard_button:account.wizard_paid_open,init,yes:0 msgid "Yes" @@ -6189,7 +6324,7 @@ msgid "Check this if the user is allowed to reconcile entries in this account." msgstr "" #. module: account -#: wizard_button:account.subscription.generate,init,generate:0 -msgid "Compute Entry Dates" +#: model:ir.actions.report.xml,name:account.account_overdue +msgid "Overdue Payments" msgstr "" diff --git a/addons/account/i18n/tr_TR.po b/addons/account/i18n/tr_TR.po index afe84589e45..7ed9ddccbf2 100644 --- a/addons/account/i18n/tr_TR.po +++ b/addons/account/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Vergi Hesabı" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Vergi Hesabı" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/uk_UK.po b/addons/account/i18n/uk_UK.po index e62dcaf7e85..8bc7810ecea 100644 --- a/addons/account/i18n/uk_UK.po +++ b/addons/account/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "Рахунок податку" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "План Рахунків" msgid "Move line select" msgstr "Перемістити вибраний рядок" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "Аналітичні записи" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "Документ" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "Видатки та доходи рахунку за журналом" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "Сума по валюті" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "Друк аналітичних журналів" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "Документ" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,9 +1468,9 @@ msgid "Analytic lines" msgstr "Рядки аналітики" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "Сума виражена у іншій валюті, якщо це мультивалютна проводка." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "Опції" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "Сума виражена в іншій валюті" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "і журнали" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "Залиште порожнім, щоб використовувати період дати затвердження" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "Виписка банку" msgid "Information addendum" msgstr "Інформаційний додаток" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "В обговоренні" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "Шановний(а)" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "Посилання на інвойс" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "Відкритий стан" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "Рахунок податку" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "Всі чорнові проводки у цьому журналі, а msgid "Date of the day" msgstr "Дата дня" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "Закрито" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,9 +4143,9 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "Оплачено" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "Ви можете зробити відмітку рядку проводки як спірний стосовно відповідного партнера" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "Ліміт Платежів" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "Сальдо за рахунком" msgid "Analytic Check" msgstr "Контроль аналітики" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "Можлива інша валюта, якщо це мультивалютний запис" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "Чорновик" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "Оплачено" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,9 +5694,9 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "і журнали" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." +msgstr "" #. module: account #: view:account.bank.statement:0 @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "Загальний журнал" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "Готовність" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 01465c89f23..4bf7943108e 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "增值税科目" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "增值税科目" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 96c2dc239c7..28c55858639 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,10 +80,9 @@ msgid "This account will be used to value incoming stock for the current product msgstr "" #. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "税账号" +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -188,6 +187,12 @@ msgstr "" msgid "Move line select" msgstr "" +#. module: account +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "No Period found on Invoice!" +msgstr "" + #. module: account #: view:account.tax:0 #: view:account.tax.template:0 @@ -286,6 +291,7 @@ msgid "Gives the view used when writing or browsing entries in this journal. The msgstr "" #. module: account +#: help:account.invoice,date_due:0 #: help:account.invoice,payment_term:0 msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." msgstr "" @@ -741,6 +747,11 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: account +#: rml:account.tax.code.entries:0 +msgid "Voucher Nb" +msgstr "" + #. module: account #: field:account.analytic.line,user_id:0 #: field:account.journal,user_id:0 @@ -907,6 +918,11 @@ msgstr "" msgid "Account cost and revenue by journal" msgstr "" +#. module: account +#: help:account.account.template,user_type:0 +msgid "These types are defined according to your country. The type contain more information about the account and it's specificities." +msgstr "" + #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "6" @@ -984,6 +1000,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No Data Available" msgstr "" @@ -1175,11 +1192,6 @@ msgstr "" msgid "Print Analytic Journals" msgstr "" -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - #. module: account #: help:account.payment.term.line,sequence:0 msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" @@ -1253,6 +1265,11 @@ msgstr "" msgid "Journal de vente" msgstr "" +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 @@ -1451,8 +1468,8 @@ msgid "Analytic lines" msgstr "" #. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." msgstr "" #. module: account @@ -2194,11 +2211,6 @@ msgstr "" msgid "Options" msgstr "" -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 msgid "Customer Invoice Process" @@ -2530,6 +2542,11 @@ msgstr "" msgid "Some entries are already reconciled !" msgstr "" +#. module: account +#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 +msgid "and Journals" +msgstr "" + #. module: account #: field:account.journal,refund_journal:0 msgid "Refund Journal" @@ -2556,11 +2573,6 @@ msgstr "" msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." msgstr "" -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - #. module: account #: rml:account.central.journal:0 msgid "Journal Code" @@ -2652,11 +2664,6 @@ msgstr "" msgid "Information addendum" msgstr "" -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 @@ -2836,11 +2843,22 @@ msgstr "" msgid "Unable to change tax !" msgstr "" +#. module: account +#: help:account.account.template,type:0 +msgid "This type is used to differenciate types with special effects in Open ERP: view can not have entries, consolidation are accounts that can have children accounts for multi-company consolidations, payable/receivable are for partners accounts (for debit/credit computations), closed for deprecated accounts." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_generic_report msgid "Generic Reports" @@ -2931,6 +2949,7 @@ msgstr "发票参照" #: field:account.chart.template,name:0 #: field:account.config.wizard,name:0 #: field:account.model.line,name:0 +#: field:account.move,name:0 #: field:account.move.line,name:0 #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 @@ -3033,6 +3052,7 @@ msgstr "" #: code:addons/account/wizard/wizard_central_journal.py:0 #: code:addons/account/wizard/wizard_general_journal.py:0 #: code:addons/account/wizard/wizard_print_journal.py:0 +#: code:addons/account/wizard/wizard_third_party_ledger.py:0 #, python-format msgid "No records found for your selection!" msgstr "" @@ -3043,6 +3063,12 @@ msgstr "" msgid "The account entries lines are not in valid state." msgstr "" +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "税账号" + #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "From statement, create entries" @@ -3663,6 +3689,11 @@ msgstr "" msgid "Date of the day" msgstr "" +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "The amount expressed in an optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 @@ -4043,6 +4074,11 @@ msgstr "" msgid "Payment Entries" msgstr "" +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or tax code account." +msgstr "" + #. module: account #: help:account.automatic.reconcile,init,account_ids:0 msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" @@ -4107,8 +4143,8 @@ msgid "By Period" msgstr "" #. module: account -#: rml:account.overdue:0 -msgid "Paid" +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" msgstr "" #. module: account @@ -4280,6 +4316,13 @@ msgstr "" msgid "You can check this box to mark the entry line as a litigation with the associated partner" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#: code:addons/account/wizard/wizard_refund.py:0 +#, python-format +msgid "Data Insufficient !" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 @@ -4299,11 +4342,6 @@ msgstr "" msgid "Date/Period Filter" msgstr "" -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - #. module: account #: rml:account.analytic.account.journal:0 #: selection:account.analytic.journal,type:0 @@ -4537,11 +4575,6 @@ msgstr "" msgid "Internal Type" msgstr "" -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - #. module: account #: selection:account.automatic.reconcile,init,power:0 msgid "9" @@ -5065,11 +5098,6 @@ msgstr "" msgid "Analytic Check" msgstr "" -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_state_open.py:0 @@ -5471,6 +5499,11 @@ msgstr "" msgid "This period is already closed !" msgstr "" +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 @@ -5542,6 +5575,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: account +#: rml:account.overdue:0 +msgid "Paid" +msgstr "" + #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree11 #: model:ir.ui.menu,name:account.menu_action_invoice_tree11 @@ -5656,8 +5694,8 @@ msgid "At Date" msgstr "" #. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" +#: help:account.move.line,tax_amount:0 +msgid "If the Tax account is tax code account, this field will contain the taxed amount.If the tax account is base tax code, this field will contain the basic amount(without tax)." msgstr "" #. module: account @@ -5739,6 +5777,7 @@ msgid "General Journal" msgstr "" #. module: account +#: field:account.account,balance:0 #: rml:account.account.balance:0 #: selection:account.account.type,close_method:0 #: field:account.analytic.account,balance:0 @@ -6106,6 +6145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear,name:0 +#: field:account.journal.period,fiscalyear_id:0 #: field:account.period,fiscalyear_id:0 #: field:account.sequence.fiscalyear,fiscalyear_id:0 #: field:fiscalyear.seq,fiscalyear_id:0 @@ -6185,11 +6225,6 @@ msgstr "" msgid "Usually 1 or -1." msgstr "" -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - #. module: account #: view:res.partner:0 msgid "Bank Details" diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot index 1c913a6d6d6..961eef187ba 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ar_AR.po b/addons/account_analytic_analysis/i18n/ar_AR.po index e7c78e76159..1bb84cf71d1 100644 --- a/addons/account_analytic_analysis/i18n/ar_AR.po +++ b/addons/account_analytic_analysis/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/bg_BG.po b/addons/account_analytic_analysis/i18n/bg_BG.po index 68f29352c1c..5ff2578cb53 100644 --- a/addons/account_analytic_analysis/i18n/bg_BG.po +++ b/addons/account_analytic_analysis/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/bs_BS.po b/addons/account_analytic_analysis/i18n/bs_BS.po index f2ecec75838..601c39825ad 100644 --- a/addons/account_analytic_analysis/i18n/bs_BS.po +++ b/addons/account_analytic_analysis/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ca_ES.po b/addons/account_analytic_analysis/i18n/ca_ES.po index cb19c994dcc..83963695701 100644 --- a/addons/account_analytic_analysis/i18n/ca_ES.po +++ b/addons/account_analytic_analysis/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/cs_CS.po b/addons/account_analytic_analysis/i18n/cs_CS.po index 67ce200bdc8..d85b6de1519 100644 --- a/addons/account_analytic_analysis/i18n/cs_CS.po +++ b/addons/account_analytic_analysis/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "Hours summary by user" msgstr "" +#. module: account_analytic_analysis +#: field:account.analytic.account,last_invoice_date:0 +msgid "Last Invoice Date" +msgstr "" + #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." @@ -63,8 +68,8 @@ msgid "Theorical Revenue" msgstr "" #. module: account_analytic_analysis -#: field:account.analytic.account,last_invoice_date:0 -msgid "Last Invoice Date" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/cs_CZ.po b/addons/account_analytic_analysis/i18n/cs_CZ.po index e49f945be47..6e1438c41d4 100644 --- a/addons/account_analytic_analysis/i18n/cs_CZ.po +++ b/addons/account_analytic_analysis/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/de_DE.po b/addons/account_analytic_analysis/i18n/de_DE.po index d4feeeef2e5..9c73df04220 100644 --- a/addons/account_analytic_analysis/i18n/de_DE.po +++ b/addons/account_analytic_analysis/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index adbb5356ace..ef2de4712a6 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/es_ES.po b/addons/account_analytic_analysis/i18n/es_ES.po index 29889c223d8..7e2288216b5 100644 --- a/addons/account_analytic_analysis/i18n/es_ES.po +++ b/addons/account_analytic_analysis/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/et_EE.po b/addons/account_analytic_analysis/i18n/et_EE.po index bba549744f6..9a9cee85f72 100644 --- a/addons/account_analytic_analysis/i18n/et_EE.po +++ b/addons/account_analytic_analysis/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Teoreetiline tulu" #. module: account_analytic_analysis #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 @@ -178,7 +178,9 @@ msgstr "Minu kontod" msgid "Modify account analytic view to show\n" "important data for project manager of services companies.\n" "Add menu to show relevant information for each manager." -msgstr "" +msgstr "Muuda konto analüütilist vaadet, et näidata\n" +"tähtsaid andmeid teenindusettevõtete projektijuhile.\n" +"Lisa menüü, et näidata asjakohast infot iga juhi jaoks." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -198,7 +200,7 @@ msgstr "Analüütilised kontod" #. module: account_analytic_analysis #: model:ir.module.module,shortdesc:account_analytic_analysis.module_meta_information msgid "report_account_analytic" -msgstr "" +msgstr "report_account_analytic" #. module: account_analytic_analysis #: field:account.analytic.account,ca_invoiced:0 diff --git a/addons/account_analytic_analysis/i18n/fr_FR.po b/addons/account_analytic_analysis/i18n/fr_FR.po index 4712ebc3dd1..1a4dc5e50e2 100644 --- a/addons/account_analytic_analysis/i18n/fr_FR.po +++ b/addons/account_analytic_analysis/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/hr_HR.po b/addons/account_analytic_analysis/i18n/hr_HR.po index 4e2d4c950d7..4bf89a27206 100644 --- a/addons/account_analytic_analysis/i18n/hr_HR.po +++ b/addons/account_analytic_analysis/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/hu_HU.po b/addons/account_analytic_analysis/i18n/hu_HU.po index ee3587e6202..78c968a8e58 100644 --- a/addons/account_analytic_analysis/i18n/hu_HU.po +++ b/addons/account_analytic_analysis/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/it_IT.po b/addons/account_analytic_analysis/i18n/it_IT.po index 2467b7f5bf4..225512e9ac1 100644 --- a/addons/account_analytic_analysis/i18n/it_IT.po +++ b/addons/account_analytic_analysis/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theorial Revenue - Total Costs" -msgstr "" +msgstr "Calcolato utilizzando la formula: Reddito teorico - costi totali" #. module: account_analytic_analysis #: constraint:ir.model:0 @@ -91,7 +91,7 @@ msgstr "Nuovo conto analitico" #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 msgid "Theorical Margin" -msgstr "" +msgstr "Margine teorico" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin_rate:0 @@ -107,27 +107,27 @@ msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 msgid "Date of the latest work done on this account." -msgstr "" +msgstr "Data dell'ultimo lavoro fatto su questo conto." #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_invoiced_date:0 msgid "If invoice from the costs, this is the date of the latest work or cost that have been invoiced." -msgstr "" +msgstr "Se fatturato da costi, questa è la data dell'ultimo lavoro o costo che è stato fatturato." #. module: account_analytic_analysis #: model:ir.ui.menu,name:account_analytic_analysis.menu_invoicing msgid "Invoicing" -msgstr "" +msgstr "Fatturazione" #. module: account_analytic_analysis #: field:account.analytic.account,last_worked_date:0 msgid "Date of Last Cost/Work" -msgstr "" +msgstr "Data dell'ultimo costo/lavoro" #. module: account_analytic_analysis #: field:account.analytic.account,total_cost:0 msgid "Total Costs" -msgstr "" +msgstr "Totale costi" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 @@ -137,7 +137,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_hours:0 msgid "Remaining Hours" -msgstr "" +msgstr "Ore Rimanenti" #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -148,7 +148,7 @@ msgstr "" #: field:account.analytic.account,user_ids:0 #: field:account_analytic_analysis.summary.user,user:0 msgid "User" -msgstr "Nome utente" +msgstr "Utente" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_pending @@ -165,7 +165,7 @@ msgstr "Le Mie Registrazioni non Fatturate" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 msgid "Computed using the formula: Invoiced Amount - Total Costs." -msgstr "" +msgstr "Calcolato utilizzando la formula: importo fatturato - totale costi" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed @@ -183,12 +183,12 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Hours" -msgstr "" +msgstr "Ore non fatturate" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 msgid "Hours Tot" -msgstr "" +msgstr "Ore tot." #. module: account_analytic_analysis #: model:ir.ui.menu,name:account_analytic_analysis.menu_account @@ -203,38 +203,38 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,ca_invoiced:0 msgid "Invoiced Amount" -msgstr "" +msgstr "Importo Fatturato" #. module: account_analytic_analysis #: model:ir.ui.menu,name:account_analytic_analysis.next_id_71 msgid "Financial Project Management" -msgstr "" +msgstr "Amministrazione Progetto Finanziario" #. module: account_analytic_analysis #: field:account.analytic.account,last_worked_invoiced_date:0 msgid "Date of Last Invoiced Cost" -msgstr "" +msgstr "Data dell'ultimo costo fatturato" #. module: account_analytic_analysis #: field:account.analytic.account,ca_to_invoice:0 msgid "Uninvoiced Amount" -msgstr "" +msgstr "Importo non fatturato" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all_pending #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all_pending msgid "Pending Analytic Accounts" -msgstr "Contabilità analitiche in attesa" +msgstr "Contabilità Analitica in sospeso" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Hours" -msgstr "" +msgstr "Ore fatturate" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin:0 msgid "Real Margin" -msgstr "" +msgstr "Margine reale" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 @@ -249,12 +249,12 @@ msgstr "Riepilogo ore per mese" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin_rate:0 msgid "Computes using the formula: (Real Margin / Total Costs) * 100." -msgstr "" +msgstr "Calcolato utilizzando la formula: (Margine Reale / Costi Totali) * 100" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Number of hours (from journal of type 'general') that can be invoiced if you invoice based on analytic account." -msgstr "" +msgstr "Numero di ore (dal giornale di tipo 'generale') che possono essere fatturate se si fattura basandosi sui conti analitici." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -274,7 +274,7 @@ msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 msgid "Computed using the formula: Invoiced Amount / Hours Tot." -msgstr "" +msgstr "Calcolato utilizzando la formula: Totale fatturato / tot. ore" #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 @@ -291,7 +291,7 @@ msgstr "Durata totale" #: code:addons/account_analytic_analysis/account_analytic_analysis.py:0 #, python-format msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" +msgstr "Stai tentando di aggirare una regola d'accesso (Tipo Documento: %s)." #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 diff --git a/addons/account_analytic_analysis/i18n/ko_KO.po b/addons/account_analytic_analysis/i18n/ko_KO.po index ed2aecf2195..02de4a7fc48 100644 --- a/addons/account_analytic_analysis/i18n/ko_KO.po +++ b/addons/account_analytic_analysis/i18n/ko_KO.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2008-12-24 14:00+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:23+0000\n" "Last-Translator: sunygu \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:28+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:32+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis @@ -25,20 +25,15 @@ msgid "" msgstr "한시간 마다 항상 기재되고 있습니다." #. module: account_analytic_analysis -#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user -msgid "Hours summary by user" -msgstr "" +#: field:account.analytic.account,last_invoice_date:0 +msgid "Last Invoice Date" +msgstr "마지막 송장 정보" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." msgstr "식을 사용하여 계산합니다." -#. module: account_analytic_analysis -#: help:account.analytic.account,remaining_hours:0 -msgid "Computed using the formula: Maximum Quantity - Hours Tot." -msgstr "" - #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all @@ -67,21 +62,36 @@ msgid "Theorical Revenue" msgstr "Theorical 수익" #. module: account_analytic_analysis -#: field:account.analytic.account,last_invoice_date:0 -msgid "Last Invoice Date" -msgstr "마지막 송장 정보" +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "물건이름은 X_가 같이 사용되어야 하고 특별한 이름을 사용하면 안됩니다." + +#. module: account_analytic_analysis +#: field:account.analytic.account,hours_quantity:0 +msgid "Hours Tot" +msgstr "한 시간 조금" + +#. module: account_analytic_analysis +#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user +msgid "Hours summary by user" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,remaining_hours:0 +msgid "Computed using the formula: Maximum Quantity - Hours Tot." +msgstr "" + +#. module: account_analytic_analysis +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theorial Revenue - Total Costs" msgstr "" -#. module: account_analytic_analysis -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "물건이름은 X_가 같이 사용되어야 하고 특별한 이름을 사용하면 안됩니다." - #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_new #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_new @@ -180,21 +190,29 @@ msgstr "" msgid "My Accounts" msgstr "" +#. module: account_analytic_analysis +#: model:ir.module.module,description:account_analytic_analysis.module_meta_information +msgid "" +"Modify account analytic view to show\n" +"important data for project manager of services companies.\n" +"Add menu to show relevant information for each manager." +msgstr "" + #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Hours" msgstr "" -#. module: account_analytic_analysis -#: field:account.analytic.account,hours_quantity:0 -msgid "Hours Tot" -msgstr "한 시간 조금" - #. module: account_analytic_analysis #: model:ir.ui.menu,name:account_analytic_analysis.menu_account msgid "Analytic Accounts" msgstr "" +#. module: account_analytic_analysis +#: model:ir.module.module,shortdesc:account_analytic_analysis.module_meta_information +msgid "report_account_analytic" +msgstr "" + #. module: account_analytic_analysis #: field:account.analytic.account,ca_invoiced:0 msgid "Invoiced Amount" diff --git a/addons/account_analytic_analysis/i18n/lt_LT.po b/addons/account_analytic_analysis/i18n/lt_LT.po index 802494aa2cc..262829b3b47 100644 --- a/addons/account_analytic_analysis/i18n/lt_LT.po +++ b/addons/account_analytic_analysis/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 3f6f6743353..4865de85cf4 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/nl_NL.po b/addons/account_analytic_analysis/i18n/nl_NL.po index 72eebd9a6e7..fa1466dec48 100644 --- a/addons/account_analytic_analysis/i18n/nl_NL.po +++ b/addons/account_analytic_analysis/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pl_PL.po b/addons/account_analytic_analysis/i18n/pl_PL.po index 62e36c210f5..4221ee70a61 100644 --- a/addons/account_analytic_analysis/i18n/pl_PL.po +++ b/addons/account_analytic_analysis/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 1071038fcda..db1eb7ef963 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pt_PT.po b/addons/account_analytic_analysis/i18n/pt_PT.po index 3606838e69d..63b67219b2c 100644 --- a/addons/account_analytic_analysis/i18n/pt_PT.po +++ b/addons/account_analytic_analysis/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ro_RO.po b/addons/account_analytic_analysis/i18n/ro_RO.po index bd6eefb9ee2..e47dddc48dc 100644 --- a/addons/account_analytic_analysis/i18n/ro_RO.po +++ b/addons/account_analytic_analysis/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ru_RU.po b/addons/account_analytic_analysis/i18n/ru_RU.po index 09d1464d0a9..1926cc79108 100644 --- a/addons/account_analytic_analysis/i18n/ru_RU.po +++ b/addons/account_analytic_analysis/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sl_SL.po b/addons/account_analytic_analysis/i18n/sl_SL.po index 870964c21f8..f163b8eaa38 100644 --- a/addons/account_analytic_analysis/i18n/sl_SL.po +++ b/addons/account_analytic_analysis/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sv_SE.po b/addons/account_analytic_analysis/i18n/sv_SE.po index cdf4a9432b4..71b48504f49 100644 --- a/addons/account_analytic_analysis/i18n/sv_SE.po +++ b/addons/account_analytic_analysis/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sv_SV.po b/addons/account_analytic_analysis/i18n/sv_SV.po index 6834c7d250a..3ac11a6a8d0 100644 --- a/addons/account_analytic_analysis/i18n/sv_SV.po +++ b/addons/account_analytic_analysis/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "Hours summary by user" msgstr "" +#. module: account_analytic_analysis +#: field:account.analytic.account,last_invoice_date:0 +msgid "Last Invoice Date" +msgstr "" + #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." @@ -63,8 +68,8 @@ msgid "Theorical Revenue" msgstr "" #. module: account_analytic_analysis -#: field:account.analytic.account,last_invoice_date:0 -msgid "Last Invoice Date" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/tr_TR.po b/addons/account_analytic_analysis/i18n/tr_TR.po index 58ba83e39d0..1aac2434bfa 100644 --- a/addons/account_analytic_analysis/i18n/tr_TR.po +++ b/addons/account_analytic_analysis/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/uk_UK.po b/addons/account_analytic_analysis/i18n/uk_UK.po index 3f654c1ff23..435e84330cd 100644 --- a/addons/account_analytic_analysis/i18n/uk_UK.po +++ b/addons/account_analytic_analysis/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 799a443a218..3787159c597 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index 11744a55ef4..84cd0c8528e 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 ce4b3c63f5b..f1f8d7507d8 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ar_AR.po b/addons/account_analytic_default/i18n/ar_AR.po index f6d379652a2..4cfbfc1eab8 100644 --- a/addons/account_analytic_default/i18n/ar_AR.po +++ b/addons/account_analytic_default/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/bg_BG.po b/addons/account_analytic_default/i18n/bg_BG.po index d8d3a43e753..fc84eff9986 100644 --- a/addons/account_analytic_default/i18n/bg_BG.po +++ b/addons/account_analytic_default/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/bs_BS.po b/addons/account_analytic_default/i18n/bs_BS.po index a1910ca3944..5a3fa22a7ac 100644 --- a/addons/account_analytic_default/i18n/bs_BS.po +++ b/addons/account_analytic_default/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ca_ES.po b/addons/account_analytic_default/i18n/ca_ES.po index b65fce532d9..7e1a4a005b7 100644 --- a/addons/account_analytic_default/i18n/ca_ES.po +++ b/addons/account_analytic_default/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/cs_CS.po b/addons/account_analytic_default/i18n/cs_CS.po index 1ab1b50cd58..6bd02321c4c 100644 --- a/addons/account_analytic_default/i18n/cs_CS.po +++ b/addons/account_analytic_default/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -77,6 +77,11 @@ msgstr "" msgid "User" msgstr "" +#. module: account_analytic_default +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open msgid "Entries" diff --git a/addons/account_analytic_default/i18n/cs_CZ.po b/addons/account_analytic_default/i18n/cs_CZ.po index 3c1b24bee22..c810e9963b3 100644 --- a/addons/account_analytic_default/i18n/cs_CZ.po +++ b/addons/account_analytic_default/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/de_DE.po b/addons/account_analytic_default/i18n/de_DE.po index 2da205e8bb2..95d1a29823b 100644 --- a/addons/account_analytic_default/i18n/de_DE.po +++ b/addons/account_analytic_default/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index b3e708bda41..d589384f312 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/es_ES.po b/addons/account_analytic_default/i18n/es_ES.po index 4fb475537c0..57270e785b4 100644 --- a/addons/account_analytic_default/i18n/es_ES.po +++ b/addons/account_analytic_default/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/et_EE.po b/addons/account_analytic_default/i18n/et_EE.po index 7a43ddfc5c7..2c86cf4abaa 100644 --- a/addons/account_analytic_default/i18n/et_EE.po +++ b/addons/account_analytic_default/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Analüütilised vaikeväärtused" #. module: account_analytic_default #: model:ir.module.module,shortdesc:account_analytic_default.module_meta_information msgid "Account Analytic Default" -msgstr "" +msgstr "Vaikimisi analüütiline konto" #. module: account_analytic_default #: constraint:ir.ui.view:0 @@ -65,7 +65,7 @@ msgstr "Toode" #. module: account_analytic_default #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default @@ -80,7 +80,7 @@ msgstr "Kasutaja" #. module: account_analytic_default #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open diff --git a/addons/account_analytic_default/i18n/fr_FR.po b/addons/account_analytic_default/i18n/fr_FR.po index 2b5cf3e4eed..4f49604a517 100644 --- a/addons/account_analytic_default/i18n/fr_FR.po +++ b/addons/account_analytic_default/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/hr_HR.po b/addons/account_analytic_default/i18n/hr_HR.po index 094933d2110..7111b42deab 100644 --- a/addons/account_analytic_default/i18n/hr_HR.po +++ b/addons/account_analytic_default/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/hu_HU.po b/addons/account_analytic_default/i18n/hu_HU.po index e73a1fd34e1..596ea4b1e1d 100644 --- a/addons/account_analytic_default/i18n/hu_HU.po +++ b/addons/account_analytic_default/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/it_IT.po b/addons/account_analytic_default/i18n/it_IT.po index 3f000b02dd8..e0677ea3552 100644 --- a/addons/account_analytic_default/i18n/it_IT.po +++ b/addons/account_analytic_default/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/lt_LT.po b/addons/account_analytic_default/i18n/lt_LT.po index 11522414757..fbf154b3028 100644 --- a/addons/account_analytic_default/i18n/lt_LT.po +++ b/addons/account_analytic_default/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 0554d6a41f2..099a7eccd50 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/nl_NL.po b/addons/account_analytic_default/i18n/nl_NL.po index 4abc04d8a01..de22c8c62e4 100644 --- a/addons/account_analytic_default/i18n/nl_NL.po +++ b/addons/account_analytic_default/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pl_PL.po b/addons/account_analytic_default/i18n/pl_PL.po index a420bc4ec16..b55462dbad8 100644 --- a/addons/account_analytic_default/i18n/pl_PL.po +++ b/addons/account_analytic_default/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 6631a52caa7..580d340201f 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pt_PT.po b/addons/account_analytic_default/i18n/pt_PT.po index a332a9970d4..0f14a830a76 100644 --- a/addons/account_analytic_default/i18n/pt_PT.po +++ b/addons/account_analytic_default/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ro_RO.po b/addons/account_analytic_default/i18n/ro_RO.po index 6509b697fd1..f14b706eb18 100644 --- a/addons/account_analytic_default/i18n/ro_RO.po +++ b/addons/account_analytic_default/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ru_RU.po b/addons/account_analytic_default/i18n/ru_RU.po index 03a504e0630..a171a8c6fb7 100644 --- a/addons/account_analytic_default/i18n/ru_RU.po +++ b/addons/account_analytic_default/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sl_SL.po b/addons/account_analytic_default/i18n/sl_SL.po index 99b156c72dd..db0c00e7c25 100644 --- a/addons/account_analytic_default/i18n/sl_SL.po +++ b/addons/account_analytic_default/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sv_SE.po b/addons/account_analytic_default/i18n/sv_SE.po index eb3279f0e79..a13e12dc0fb 100644 --- a/addons/account_analytic_default/i18n/sv_SE.po +++ b/addons/account_analytic_default/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sv_SV.po b/addons/account_analytic_default/i18n/sv_SV.po index 562291ddeb3..0c3d7afd1d5 100644 --- a/addons/account_analytic_default/i18n/sv_SV.po +++ b/addons/account_analytic_default/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -77,6 +77,11 @@ msgstr "" msgid "User" msgstr "" +#. module: account_analytic_default +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open msgid "Entries" diff --git a/addons/account_analytic_default/i18n/tr_TR.po b/addons/account_analytic_default/i18n/tr_TR.po index 0089afcbf65..b850c1b374c 100644 --- a/addons/account_analytic_default/i18n/tr_TR.po +++ b/addons/account_analytic_default/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/uk_UK.po b/addons/account_analytic_default/i18n/uk_UK.po index e44b3b27122..cc762a59744 100644 --- a/addons/account_analytic_default/i18n/uk_UK.po +++ b/addons/account_analytic_default/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index 384dea00744..b6ed6bfaf01 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 80c95c0ef08..725a2d3d4f5 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 601dfee7919..7d54ab6e67b 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ar_AR.po b/addons/account_analytic_plans/i18n/ar_AR.po index 55eed775762..9357461b6b3 100644 --- a/addons/account_analytic_plans/i18n/ar_AR.po +++ b/addons/account_analytic_plans/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/bg_BG.po b/addons/account_analytic_plans/i18n/bg_BG.po index e8fd93bbd1c..13a96396ada 100644 --- a/addons/account_analytic_plans/i18n/bg_BG.po +++ b/addons/account_analytic_plans/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/bs_BS.po b/addons/account_analytic_plans/i18n/bs_BS.po index 1286b22ce55..460ca6e6b43 100644 --- a/addons/account_analytic_plans/i18n/bs_BS.po +++ b/addons/account_analytic_plans/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ca_ES.po b/addons/account_analytic_plans/i18n/ca_ES.po index 25910992754..eabe9a09785 100644 --- a/addons/account_analytic_plans/i18n/ca_ES.po +++ b/addons/account_analytic_plans/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/cs_CS.po b/addons/account_analytic_plans/i18n/cs_CS.po index 769327bd201..8bda981f6c1 100644 --- a/addons/account_analytic_plans/i18n/cs_CS.po +++ b/addons/account_analytic_plans/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "End Date" msgstr "" +#. module: account_analytic_plans +#: field:account.analytic.plan.instance,account3_ids:0 +msgid "Account3 Id" +msgstr "" + #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,rate:0 msgid "Rate (%)" @@ -97,8 +102,8 @@ msgid "Currency:" msgstr "" #. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Percentage" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_analytic_plans @@ -106,6 +111,11 @@ msgstr "" msgid "Plan Name" msgstr "" +#. module: account_analytic_plans +#: rml:account.analytic.account.crossovered.analytic:0 +msgid "Percentage" +msgstr "" + #. module: account_analytic_plans #: wizard_field:wizard.crossovered.analytic,init,empty_line:0 msgid "Dont show empty lines" @@ -117,8 +127,9 @@ msgid "Select Information" msgstr "" #. module: account_analytic_plans -#: field:account.analytic.plan.instance,account3_ids:0 -msgid "Account3 Id" +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "A model having this name and code already exists !" msgstr "" #. module: account_analytic_plans @@ -151,6 +162,12 @@ msgstr "" msgid "Analytic Plan Line" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "No analytic plan defined !" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account Reference:" @@ -171,6 +188,13 @@ msgstr "" msgid "to" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "Error" +msgstr "" + #. module: account_analytic_plans #: view:account.analytic.plan:0 #: field:account.analytic.plan,plan_ids:0 @@ -179,6 +203,12 @@ msgstr "" msgid "Analytic Plans" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/wizard_crossovered_analytic.py:0 +#, python-format +msgid "User Error" +msgstr "" + #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 msgid "Account1 Id" @@ -267,6 +297,18 @@ msgstr "" msgid "Account2 Id" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "The Total Should be Between %s and %s" +msgstr "" + +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "Please put a name and a code before saving the model !" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Amount" @@ -327,6 +369,12 @@ msgstr "" msgid "Analytic Account" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "Value Error" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Printing date:" diff --git a/addons/account_analytic_plans/i18n/cs_CZ.po b/addons/account_analytic_plans/i18n/cs_CZ.po index a4960bc9037..74d8d554d02 100644 --- a/addons/account_analytic_plans/i18n/cs_CZ.po +++ b/addons/account_analytic_plans/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/de_DE.po b/addons/account_analytic_plans/i18n/de_DE.po index 268c5ad8664..f0aba166829 100644 --- a/addons/account_analytic_plans/i18n/de_DE.po +++ b/addons/account_analytic_plans/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index bea9a027fbc..0fca604173d 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/es_ES.po b/addons/account_analytic_plans/i18n/es_ES.po index 9595d1a6037..02de19c0a34 100644 --- a/addons/account_analytic_plans/i18n/es_ES.po +++ b/addons/account_analytic_plans/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/et_EE.po b/addons/account_analytic_plans/i18n/et_EE.po index 4d31e6b7b56..746bd045cd2 100644 --- a/addons/account_analytic_plans/i18n/et_EE.po +++ b/addons/account_analytic_plans/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -104,7 +104,7 @@ msgstr "Valuuta:" #. module: account_analytic_plans #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_analytic_plans #: field:account.analytic.plan.line,name:0 diff --git a/addons/account_analytic_plans/i18n/fr_FR.po b/addons/account_analytic_plans/i18n/fr_FR.po index 593b7c60497..5b7d981b3dd 100644 --- a/addons/account_analytic_plans/i18n/fr_FR.po +++ b/addons/account_analytic_plans/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/hr_HR.po b/addons/account_analytic_plans/i18n/hr_HR.po index e07e8bb6d49..69632b43435 100644 --- a/addons/account_analytic_plans/i18n/hr_HR.po +++ b/addons/account_analytic_plans/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/hu_HU.po b/addons/account_analytic_plans/i18n/hu_HU.po index 662a81ec199..ca41606d22a 100644 --- a/addons/account_analytic_plans/i18n/hu_HU.po +++ b/addons/account_analytic_plans/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/it_IT.po b/addons/account_analytic_plans/i18n/it_IT.po index dccbe788d1d..3f795dcba3b 100644 --- a/addons/account_analytic_plans/i18n/it_IT.po +++ b/addons/account_analytic_plans/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/lt_LT.po b/addons/account_analytic_plans/i18n/lt_LT.po index 8cbdeef6427..3e3539a467a 100644 --- a/addons/account_analytic_plans/i18n/lt_LT.po +++ b/addons/account_analytic_plans/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index fd24728ce25..bae64e49c49 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/nl_NL.po b/addons/account_analytic_plans/i18n/nl_NL.po index d349e75dbc9..428d669bd1f 100644 --- a/addons/account_analytic_plans/i18n/nl_NL.po +++ b/addons/account_analytic_plans/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pl_PL.po b/addons/account_analytic_plans/i18n/pl_PL.po index fe9b33e9b3e..378c5625d8c 100644 --- a/addons/account_analytic_plans/i18n/pl_PL.po +++ b/addons/account_analytic_plans/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index db98e222aee..09d6b2be7f6 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pt_PT.po b/addons/account_analytic_plans/i18n/pt_PT.po index f282b3cfe1e..e6fd8cd8d32 100644 --- a/addons/account_analytic_plans/i18n/pt_PT.po +++ b/addons/account_analytic_plans/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ro_RO.po b/addons/account_analytic_plans/i18n/ro_RO.po index 232dea1ee33..a1c9ad2606f 100644 --- a/addons/account_analytic_plans/i18n/ro_RO.po +++ b/addons/account_analytic_plans/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ru_RU.po b/addons/account_analytic_plans/i18n/ru_RU.po index f92e4f78e00..39963278716 100644 --- a/addons/account_analytic_plans/i18n/ru_RU.po +++ b/addons/account_analytic_plans/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sl_SL.po b/addons/account_analytic_plans/i18n/sl_SL.po index d97c9a24a8b..8c049190dc4 100644 --- a/addons/account_analytic_plans/i18n/sl_SL.po +++ b/addons/account_analytic_plans/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sv_SE.po b/addons/account_analytic_plans/i18n/sv_SE.po index ca19cf25b7b..baea1e101e4 100644 --- a/addons/account_analytic_plans/i18n/sv_SE.po +++ b/addons/account_analytic_plans/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sv_SV.po b/addons/account_analytic_plans/i18n/sv_SV.po index 18a32fda788..ba739b84749 100644 --- a/addons/account_analytic_plans/i18n/sv_SV.po +++ b/addons/account_analytic_plans/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "End Date" msgstr "" +#. module: account_analytic_plans +#: field:account.analytic.plan.instance,account3_ids:0 +msgid "Account3 Id" +msgstr "" + #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,rate:0 msgid "Rate (%)" @@ -97,8 +102,8 @@ msgid "Currency:" msgstr "" #. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Percentage" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_analytic_plans @@ -106,6 +111,11 @@ msgstr "" msgid "Plan Name" msgstr "" +#. module: account_analytic_plans +#: rml:account.analytic.account.crossovered.analytic:0 +msgid "Percentage" +msgstr "" + #. module: account_analytic_plans #: wizard_field:wizard.crossovered.analytic,init,empty_line:0 msgid "Dont show empty lines" @@ -117,8 +127,9 @@ msgid "Select Information" msgstr "" #. module: account_analytic_plans -#: field:account.analytic.plan.instance,account3_ids:0 -msgid "Account3 Id" +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "A model having this name and code already exists !" msgstr "" #. module: account_analytic_plans @@ -151,6 +162,12 @@ msgstr "" msgid "Analytic Plan Line" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "No analytic plan defined !" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account Reference:" @@ -171,6 +188,13 @@ msgstr "" msgid "to" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "Error" +msgstr "" + #. module: account_analytic_plans #: view:account.analytic.plan:0 #: field:account.analytic.plan,plan_ids:0 @@ -179,6 +203,12 @@ msgstr "" msgid "Analytic Plans" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/wizard_crossovered_analytic.py:0 +#, python-format +msgid "User Error" +msgstr "" + #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 msgid "Account1 Id" @@ -267,6 +297,18 @@ msgstr "" msgid "Account2 Id" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "The Total Should be Between %s and %s" +msgstr "" + +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/wizard/create_model.py:0 +#, python-format +msgid "Please put a name and a code before saving the model !" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Amount" @@ -327,6 +369,12 @@ msgstr "" msgid "Analytic Account" msgstr "" +#. module: account_analytic_plans +#: code:addons/account_analytic_plans/account_analytic_plans.py:0 +#, python-format +msgid "Value Error" +msgstr "" + #. module: account_analytic_plans #: rml:account.analytic.account.crossovered.analytic:0 msgid "Printing date:" diff --git a/addons/account_analytic_plans/i18n/tr_TR.po b/addons/account_analytic_plans/i18n/tr_TR.po index db9ffbc5898..58384a11f24 100644 --- a/addons/account_analytic_plans/i18n/tr_TR.po +++ b/addons/account_analytic_plans/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/uk_UK.po b/addons/account_analytic_plans/i18n/uk_UK.po index be87cbc189a..8f3aad26719 100644 --- a/addons/account_analytic_plans/i18n/uk_UK.po +++ b/addons/account_analytic_plans/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 67514e7da18..d0eb3458c31 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 19ccd8124ea..6cf4e25e35d 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 799f21e7309..1155a18eb51 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ar_AR.po b/addons/account_balance/i18n/ar_AR.po index 576ffdbbb8b..5a59afc8d7f 100644 --- a/addons/account_balance/i18n/ar_AR.po +++ b/addons/account_balance/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/bg_BG.po b/addons/account_balance/i18n/bg_BG.po index 230393e7d03..e74973a72ac 100644 --- a/addons/account_balance/i18n/bg_BG.po +++ b/addons/account_balance/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/bs_BS.po b/addons/account_balance/i18n/bs_BS.po index f7a81c912e4..eb0467e9267 100644 --- a/addons/account_balance/i18n/bs_BS.po +++ b/addons/account_balance/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ca_ES.po b/addons/account_balance/i18n/ca_ES.po index 46cd8c784e3..62fb6617e47 100644 --- a/addons/account_balance/i18n/ca_ES.po +++ b/addons/account_balance/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/cs_CS.po b/addons/account_balance/i18n/cs_CS.po index 875fd8c0a25..af772540034 100644 --- a/addons/account_balance/i18n/cs_CS.po +++ b/addons/account_balance/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/cs_CZ.po b/addons/account_balance/i18n/cs_CZ.po index fe1362d04a8..32bca285e9d 100644 --- a/addons/account_balance/i18n/cs_CZ.po +++ b/addons/account_balance/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/de_DE.po b/addons/account_balance/i18n/de_DE.po index 9072348a649..e76e9e0b593 100644 --- a/addons/account_balance/i18n/de_DE.po +++ b/addons/account_balance/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/es_AR.po b/addons/account_balance/i18n/es_AR.po index bb29f758652..ac20071e910 100644 --- a/addons/account_balance/i18n/es_AR.po +++ b/addons/account_balance/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/es_ES.po b/addons/account_balance/i18n/es_ES.po index 16081fe775c..aa51b246e0f 100644 --- a/addons/account_balance/i18n/es_ES.po +++ b/addons/account_balance/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/et_EE.po b/addons/account_balance/i18n/et_EE.po index 04f6e8e6032..03fa941925d 100644 --- a/addons/account_balance/i18n/et_EE.po +++ b/addons/account_balance/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/fr_FR.po b/addons/account_balance/i18n/fr_FR.po index 893b59130aa..ee21ce8ec07 100644 --- a/addons/account_balance/i18n/fr_FR.po +++ b/addons/account_balance/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/hr_HR.po b/addons/account_balance/i18n/hr_HR.po index 41eb9c4149b..db1f0acdce3 100644 --- a/addons/account_balance/i18n/hr_HR.po +++ b/addons/account_balance/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/hu_HU.po b/addons/account_balance/i18n/hu_HU.po index c2e9941d72f..bb69d682faa 100644 --- a/addons/account_balance/i18n/hu_HU.po +++ b/addons/account_balance/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/id_ID.po b/addons/account_balance/i18n/id_ID.po index 0b97ecf7aca..b83d7386439 100644 --- a/addons/account_balance/i18n/id_ID.po +++ b/addons/account_balance/i18n/id_ID.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2008-10-24 11:20+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:39+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:28+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:30+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_balance @@ -22,27 +22,6 @@ msgstr "" msgid "Show Debit/Credit Information" msgstr "Tampilkan Informasi Debit/Kredit" -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Information" -msgstr "Informasi Akun" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - #. module: account_balance #: rml:account.account.balance.landscape:0 #: rml:account.balance.account.balance:0 @@ -85,16 +64,6 @@ msgstr "Mata uang" msgid "Select Period(s)" msgstr "Pilihan Periode" -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - #. module: account_balance #: wizard_view:account.balance.account.balance.report,init:0 msgid "Select Fiscal Year(s)(Maximum Three Years)" @@ -105,26 +74,11 @@ msgstr "Pilihlah tahun pembukuan(Max. 3 tahun)" msgid "Account balance-Compare Years" msgstr "Neraca Saldo - Perbandingan Tahun" -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,landscape:0 msgid "Show Report in Landscape Form" msgstr "Menampilakan Laporan dalam bentuk Lanscape" -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,format_perc:0 msgid "Show Comparision in %" @@ -141,11 +95,6 @@ msgstr "Pemberitahuan" msgid "Report Options" msgstr "Pilihan Laporan" -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - #. module: account_balance #: wizard_button:account.balance.account.balance.report,backtoinit,end:0 #: wizard_button:account.balance.account.balance.report,zero_years,end:0 @@ -158,56 +107,21 @@ msgstr "Ok" msgid "Total:" msgstr "Total:" -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,account_choice:0 msgid "Show Accounts" msgstr "Menampilkan Akun-akun" -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - #. module: account_balance #: wizard_view:account.balance.account.balance.report,backtoinit:0 msgid "1. You have selected more than 3 years in any case." msgstr "1. Anda dapat memilih lebih dari 3 tahun pada beberapa kasus" -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,select_account:0 msgid "Select Reference Account(for % comparision)" msgstr "Memilih Akun referensi (untuk perbandingan bentuk %)" -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - #. module: account_balance #: rml:account.account.balance.landscape:0 #: rml:account.balance.account.balance:0 @@ -215,33 +129,16 @@ msgid "Code" msgstr "Kode" #. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" +#: rml:account.account.balance.landscape:0 +#: rml:account.balance.account.balance:0 +msgid "Account Information" +msgstr "Informasi Akun" #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 msgid "Fiscal year" msgstr "Tahun Pembukuan" -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - #. module: account_balance #: wizard_field:account.balance.account.balance.report,init,periods:0 msgid "Periods" @@ -261,3 +158,133 @@ msgstr "Pilihan Periode" #: wizard_view:account.balance.account.balance.report,init:0 msgid "Customize Report" msgstr "Mengatur Laporan" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,account_choice:0 +msgid "All accounts" +msgstr "" + +#. module: account_balance +#: wizard_field:account.balance.account.balance.report,init,period_manner:0 +msgid "Entries Selection Based on" +msgstr "" + +#. module: account_balance +#: help:account.balance.account.balance.report,init,select_account:0 +msgid "Keep empty for comparision to its parent" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,period_manner:0 +msgid "Financial Period" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,compare_pattern:0 +msgid "Percentage" +msgstr "" + +#. module: account_balance +#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 +msgid "Compare Selected Years In Terms Of" +msgstr "" + +#. module: account_balance +#: model:ir.module.module,description:account_balance.module_meta_information +msgid "" +"Account Balance Module is an added functionality to the Financial Management " +"module.\n" +"\n" +" This module gives you the various options for printing balance sheet.\n" +"\n" +" 1. You can compare the balance sheet for different years.\n" +"\n" +" 2. You can set the cash or percentage comparison between two years.\n" +"\n" +" 3. You can set the referential account for the percentage comparison for " +"particular years.\n" +"\n" +" 4. You can select periods as an actual date or periods as creation " +"date.\n" +"\n" +" 5. You have an option to print the desired report in Landscape format.\n" +" " +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,backtoinit:0 +msgid "You have to select 'Landscape' option. Please Check it." +msgstr "" + +#. module: account_balance +#: help:account.balance.account.balance.report,init,periods:0 +msgid "All periods if empty" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,account_choice:0 +msgid "With balance is not equal to 0" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,account_choice:0 +msgid "With movements" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,compare_pattern:0 +msgid "Cash" +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,compare_pattern:0 +msgid "Don't Compare" +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,zero_years:0 +msgid "" +"You may have selected the compare options with more than 1 year with " +"credit/debit columns and % option.This can lead contents to be printed out " +"of the paper.Please try again." +msgstr "" + +#. module: account_balance +#: model:ir.module.module,shortdesc:account_balance.module_meta_information +msgid "Accounting and financial management-Compare Accounts" +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,backtoinit:0 +msgid "You can select maximum 3 years. Please check again." +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,backtoinit:0 +msgid "" +"3. You have selected 'Percentage' option with more than 2 years, but you " +"have not selected landscape format." +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,backtoinit:0 +msgid "" +"You might have done following mistakes. Please correct them and try again." +msgstr "" + +#. module: account_balance +#: selection:account.balance.account.balance.report,init,period_manner:0 +msgid "Creation Date" +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,backtoinit:0 +msgid "" +"2. You have not selected 'Percentage' option, but you have selected more " +"than 2 years." +msgstr "" + +#. module: account_balance +#: wizard_view:account.balance.account.balance.report,zero_years:0 +msgid "You have to select at least 1 Fiscal Year. Try again." +msgstr "" diff --git a/addons/account_balance/i18n/it_IT.po b/addons/account_balance/i18n/it_IT.po index 7b77e0a5028..ca2b27ccab5 100644 --- a/addons/account_balance/i18n/it_IT.po +++ b/addons/account_balance/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/lt_LT.po b/addons/account_balance/i18n/lt_LT.po index cc4ad391a0c..23dbfaad62f 100644 --- a/addons/account_balance/i18n/lt_LT.po +++ b/addons/account_balance/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/nl_BE.po b/addons/account_balance/i18n/nl_BE.po index 03c19ea76e8..6eb80ee8d52 100644 --- a/addons/account_balance/i18n/nl_BE.po +++ b/addons/account_balance/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/nl_NL.po b/addons/account_balance/i18n/nl_NL.po index 01fd99ff33f..5aefb661dbf 100644 --- a/addons/account_balance/i18n/nl_NL.po +++ b/addons/account_balance/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pl_PL.po b/addons/account_balance/i18n/pl_PL.po index 8c5be747fb2..6d90edad00d 100644 --- a/addons/account_balance/i18n/pl_PL.po +++ b/addons/account_balance/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pt_BR.po b/addons/account_balance/i18n/pt_BR.po index 71f3a7ccc76..968b70dcf43 100644 --- a/addons/account_balance/i18n/pt_BR.po +++ b/addons/account_balance/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pt_PT.po b/addons/account_balance/i18n/pt_PT.po index ba56bf092db..2b5cdd86005 100644 --- a/addons/account_balance/i18n/pt_PT.po +++ b/addons/account_balance/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ro_RO.po b/addons/account_balance/i18n/ro_RO.po index 1ee998b7589..77cbea70e9d 100644 --- a/addons/account_balance/i18n/ro_RO.po +++ b/addons/account_balance/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ru_RU.po b/addons/account_balance/i18n/ru_RU.po index 74e06b78d53..dc25c651b54 100644 --- a/addons/account_balance/i18n/ru_RU.po +++ b/addons/account_balance/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sl_SL.po b/addons/account_balance/i18n/sl_SL.po index 9373c831893..18400e8b594 100644 --- a/addons/account_balance/i18n/sl_SL.po +++ b/addons/account_balance/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sv_SE.po b/addons/account_balance/i18n/sv_SE.po index e98bdc16b30..01c51333157 100644 --- a/addons/account_balance/i18n/sv_SE.po +++ b/addons/account_balance/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sv_SV.po b/addons/account_balance/i18n/sv_SV.po index 75e081dadd5..3edb3e4f711 100644 --- a/addons/account_balance/i18n/sv_SV.po +++ b/addons/account_balance/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/tr_TR.po b/addons/account_balance/i18n/tr_TR.po index 908a364a471..df907560e2a 100644 --- a/addons/account_balance/i18n/tr_TR.po +++ b/addons/account_balance/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/uk_UK.po b/addons/account_balance/i18n/uk_UK.po index 63be15fa681..1bfde00a777 100644 --- a/addons/account_balance/i18n/uk_UK.po +++ b/addons/account_balance/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/zh_CN.po b/addons/account_balance/i18n/zh_CN.po index b269691c405..b9c90d65f2c 100644 --- a/addons/account_balance/i18n/zh_CN.po +++ b/addons/account_balance/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/zh_TW.po b/addons/account_balance/i18n/zh_TW.po index 75a31591582..d302413ded9 100644 --- a/addons/account_balance/i18n/zh_TW.po +++ b/addons/account_balance/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 41d742fed40..bf797e0c341 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/ar_AR.po b/addons/account_budget/i18n/ar_AR.po index 396601b3f6b..c7dc729f8ab 100644 --- a/addons/account_budget/i18n/ar_AR.po +++ b/addons/account_budget/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/bg_BG.po b/addons/account_budget/i18n/bg_BG.po index 727583794be..b07a530d67f 100644 --- a/addons/account_budget/i18n/bg_BG.po +++ b/addons/account_budget/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Избери период" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Избери период" - diff --git a/addons/account_budget/i18n/bs_BS.po b/addons/account_budget/i18n/bs_BS.po index b21d65fbc53..50155dc8857 100644 --- a/addons/account_budget/i18n/bs_BS.po +++ b/addons/account_budget/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/ca_ES.po b/addons/account_budget/i18n/ca_ES.po index 7840db614bd..73203ac44a3 100644 --- a/addons/account_budget/i18n/ca_ES.po +++ b/addons/account_budget/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Selecciona període" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Selecciona període" - diff --git a/addons/account_budget/i18n/cs_CS.po b/addons/account_budget/i18n/cs_CS.po index e821191f426..a70ccb3c8eb 100644 --- a/addons/account_budget/i18n/cs_CS.po +++ b/addons/account_budget/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,11 +32,8 @@ msgid "Budgetary Positions" msgstr "" #. module: account_budget -#: model:ir.actions.report.xml,name:account_budget.account_analytic_account_budget -#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget -#: model:ir.actions.wizard,name:account_budget.account_analytic_account_budget_report -#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu -msgid "Print Budgets" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_budget @@ -65,6 +62,12 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: account_budget +#: code:addons/account_budget/wizard/wizard_budget_report.py:0 +#, python-format +msgid "Insufficient Data!" +msgstr "" + #. module: account_budget #: field:account.budget.post.dotation,period_id:0 msgid "Period" @@ -173,11 +176,10 @@ msgid "Analytic Account :" msgstr "" #. module: account_budget -#: wizard_button:account.budget.report,init,report:0 -#: wizard_button:wizard.analytic.account.budget.report,init,report:0 -#: wizard_button:wizard.crossovered.budget,init,report:0 -#: wizard_button:wizard.crossovered.budget.summary,init,report:0 -msgid "Print" +#: rml:account.analytic.account.budget:0 +#: field:crossovered.budget.lines,practical_amount:0 +#: rml:crossovered.budget.report:0 +msgid "Practical Amount" msgstr "" #. module: account_budget @@ -207,9 +209,9 @@ msgid "Planned Amount" msgstr "" #. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Perc(%)" +#: code:addons/account_budget/wizard/wizard_budget_report.py:0 +#, python-format +msgid "No Dotations or Master Budget Expenses Found on Budget %s!" msgstr "" #. module: account_budget @@ -244,11 +246,15 @@ msgstr "" msgid "Select Options" msgstr "" +#. module: account_budget +#: wizard_view:wizard.analytic.account.budget.report,init:0 +msgid "Select Dates Period" +msgstr "" + #. module: account_budget #: rml:account.analytic.account.budget:0 -#: field:crossovered.budget.lines,practical_amount:0 #: rml:crossovered.budget.report:0 -msgid "Practical Amount" +msgid "Perc(%)" msgstr "" #. module: account_budget @@ -302,8 +308,9 @@ msgid "Budget" msgstr "" #. module: account_budget -#: field:account.budget.post.dotation,post_id:0 -msgid "Item" +#: code:addons/account_budget/crossovered_budget.py:0 +#, python-format +msgid "Error!" msgstr "" #. module: account_budget @@ -324,6 +331,12 @@ msgstr "" msgid "Budgets" msgstr "" +#. module: account_budget +#: code:addons/account_budget/crossovered_budget.py:0 +#, python-format +msgid "The General Budget '%s' has no Accounts!" +msgstr "" + #. module: account_budget #: selection:crossovered.budget,state:0 msgid "Cancelled" @@ -360,6 +373,14 @@ msgstr "" msgid "Start of period" msgstr "" +#. module: account_budget +#: model:ir.actions.report.xml,name:account_budget.account_analytic_account_budget +#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget +#: model:ir.actions.wizard,name:account_budget.account_analytic_account_budget_report +#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu +msgid "Print Budgets" +msgstr "" + #. module: account_budget #: field:account.budget.post,code:0 #: field:crossovered.budget,code:0 @@ -372,8 +393,16 @@ msgid "Total Planned Amount" msgstr "" #. module: account_budget -#: wizard_view:wizard.analytic.account.budget.report,init:0 -msgid "Select Dates Period" +#: field:account.budget.post.dotation,post_id:0 +msgid "Item" +msgstr "" + +#. module: account_budget +#: wizard_button:account.budget.report,init,report:0 +#: wizard_button:wizard.analytic.account.budget.report,init,report:0 +#: wizard_button:wizard.crossovered.budget,init,report:0 +#: wizard_button:wizard.crossovered.budget.summary,init,report:0 +msgid "Print" msgstr "" #. module: account_budget diff --git a/addons/account_budget/i18n/cs_CZ.po b/addons/account_budget/i18n/cs_CZ.po index dad327ba3a2..cfc5d9faada 100644 --- a/addons/account_budget/i18n/cs_CZ.po +++ b/addons/account_budget/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/de_DE.po b/addons/account_budget/i18n/de_DE.po index 941d6b3ff97..b9ec079005d 100644 --- a/addons/account_budget/i18n/de_DE.po +++ b/addons/account_budget/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "Fertig" msgid "Validate" msgstr "Validiere" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Wähle Zeitraum" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "Analyse vom" msgid "Validated" msgstr "Validiert" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Wähle Zeitraum" - diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index d50071a2532..24fd15b14b9 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/es_ES.po b/addons/account_budget/i18n/es_ES.po index 04754a47ca0..9be5a57054d 100644 --- a/addons/account_budget/i18n/es_ES.po +++ b/addons/account_budget/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "Hecho" msgid "Validate" msgstr "Validar" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Seleccionar período" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "Análisis desde" msgid "Validated" msgstr "Validado" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Seleccionar período" - diff --git a/addons/account_budget/i18n/et_EE.po b/addons/account_budget/i18n/et_EE.po index a409c3dd3ec..03ec3b23532 100644 --- a/addons/account_budget/i18n/et_EE.po +++ b/addons/account_budget/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" #. module: account_budget #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_budget #: rml:account.analytic.account.budget:0 @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Vali periood" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Vali periood" - diff --git a/addons/account_budget/i18n/fr_FR.po b/addons/account_budget/i18n/fr_FR.po index bfb29540930..35998b8e9a5 100644 --- a/addons/account_budget/i18n/fr_FR.po +++ b/addons/account_budget/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "Terminé" msgid "Validate" msgstr "Valider" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Sélectionnez une période" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "Analyse de" msgid "Validated" msgstr "Validé" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Sélectionnez une période" - diff --git a/addons/account_budget/i18n/hr_HR.po b/addons/account_budget/i18n/hr_HR.po index 31d90979bde..4d36484f9bd 100644 --- a/addons/account_budget/i18n/hr_HR.po +++ b/addons/account_budget/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/hu_HU.po b/addons/account_budget/i18n/hu_HU.po index e892418d5c0..3155498970b 100644 --- a/addons/account_budget/i18n/hu_HU.po +++ b/addons/account_budget/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/it_IT.po b/addons/account_budget/i18n/it_IT.po index 6e1b508fe12..61a556e6478 100644 --- a/addons/account_budget/i18n/it_IT.po +++ b/addons/account_budget/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Seleziona Periodo" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Seleziona Periodo" - diff --git a/addons/account_budget/i18n/lt_LT.po b/addons/account_budget/i18n/lt_LT.po index 1953713d7ac..790ad090f2d 100644 --- a/addons/account_budget/i18n/lt_LT.po +++ b/addons/account_budget/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index 0ede4066634..9459f2a7be0 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/nl_NL.po b/addons/account_budget/i18n/nl_NL.po index ed9ab96960f..1f21b45d92e 100644 --- a/addons/account_budget/i18n/nl_NL.po +++ b/addons/account_budget/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Selecteer periode" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Selecteer periode" - diff --git a/addons/account_budget/i18n/pl_PL.po b/addons/account_budget/i18n/pl_PL.po index aa4ede396ed..ff3d9dad934 100644 --- a/addons/account_budget/i18n/pl_PL.po +++ b/addons/account_budget/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 08a03d0e029..45384ed8d6d 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/pt_PT.po b/addons/account_budget/i18n/pt_PT.po index 7c1bd81741d..5b7bac83660 100644 --- a/addons/account_budget/i18n/pt_PT.po +++ b/addons/account_budget/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "Terminado" msgid "Validate" msgstr "Validar" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Escolha o período" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "Análise de" msgid "Validated" msgstr "Validado" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Escolha o período" - diff --git a/addons/account_budget/i18n/ro_RO.po b/addons/account_budget/i18n/ro_RO.po index a87dc6c2b72..6e6798ad8d9 100644 --- a/addons/account_budget/i18n/ro_RO.po +++ b/addons/account_budget/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/ru_RU.po b/addons/account_budget/i18n/ru_RU.po index 1b79f91b6b9..cbb81704b56 100644 --- a/addons/account_budget/i18n/ru_RU.po +++ b/addons/account_budget/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Выбрать период" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Выбрать период" - diff --git a/addons/account_budget/i18n/sl_SL.po b/addons/account_budget/i18n/sl_SL.po index e2fe520f918..d7d78905acc 100644 --- a/addons/account_budget/i18n/sl_SL.po +++ b/addons/account_budget/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Izberi obdobje" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Izberi obdobje" - diff --git a/addons/account_budget/i18n/sv_SE.po b/addons/account_budget/i18n/sv_SE.po index e46f304f58e..a3697404b5b 100644 --- a/addons/account_budget/i18n/sv_SE.po +++ b/addons/account_budget/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/sv_SV.po b/addons/account_budget/i18n/sv_SV.po index 13bbed47d3f..0dc19716e26 100644 --- a/addons/account_budget/i18n/sv_SV.po +++ b/addons/account_budget/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,11 +32,8 @@ msgid "Budgetary Positions" msgstr "" #. module: account_budget -#: model:ir.actions.report.xml,name:account_budget.account_analytic_account_budget -#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget -#: model:ir.actions.wizard,name:account_budget.account_analytic_account_budget_report -#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu -msgid "Print Budgets" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_budget @@ -65,6 +62,12 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia msgid "Confirmed" msgstr "" +#. module: account_budget +#: code:addons/account_budget/wizard/wizard_budget_report.py:0 +#, python-format +msgid "Insufficient Data!" +msgstr "" + #. module: account_budget #: field:account.budget.post.dotation,period_id:0 msgid "Period" @@ -173,11 +176,10 @@ msgid "Analytic Account :" msgstr "" #. module: account_budget -#: wizard_button:account.budget.report,init,report:0 -#: wizard_button:wizard.analytic.account.budget.report,init,report:0 -#: wizard_button:wizard.crossovered.budget,init,report:0 -#: wizard_button:wizard.crossovered.budget.summary,init,report:0 -msgid "Print" +#: rml:account.analytic.account.budget:0 +#: field:crossovered.budget.lines,practical_amount:0 +#: rml:crossovered.budget.report:0 +msgid "Practical Amount" msgstr "" #. module: account_budget @@ -207,9 +209,9 @@ msgid "Planned Amount" msgstr "" #. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Perc(%)" +#: code:addons/account_budget/wizard/wizard_budget_report.py:0 +#, python-format +msgid "No Dotations or Master Budget Expenses Found on Budget %s!" msgstr "" #. module: account_budget @@ -244,11 +246,15 @@ msgstr "" msgid "Select Options" msgstr "" +#. module: account_budget +#: wizard_view:wizard.analytic.account.budget.report,init:0 +msgid "Select Dates Period" +msgstr "" + #. module: account_budget #: rml:account.analytic.account.budget:0 -#: field:crossovered.budget.lines,practical_amount:0 #: rml:crossovered.budget.report:0 -msgid "Practical Amount" +msgid "Perc(%)" msgstr "" #. module: account_budget @@ -302,8 +308,9 @@ msgid "Budget" msgstr "" #. module: account_budget -#: field:account.budget.post.dotation,post_id:0 -msgid "Item" +#: code:addons/account_budget/crossovered_budget.py:0 +#, python-format +msgid "Error!" msgstr "" #. module: account_budget @@ -324,6 +331,12 @@ msgstr "" msgid "Budgets" msgstr "Budgetar" +#. module: account_budget +#: code:addons/account_budget/crossovered_budget.py:0 +#, python-format +msgid "The General Budget '%s' has no Accounts!" +msgstr "" + #. module: account_budget #: selection:crossovered.budget,state:0 msgid "Cancelled" @@ -360,6 +373,14 @@ msgstr "" msgid "Start of period" msgstr "" +#. module: account_budget +#: model:ir.actions.report.xml,name:account_budget.account_analytic_account_budget +#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget +#: model:ir.actions.wizard,name:account_budget.account_analytic_account_budget_report +#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu +msgid "Print Budgets" +msgstr "" + #. module: account_budget #: field:account.budget.post,code:0 #: field:crossovered.budget,code:0 @@ -372,8 +393,16 @@ msgid "Total Planned Amount" msgstr "" #. module: account_budget -#: wizard_view:wizard.analytic.account.budget.report,init:0 -msgid "Select Dates Period" +#: field:account.budget.post.dotation,post_id:0 +msgid "Item" +msgstr "" + +#. module: account_budget +#: wizard_button:account.budget.report,init,report:0 +#: wizard_button:wizard.analytic.account.budget.report,init,report:0 +#: wizard_button:wizard.crossovered.budget,init,report:0 +#: wizard_button:wizard.crossovered.budget.summary,init,report:0 +msgid "Print" msgstr "" #. module: account_budget diff --git a/addons/account_budget/i18n/tr_TR.po b/addons/account_budget/i18n/tr_TR.po index 89c398a8b60..b089008f5d6 100644 --- a/addons/account_budget/i18n/tr_TR.po +++ b/addons/account_budget/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_budget/i18n/uk_UK.po b/addons/account_budget/i18n/uk_UK.po index 152ca434814..d56322a536e 100644 --- a/addons/account_budget/i18n/uk_UK.po +++ b/addons/account_budget/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "Вибрати період" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "Вибрати період" - diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 8b4c8796f9d..91a7fb15864 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "选择期间" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "选择期间" - diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index b03ca52e016..b4b6251ef67 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -235,6 +235,11 @@ msgstr "" msgid "Validate" msgstr "" +#. module: account_budget +#: wizard_view:account.budget.report,init:0 +msgid "Select period" +msgstr "" + #. module: account_budget #: wizard_view:wizard.crossovered.budget,init:0 #: wizard_view:wizard.crossovered.budget.summary,init:0 @@ -492,8 +497,3 @@ msgstr "" msgid "Validated" msgstr "" -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - diff --git a/addons/account_chart/i18n/account_chart.pot b/addons/account_chart/i18n/account_chart.pot index c8beb7ee4f3..91cac224cfc 100644 --- a/addons/account_chart/i18n/account_chart.pot +++ b/addons/account_chart/i18n/account_chart.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ar_AR.po b/addons/account_chart/i18n/ar_AR.po index 61f1fd00151..c8542c4be6f 100644 --- a/addons/account_chart/i18n/ar_AR.po +++ b/addons/account_chart/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/bg_BG.po b/addons/account_chart/i18n/bg_BG.po index 38444529031..2a1a2e00b6f 100644 --- a/addons/account_chart/i18n/bg_BG.po +++ b/addons/account_chart/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/bs_BS.po b/addons/account_chart/i18n/bs_BS.po index 8479f574f49..c9bafe90d9c 100644 --- a/addons/account_chart/i18n/bs_BS.po +++ b/addons/account_chart/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ca_ES.po b/addons/account_chart/i18n/ca_ES.po index 4fa9b65bf90..b4893f3ae75 100644 --- a/addons/account_chart/i18n/ca_ES.po +++ b/addons/account_chart/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/cs_CS.po b/addons/account_chart/i18n/cs_CS.po index 501db7289d2..19a3d675c9a 100644 --- a/addons/account_chart/i18n/cs_CS.po +++ b/addons/account_chart/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/cs_CZ.po b/addons/account_chart/i18n/cs_CZ.po index 6cbe0b1d6b3..16496d4174e 100644 --- a/addons/account_chart/i18n/cs_CZ.po +++ b/addons/account_chart/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/de_DE.po b/addons/account_chart/i18n/de_DE.po index 5686dbd71f3..71de8026b6c 100644 --- a/addons/account_chart/i18n/de_DE.po +++ b/addons/account_chart/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 6660f6f298c..8c68f34c3cb 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/es_ES.po b/addons/account_chart/i18n/es_ES.po index e5b27d78ecd..f14acd52066 100644 --- a/addons/account_chart/i18n/es_ES.po +++ b/addons/account_chart/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/et_EE.po b/addons/account_chart/i18n/et_EE.po index e0db49ad8b9..c1510edd700 100644 --- a/addons/account_chart/i18n/et_EE.po +++ b/addons/account_chart/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" -msgstr "" +msgstr "Eemalda minimaalne kontoplaan" diff --git a/addons/account_chart/i18n/fr_FR.po b/addons/account_chart/i18n/fr_FR.po index c83ac85928e..ad942669fea 100644 --- a/addons/account_chart/i18n/fr_FR.po +++ b/addons/account_chart/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/hr_HR.po b/addons/account_chart/i18n/hr_HR.po index 50d30110f8b..e9e5459b2f8 100644 --- a/addons/account_chart/i18n/hr_HR.po +++ b/addons/account_chart/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/hu_HU.po b/addons/account_chart/i18n/hu_HU.po index 66b58ff6698..5a659ed980e 100644 --- a/addons/account_chart/i18n/hu_HU.po +++ b/addons/account_chart/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/it_IT.po b/addons/account_chart/i18n/it_IT.po index ef45657d4cf..685430e5548 100644 --- a/addons/account_chart/i18n/it_IT.po +++ b/addons/account_chart/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/lt_LT.po b/addons/account_chart/i18n/lt_LT.po index 7f65aabb7d5..8d9e89b742c 100644 --- a/addons/account_chart/i18n/lt_LT.po +++ b/addons/account_chart/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index f08b07a2986..5865fd4b96a 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/nl_NL.po b/addons/account_chart/i18n/nl_NL.po index c19b8260b90..15840bbcf3c 100644 --- a/addons/account_chart/i18n/nl_NL.po +++ b/addons/account_chart/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pl_PL.po b/addons/account_chart/i18n/pl_PL.po index 3e83a20e1f0..04ae1120110 100644 --- a/addons/account_chart/i18n/pl_PL.po +++ b/addons/account_chart/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index 7ba58c41456..850e271bd2e 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pt_PT.po b/addons/account_chart/i18n/pt_PT.po index c0c155b4a05..e91d14f8d20 100644 --- a/addons/account_chart/i18n/pt_PT.po +++ b/addons/account_chart/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ro_RO.po b/addons/account_chart/i18n/ro_RO.po index c3f38766a60..f4568026a8f 100644 --- a/addons/account_chart/i18n/ro_RO.po +++ b/addons/account_chart/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ru_RU.po b/addons/account_chart/i18n/ru_RU.po index cc68f968881..9de3f96a8c5 100644 --- a/addons/account_chart/i18n/ru_RU.po +++ b/addons/account_chart/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sl_SL.po b/addons/account_chart/i18n/sl_SL.po index 4a6fde075ac..d8b80fb8d2c 100644 --- a/addons/account_chart/i18n/sl_SL.po +++ b/addons/account_chart/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sv_SE.po b/addons/account_chart/i18n/sv_SE.po index 5e5adb67a60..dd18fbbb0cf 100644 --- a/addons/account_chart/i18n/sv_SE.po +++ b/addons/account_chart/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sv_SV.po b/addons/account_chart/i18n/sv_SV.po index db56e21687e..79b92e159e1 100644 --- a/addons/account_chart/i18n/sv_SV.po +++ b/addons/account_chart/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/tr_TR.po b/addons/account_chart/i18n/tr_TR.po index e53568b7c86..f2147d83e6b 100644 --- a/addons/account_chart/i18n/tr_TR.po +++ b/addons/account_chart/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/uk_UK.po b/addons/account_chart/i18n/uk_UK.po index 7da7cbf80ac..c6d2d800dae 100644 --- a/addons/account_chart/i18n/uk_UK.po +++ b/addons/account_chart/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index ba3dcdaddb7..aa58b380532 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index d0d475a7104..76d401e02df 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 fd7238a5333..b6e2381613e 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ar_AR.po b/addons/account_date_check/i18n/ar_AR.po index 0b9457cb11f..ac19317bb2d 100644 --- a/addons/account_date_check/i18n/ar_AR.po +++ b/addons/account_date_check/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/bg_BG.po b/addons/account_date_check/i18n/bg_BG.po index d8ec259e1f4..3620dc5d0b0 100644 --- a/addons/account_date_check/i18n/bg_BG.po +++ b/addons/account_date_check/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/bs_BS.po b/addons/account_date_check/i18n/bs_BS.po index 4153ccb8e8c..26b8835bb8b 100644 --- a/addons/account_date_check/i18n/bs_BS.po +++ b/addons/account_date_check/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ca_ES.po b/addons/account_date_check/i18n/ca_ES.po index 8e92980dfcf..79f2c010abf 100644 --- a/addons/account_date_check/i18n/ca_ES.po +++ b/addons/account_date_check/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/cs_CS.po b/addons/account_date_check/i18n/cs_CS.po index 9fd163e2d02..4baa4fad07d 100644 --- a/addons/account_date_check/i18n/cs_CS.po +++ b/addons/account_date_check/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "The date of your account move is not in the defined period !" +msgstr "" + #. module: account_date_check #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -30,3 +36,9 @@ msgstr "" msgid "Account Date check" msgstr "" +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "Error" +msgstr "" + diff --git a/addons/account_date_check/i18n/cs_CZ.po b/addons/account_date_check/i18n/cs_CZ.po index b1a02925fed..05843776f1a 100644 --- a/addons/account_date_check/i18n/cs_CZ.po +++ b/addons/account_date_check/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/de_DE.po b/addons/account_date_check/i18n/de_DE.po index 79c493b451d..bd469ef29fd 100644 --- a/addons/account_date_check/i18n/de_DE.po +++ b/addons/account_date_check/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/es_AR.po b/addons/account_date_check/i18n/es_AR.po index 2b0f7493bf6..e41f187d649 100644 --- a/addons/account_date_check/i18n/es_AR.po +++ b/addons/account_date_check/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/es_ES.po b/addons/account_date_check/i18n/es_ES.po index 9e66f65a81a..a81d1e94d60 100644 --- a/addons/account_date_check/i18n/es_ES.po +++ b/addons/account_date_check/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/et_EE.po b/addons/account_date_check/i18n/et_EE.po index 40824e6d067..12f8a2c15ab 100644 --- a/addons/account_date_check/i18n/et_EE.po +++ b/addons/account_date_check/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/fr_FR.po b/addons/account_date_check/i18n/fr_FR.po index a861b816b4d..e3530523d25 100644 --- a/addons/account_date_check/i18n/fr_FR.po +++ b/addons/account_date_check/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/hr_HR.po b/addons/account_date_check/i18n/hr_HR.po index d577a54b122..9a2a09284ed 100644 --- a/addons/account_date_check/i18n/hr_HR.po +++ b/addons/account_date_check/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/hu_HU.po b/addons/account_date_check/i18n/hu_HU.po index 81b4a427cde..6d7da67ac56 100644 --- a/addons/account_date_check/i18n/hu_HU.po +++ b/addons/account_date_check/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/id_ID.po b/addons/account_date_check/i18n/id_ID.po index 9e9e9b3d030..a4acefa5191 100644 --- a/addons/account_date_check/i18n/id_ID.po +++ b/addons/account_date_check/i18n/id_ID.po @@ -7,17 +7,39 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2008-10-16 03:54+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:52+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:29+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:35+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_date_check #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Salah dalam penyusunan format XML" + +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "The date of your account move is not in the defined period !" +msgstr "" + +#. module: account_date_check +#: field:account.journal,allow_date:0 +msgid "Allows date not in the period" +msgstr "" + +#. module: account_date_check +#: model:ir.module.module,shortdesc:account_date_check.module_meta_information +msgid "Account Date check" +msgstr "" + +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "Error" +msgstr "" diff --git a/addons/account_date_check/i18n/it_IT.po b/addons/account_date_check/i18n/it_IT.po index 1bade718cde..230243eafb7 100644 --- a/addons/account_date_check/i18n/it_IT.po +++ b/addons/account_date_check/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/lt_LT.po b/addons/account_date_check/i18n/lt_LT.po index fd5ae23c004..b0f8c7b5ccf 100644 --- a/addons/account_date_check/i18n/lt_LT.po +++ b/addons/account_date_check/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/nl_BE.po b/addons/account_date_check/i18n/nl_BE.po index c1c87c2cf42..53bcfdbc787 100644 --- a/addons/account_date_check/i18n/nl_BE.po +++ b/addons/account_date_check/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/nl_NL.po b/addons/account_date_check/i18n/nl_NL.po index ea84c59c221..4e635c1fd14 100644 --- a/addons/account_date_check/i18n/nl_NL.po +++ b/addons/account_date_check/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pl_PL.po b/addons/account_date_check/i18n/pl_PL.po index 93b642c6086..5d79f7127c4 100644 --- a/addons/account_date_check/i18n/pl_PL.po +++ b/addons/account_date_check/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pt_BR.po b/addons/account_date_check/i18n/pt_BR.po index f48fa5ee8b2..ee93b7e88f4 100644 --- a/addons/account_date_check/i18n/pt_BR.po +++ b/addons/account_date_check/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pt_PT.po b/addons/account_date_check/i18n/pt_PT.po index 04d52d6bcc4..6ca7dad09b6 100644 --- a/addons/account_date_check/i18n/pt_PT.po +++ b/addons/account_date_check/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ro_RO.po b/addons/account_date_check/i18n/ro_RO.po index cc39ca8c833..078252282b0 100644 --- a/addons/account_date_check/i18n/ro_RO.po +++ b/addons/account_date_check/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ru_RU.po b/addons/account_date_check/i18n/ru_RU.po index e61a67a52d7..ada4ddbcc92 100644 --- a/addons/account_date_check/i18n/ru_RU.po +++ b/addons/account_date_check/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sl_SL.po b/addons/account_date_check/i18n/sl_SL.po index 9027fcedd02..c41d7164a30 100644 --- a/addons/account_date_check/i18n/sl_SL.po +++ b/addons/account_date_check/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sv_SE.po b/addons/account_date_check/i18n/sv_SE.po index 75f4a7972b8..3894b52797c 100644 --- a/addons/account_date_check/i18n/sv_SE.po +++ b/addons/account_date_check/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sv_SV.po b/addons/account_date_check/i18n/sv_SV.po index 422af1691af..b5c9bf38bc0 100644 --- a/addons/account_date_check/i18n/sv_SV.po +++ b/addons/account_date_check/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "The date of your account move is not in the defined period !" +msgstr "" + #. module: account_date_check #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -30,3 +36,9 @@ msgstr "" msgid "Account Date check" msgstr "" +#. module: account_date_check +#: code:addons/account_date_check/account_date_check.py:0 +#, python-format +msgid "Error" +msgstr "" + diff --git a/addons/account_date_check/i18n/tr_TR.po b/addons/account_date_check/i18n/tr_TR.po index 492ea530003..7759610f9f6 100644 --- a/addons/account_date_check/i18n/tr_TR.po +++ b/addons/account_date_check/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/uk_UK.po b/addons/account_date_check/i18n/uk_UK.po index 0066df1230e..cb14fd9ef4f 100644 --- a/addons/account_date_check/i18n/uk_UK.po +++ b/addons/account_date_check/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/zh_CN.po b/addons/account_date_check/i18n/zh_CN.po index eebbe29d3c3..0806a881464 100644 --- a/addons/account_date_check/i18n/zh_CN.po +++ b/addons/account_date_check/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/zh_TW.po b/addons/account_date_check/i18n/zh_TW.po index 2d153225846..c16e0d92bd4 100644 --- a/addons/account_date_check/i18n/zh_TW.po +++ b/addons/account_date_check/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 bad6f309d8a..17db3fb565c 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/ar_AR.po b/addons/account_followup/i18n/ar_AR.po index 3d0abedac84..de77d535429 100644 --- a/addons/account_followup/i18n/ar_AR.po +++ b/addons/account_followup/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/bg_BG.po b/addons/account_followup/i18n/bg_BG.po index aef0e75df2c..16c018e9345 100644 --- a/addons/account_followup/i18n/bg_BG.po +++ b/addons/account_followup/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Отпечатано съобщение" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Общ дебит" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Краен срок" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Общ дебит" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Тема" msgid "Paid" msgstr "Платено" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/bs_BS.po b/addons/account_followup/i18n/bs_BS.po index 71c2d4fee2c..58c1cd04b04 100644 --- a/addons/account_followup/i18n/bs_BS.po +++ b/addons/account_followup/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/ca_ES.po b/addons/account_followup/i18n/ca_ES.po index 79ab94b0f49..f8a3573f0fe 100644 --- a/addons/account_followup/i18n/ca_ES.po +++ b/addons/account_followup/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Missatge imprès" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Total deure" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Degut" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Total deure" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Assumpte correu electrònic" msgid "Paid" msgstr "Pagat" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/cs_CS.po b/addons/account_followup/i18n/cs_CS.po index e69668ed148..633220b0195 100644 --- a/addons/account_followup/i18n/cs_CS.po +++ b/addons/account_followup/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,19 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_followup +#: rml:account_followup.followup.print:0 +msgid "Date :" +msgstr "" + #. module: account_followup #: wizard_field:account_followup.followup.print.all,next,partner_ids:0 msgid "Partners" msgstr "" #. module: account_followup -#: field:account_followup.followup.line,start:0 -msgid "Type of Term" +#: rml:account_followup.followup.print:0 +msgid "Customer Ref :" msgstr "" #. module: account_followup @@ -31,19 +36,24 @@ msgstr "" msgid "All payable entries" msgstr "" +#. module: account_followup +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_followup #: field:account_followup.followup.line,description:0 msgid "Printed Message" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date:" +#: view:account.move.line:0 +msgid "Total debit" msgstr "" #. module: account_followup -#: selection:account_followup.followup.line,start:0 -msgid "End of Month" +#: rml:account_followup.followup.print:0 +msgid "Amount In Currency" msgstr "" #. module: account_followup @@ -73,6 +83,12 @@ msgstr "" msgid "Debit" msgstr "" +#. module: account_followup +#: code:addons/account_followup/wizard/wizard_followup_print.py:0 +#, python-format +msgid "Mail not sent to following Partners, Email not available !\n\n" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "Email Settings" @@ -99,12 +115,6 @@ msgstr "" msgid "%(date)s: Current Date" msgstr "" -#. module: account_followup -#: field:account_followup.followup,name:0 -#: field:account_followup.followup.line,name:0 -msgid "Name" -msgstr "" - #. module: account_followup #: code:addons/account_followup/wizard/wizard_followup_print.py:0 #, python-format @@ -112,13 +122,14 @@ msgid "\n\nMail sent to following Partners successfully, !\n\n" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer Ref:" +#: field:account.move.line,followup_date:0 +msgid "Latest Follow-up" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Document" +#: field:account_followup.followup.line,followup_id:0 +#: field:account_followup.stat,followup_id:0 +msgid "Follow Ups" msgstr "" #. module: account_followup @@ -143,19 +154,14 @@ msgstr "" msgid "VAT:" msgstr "" -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer account statement" -msgstr "" - #. module: account_followup #: field:account_followup.followup,company_id:0 msgid "Company" msgstr "" #. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" +#: rml:account_followup.followup.print:0 +msgid "Invoice Date" msgstr "" #. module: account_followup @@ -168,17 +174,6 @@ msgstr "" msgid "Paid" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total credit" -msgstr "" - -#. module: account_followup -#: model:ir.actions.wizard,name:account_followup.action_account_followup_all_wizard -#: model:ir.ui.menu,name:account_followup.account_followup_wizard_menu -msgid "Send followups" -msgstr "" - #. module: account_followup #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -200,9 +195,8 @@ msgid "Partner entries" msgstr "" #. module: account_followup -#: field:account_followup.followup.line,followup_id:0 -#: field:account_followup.stat,followup_id:0 -msgid "Follow Ups" +#: model:ir.model,name:account_followup.model_account_followup_followup_line +msgid "Follow-Ups Criteria" msgstr "" #. module: account_followup @@ -211,13 +205,13 @@ msgid "Partner Selection" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid ":" +#: field:account_followup.followup.line,start:0 +msgid "Type of Term" msgstr "" #. module: account_followup @@ -254,8 +248,9 @@ msgid "Ok" msgstr "" #. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_followup_line -msgid "Follow-Ups Criteria" +#: field:account_followup.followup,name:0 +#: field:account_followup.followup.line,name:0 +msgid "Name" msgstr "" #. module: account_followup @@ -264,9 +259,8 @@ msgid "First move" msgstr "" #. module: account_followup -#: code:addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "Mail not sent to following Partners, Email not available !\n\n" +#: selection:account_followup.followup.line,start:0 +msgid "End of Month" msgstr "" #. module: account_followup @@ -287,8 +281,9 @@ msgid "Lines" msgstr "" #. module: account_followup -#: field:account.move.line,followup_date:0 -msgid "Latest Follow-up" +#: model:ir.actions.wizard,name:account_followup.action_account_followup_all_wizard +#: model:ir.ui.menu,name:account_followup.account_followup_wizard_menu +msgid "Send followups" msgstr "" #. module: account_followup @@ -302,8 +297,8 @@ msgid "Credit" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Amount" +#: model:ir.model,name:account_followup.model_account_followup_stat +msgid "Followup statistics" msgstr "" #. module: account_followup @@ -328,8 +323,8 @@ msgid "Follow-Up Lines" msgstr "" #. module: account_followup -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: rml:account_followup.followup.print:0 +msgid "Document : Customer account statement" msgstr "" #. module: account_followup @@ -353,8 +348,8 @@ msgid "This field allow you to select a forecast date to plan your follow-ups" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Maturity date" +#: view:account.move.line:0 +msgid "Total credit" msgstr "" #. module: account_followup @@ -433,8 +428,8 @@ msgid "\n" msgstr "" #. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_stat -msgid "Followup statistics" +#: rml:account_followup.followup.print:0 +msgid "Maturity Date" msgstr "" #. module: account_followup diff --git a/addons/account_followup/i18n/cs_CZ.po b/addons/account_followup/i18n/cs_CZ.po index 1f3a043a13e..5adfb008c5e 100644 --- a/addons/account_followup/i18n/cs_CZ.po +++ b/addons/account_followup/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/de_DE.po b/addons/account_followup/i18n/de_DE.po index 75fa0e830c3..ba0148e491e 100644 --- a/addons/account_followup/i18n/de_DE.po +++ b/addons/account_followup/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "gedruckte Nachricht" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Gesamt Soll" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Nächste Fälligkeit am:" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Gesamt Soll" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "EMail Betreff" msgid "Paid" msgstr "Bezahlt" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 20226565e71..72973b4aa76 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/es_ES.po b/addons/account_followup/i18n/es_ES.po index 8fa7527f429..f87d8108e18 100644 --- a/addons/account_followup/i18n/es_ES.po +++ b/addons/account_followup/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Mensaje impreso" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Total debe" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Debido" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Total debe" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Asunto correo electrónico" msgid "Paid" msgstr "Pagado" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/et_EE.po b/addons/account_followup/i18n/et_EE.po index 756e3b8f944..6caac058efd 100644 --- a/addons/account_followup/i18n/et_EE.po +++ b/addons/account_followup/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,13 +39,18 @@ msgstr "" #. module: account_followup #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_followup #: field:account_followup.followup.line,description:0 msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Tähtaeg" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/fr_FR.po b/addons/account_followup/i18n/fr_FR.po index d0d7e292f5e..c126d65d996 100644 --- a/addons/account_followup/i18n/fr_FR.po +++ b/addons/account_followup/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Imprimer le Message" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Total débit" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Dû" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Total débit" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Sujet du Message" msgid "Paid" msgstr "Payé" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/hr_HR.po b/addons/account_followup/i18n/hr_HR.po index 3a76dd61e31..f154fe3da71 100644 --- a/addons/account_followup/i18n/hr_HR.po +++ b/addons/account_followup/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/hu_HU.po b/addons/account_followup/i18n/hu_HU.po index a3ff9d561d4..a7705a40188 100644 --- a/addons/account_followup/i18n/hu_HU.po +++ b/addons/account_followup/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/it_IT.po b/addons/account_followup/i18n/it_IT.po index 010122646a6..1100640c8c9 100644 --- a/addons/account_followup/i18n/it_IT.po +++ b/addons/account_followup/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Mesasggio stampato" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Totale debiti" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Totale debiti" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Oggetto" msgid "Paid" msgstr "Pagato" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/lt_LT.po b/addons/account_followup/i18n/lt_LT.po index 2758991db26..994eeaa799a 100644 --- a/addons/account_followup/i18n/lt_LT.po +++ b/addons/account_followup/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index f5ffc59d37a..a17fb1a6a36 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/nl_NL.po b/addons/account_followup/i18n/nl_NL.po index a61ea129f02..6021cc173b5 100644 --- a/addons/account_followup/i18n/nl_NL.po +++ b/addons/account_followup/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Totaal debet" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Tot" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Totaal debet" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "Gefactureerd" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/pl_PL.po b/addons/account_followup/i18n/pl_PL.po index 721051f13bd..b92a8f4b310 100644 --- a/addons/account_followup/i18n/pl_PL.po +++ b/addons/account_followup/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index 1036b88dc68..e54f9def2f2 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/pt_PT.po b/addons/account_followup/i18n/pt_PT.po index dcedd818de1..39c316eedf2 100644 --- a/addons/account_followup/i18n/pt_PT.po +++ b/addons/account_followup/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Mensagem imprimida" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Debito total" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Dívida" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Debito total" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Assunto do E-mail" msgid "Paid" msgstr "Pago" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/ro_RO.po b/addons/account_followup/i18n/ro_RO.po index 2bbf9c24111..86e0726914b 100644 --- a/addons/account_followup/i18n/ro_RO.po +++ b/addons/account_followup/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/ru_RU.po b/addons/account_followup/i18n/ru_RU.po index 8e2155fa7ad..ee608cc4978 100644 --- a/addons/account_followup/i18n/ru_RU.po +++ b/addons/account_followup/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "Напечатанное сообщение" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Всего по дебету" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Срок" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Всего по дебету" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "Тема эл.письма" msgid "Paid" msgstr "Оплачено" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/sl_SL.po b/addons/account_followup/i18n/sl_SL.po index 893051931d3..6dc11a4763d 100644 --- a/addons/account_followup/i18n/sl_SL.po +++ b/addons/account_followup/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Skupaj v breme" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Skupaj v breme" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/sv_SE.po b/addons/account_followup/i18n/sv_SE.po index 0b9cf77cc28..e47d91dec83 100644 --- a/addons/account_followup/i18n/sv_SE.po +++ b/addons/account_followup/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/sv_SV.po b/addons/account_followup/i18n/sv_SV.po index f44559a3ec2..b3b787cc990 100644 --- a/addons/account_followup/i18n/sv_SV.po +++ b/addons/account_followup/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,19 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_followup +#: rml:account_followup.followup.print:0 +msgid "Date :" +msgstr "" + #. module: account_followup #: wizard_field:account_followup.followup.print.all,next,partner_ids:0 msgid "Partners" msgstr "" #. module: account_followup -#: field:account_followup.followup.line,start:0 -msgid "Type of Term" +#: rml:account_followup.followup.print:0 +msgid "Customer Ref :" msgstr "" #. module: account_followup @@ -31,19 +36,24 @@ msgstr "" msgid "All payable entries" msgstr "" +#. module: account_followup +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_followup #: field:account_followup.followup.line,description:0 msgid "Printed Message" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date:" +#: view:account.move.line:0 +msgid "Total debit" msgstr "" #. module: account_followup -#: selection:account_followup.followup.line,start:0 -msgid "End of Month" +#: rml:account_followup.followup.print:0 +msgid "Amount In Currency" msgstr "" #. module: account_followup @@ -73,6 +83,12 @@ msgstr "" msgid "Debit" msgstr "" +#. module: account_followup +#: code:addons/account_followup/wizard/wizard_followup_print.py:0 +#, python-format +msgid "Mail not sent to following Partners, Email not available !\n\n" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "Email Settings" @@ -99,12 +115,6 @@ msgstr "" msgid "%(date)s: Current Date" msgstr "" -#. module: account_followup -#: field:account_followup.followup,name:0 -#: field:account_followup.followup.line,name:0 -msgid "Name" -msgstr "" - #. module: account_followup #: code:addons/account_followup/wizard/wizard_followup_print.py:0 #, python-format @@ -112,13 +122,14 @@ msgid "\n\nMail sent to following Partners successfully, !\n\n" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer Ref:" +#: field:account.move.line,followup_date:0 +msgid "Latest Follow-up" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Document" +#: field:account_followup.followup.line,followup_id:0 +#: field:account_followup.stat,followup_id:0 +msgid "Follow Ups" msgstr "" #. module: account_followup @@ -143,19 +154,14 @@ msgstr "" msgid "VAT:" msgstr "" -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer account statement" -msgstr "" - #. module: account_followup #: field:account_followup.followup,company_id:0 msgid "Company" msgstr "" #. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" +#: rml:account_followup.followup.print:0 +msgid "Invoice Date" msgstr "" #. module: account_followup @@ -168,17 +174,6 @@ msgstr "" msgid "Paid" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total credit" -msgstr "" - -#. module: account_followup -#: model:ir.actions.wizard,name:account_followup.action_account_followup_all_wizard -#: model:ir.ui.menu,name:account_followup.account_followup_wizard_menu -msgid "Send followups" -msgstr "" - #. module: account_followup #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -200,9 +195,8 @@ msgid "Partner entries" msgstr "" #. module: account_followup -#: field:account_followup.followup.line,followup_id:0 -#: field:account_followup.stat,followup_id:0 -msgid "Follow Ups" +#: model:ir.model,name:account_followup.model_account_followup_followup_line +msgid "Follow-Ups Criteria" msgstr "" #. module: account_followup @@ -211,13 +205,13 @@ msgid "Partner Selection" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid ":" +#: field:account_followup.followup.line,start:0 +msgid "Type of Term" msgstr "" #. module: account_followup @@ -254,8 +248,9 @@ msgid "Ok" msgstr "" #. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_followup_line -msgid "Follow-Ups Criteria" +#: field:account_followup.followup,name:0 +#: field:account_followup.followup.line,name:0 +msgid "Name" msgstr "" #. module: account_followup @@ -264,9 +259,8 @@ msgid "First move" msgstr "" #. module: account_followup -#: code:addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "Mail not sent to following Partners, Email not available !\n\n" +#: selection:account_followup.followup.line,start:0 +msgid "End of Month" msgstr "" #. module: account_followup @@ -287,8 +281,9 @@ msgid "Lines" msgstr "" #. module: account_followup -#: field:account.move.line,followup_date:0 -msgid "Latest Follow-up" +#: model:ir.actions.wizard,name:account_followup.action_account_followup_all_wizard +#: model:ir.ui.menu,name:account_followup.account_followup_wizard_menu +msgid "Send followups" msgstr "" #. module: account_followup @@ -302,8 +297,8 @@ msgid "Credit" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Amount" +#: model:ir.model,name:account_followup.model_account_followup_stat +msgid "Followup statistics" msgstr "" #. module: account_followup @@ -328,8 +323,8 @@ msgid "Follow-Up Lines" msgstr "" #. module: account_followup -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: rml:account_followup.followup.print:0 +msgid "Document : Customer account statement" msgstr "" #. module: account_followup @@ -353,8 +348,8 @@ msgid "This field allow you to select a forecast date to plan your follow-ups" msgstr "" #. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Maturity date" +#: view:account.move.line:0 +msgid "Total credit" msgstr "" #. module: account_followup @@ -433,8 +428,8 @@ msgid "\n" msgstr "" #. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_stat -msgid "Followup statistics" +#: rml:account_followup.followup.print:0 +msgid "Maturity Date" msgstr "" #. module: account_followup diff --git a/addons/account_followup/i18n/tr_TR.po b/addons/account_followup/i18n/tr_TR.po index 7482319044b..7a26eeed661 100644 --- a/addons/account_followup/i18n/tr_TR.po +++ b/addons/account_followup/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/uk_UK.po b/addons/account_followup/i18n/uk_UK.po index b250e1cbd55..954d9958af9 100644 --- a/addons/account_followup/i18n/uk_UK.po +++ b/addons/account_followup/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "Всього Дебет" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "Борг" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Всього Дебет" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "Оплачено" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index c1aa2cf43ac..89b82bc00e9 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index b30b6ebe614..d9d45298e1d 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Printed Message" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Amount In Currency" @@ -56,11 +61,6 @@ msgstr "" msgid "Due" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - #. module: account_followup #: view:account_followup.followup.line:0 #: wizard_view:account_followup.followup.print.all,next:0 @@ -174,6 +174,11 @@ msgstr "" msgid "Paid" msgstr "" +#. module: account_followup +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: account_followup #: wizard_view:account_followup.followup.print.all,next:0 msgid "%(line)s: Account Move lines" @@ -237,11 +242,6 @@ msgid "\n" " " msgstr "" -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 msgid "Ok" diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot index d41c9d2a26b..dff87ae9049 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/ar_AR.po b/addons/account_invoice_layout/i18n/ar_AR.po index aba0785e194..bc6c0497b51 100644 --- a/addons/account_invoice_layout/i18n/ar_AR.po +++ b/addons/account_invoice_layout/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/bg_BG.po b/addons/account_invoice_layout/i18n/bg_BG.po index a02bae999e7..8938f981bef 100644 --- a/addons/account_invoice_layout/i18n/bg_BG.po +++ b/addons/account_invoice_layout/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Известяване със съобщение" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Документ" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Специално съобщение" msgid "Write a notification or a wishful message." msgstr "Напишете известие или пожелателно съобщение." -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Невалиден XML за преглед на архитектурат msgid "Page Break" msgstr "Нова страница" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/bs_BS.po b/addons/account_invoice_layout/i18n/bs_BS.po index 00e90e818b1..a457878cc84 100644 --- a/addons/account_invoice_layout/i18n/bs_BS.po +++ b/addons/account_invoice_layout/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Neodgovarajući XML za arhitekturu prikaza!" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/ca_ES.po b/addons/account_invoice_layout/i18n/ca_ES.po index ce11f98e04d..8fbacd804ee 100644 --- a/addons/account_invoice_layout/i18n/ca_ES.po +++ b/addons/account_invoice_layout/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Notifica mitjançant missatges" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Document" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Missatge especial" msgid "Write a notification or a wishful message." msgstr "Escriu una notificació o un missatge de felicitació" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "XML invàlid per a la definició de la vista!" msgid "Page Break" msgstr "Salt de pàgina" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/cs_CS.po b/addons/account_invoice_layout/i18n/cs_CS.po index c238c220bf0..10da9d56066 100644 --- a/addons/account_invoice_layout/i18n/cs_CS.po +++ b/addons/account_invoice_layout/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -67,13 +67,13 @@ msgid "Unit Price" msgstr "" #. module: account_invoice_layout -#: model:ir.model,name:account_invoice_layout.model_notify_message -msgid "Notify By Messages" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" +#: model:ir.model,name:account_invoice_layout.model_notify_message +msgid "Notify By Messages" msgstr "" #. module: account_invoice_layout @@ -161,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -181,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/cs_CZ.po b/addons/account_invoice_layout/i18n/cs_CZ.po index 1b39587f303..433fcb12884 100644 --- a/addons/account_invoice_layout/i18n/cs_CZ.po +++ b/addons/account_invoice_layout/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/de_DE.po b/addons/account_invoice_layout/i18n/de_DE.po index 7491c4b68cd..0c04230c8ba 100644 --- a/addons/account_invoice_layout/i18n/de_DE.po +++ b/addons/account_invoice_layout/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Zeige alle Meldungen an" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Dokument" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Spezielle Nachricht" msgid "Write a notification or a wishful message." msgstr "Schreibe eine Benachrichtigung." -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Fehlerhafter xml Code für diese Ansicht!" msgid "Page Break" msgstr "Seitenwechsel" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/es_AR.po b/addons/account_invoice_layout/i18n/es_AR.po index 01d69381e90..473d8009951 100644 --- a/addons/account_invoice_layout/i18n/es_AR.po +++ b/addons/account_invoice_layout/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/es_ES.po b/addons/account_invoice_layout/i18n/es_ES.po index e4db118b154..d0bdd5c211c 100644 --- a/addons/account_invoice_layout/i18n/es_ES.po +++ b/addons/account_invoice_layout/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Notificar mediante mensajes" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Documento" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Mensaje especial" msgid "Write a notification or a wishful message." msgstr "Escriba una notificación o un mensaje de felicitación" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Page Break" msgstr "Salto de página" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/et_EE.po b/addons/account_invoice_layout/i18n/et_EE.po index e35aa53c16f..938e54a98c2 100644 --- a/addons/account_invoice_layout/i18n/et_EE.po +++ b/addons/account_invoice_layout/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -69,18 +69,13 @@ msgstr "" #. module: account_invoice_layout #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_invoice_layout #: model:ir.model,name:account_invoice_layout.model_notify_message msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Vigane XML vaate arhitektuurile!" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/fr_FR.po b/addons/account_invoice_layout/i18n/fr_FR.po index 0badeae2bd3..bd55f96e831 100644 --- a/addons/account_invoice_layout/i18n/fr_FR.po +++ b/addons/account_invoice_layout/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Notifier par Messages" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Document" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Message Spécial" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "XML non valide pour l'architecture de la vue" msgid "Page Break" msgstr "Saut de page" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/hr_HR.po b/addons/account_invoice_layout/i18n/hr_HR.po index 7a465c3d7d5..f3dd3858a86 100644 --- a/addons/account_invoice_layout/i18n/hr_HR.po +++ b/addons/account_invoice_layout/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/hu_HU.po b/addons/account_invoice_layout/i18n/hu_HU.po index a685db4f317..98406fe9e8f 100644 --- a/addons/account_invoice_layout/i18n/hu_HU.po +++ b/addons/account_invoice_layout/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/id_ID.po b/addons/account_invoice_layout/i18n/id_ID.po index 2fb67adfba1..a2dfe356390 100644 --- a/addons/account_invoice_layout/i18n/id_ID.po +++ b/addons/account_invoice_layout/i18n/id_ID.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2009-01-07 13:19+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:47+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:29+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:33+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout @@ -110,11 +110,6 @@ msgstr "Ref. Pelanggan" msgid "Description" msgstr "Keterangan" -#. module: account_invoice_layout -#: model:ir.module.module,shortdesc:account_invoice_layout.module_meta_information -msgid "account_invoice_layout" -msgstr "" - #. module: account_invoice_layout #: field:account.invoice.line,state:0 msgid "Type" @@ -140,11 +135,6 @@ msgstr "Pajak-pajak :" msgid "Source Account" msgstr "Rekening Asal" -#. module: account_invoice_layout -#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form -msgid "Write Messages" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Base" @@ -294,3 +284,18 @@ msgstr "Total" #: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form msgid "All Notification Messages" msgstr "Semua Pesan" + +#. module: account_invoice_layout +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account_invoice_layout +#: model:ir.module.module,shortdesc:account_invoice_layout.module_meta_information +msgid "account_invoice_layout" +msgstr "" + +#. module: account_invoice_layout +#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form +msgid "Write Messages" +msgstr "" diff --git a/addons/account_invoice_layout/i18n/it_IT.po b/addons/account_invoice_layout/i18n/it_IT.po index 1f335bfdac2..8f3ede85999 100644 --- a/addons/account_invoice_layout/i18n/it_IT.po +++ b/addons/account_invoice_layout/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Notifica con messaggi" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Documento" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Messaggio speciale" msgid "Write a notification or a wishful message." msgstr "Scrivi il messaggio che desideri" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "XML non valido per Visualizzazione Architettura!" msgid "Page Break" msgstr "Interruzione di pagina" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/iu_IU.po b/addons/account_invoice_layout/i18n/iu_IU.po index c8e1d9d1da7..ab706b0c29d 100644 --- a/addons/account_invoice_layout/i18n/iu_IU.po +++ b/addons/account_invoice_layout/i18n/iu_IU.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2008-10-31 21:43+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:51+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Inuktitut \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-04-07 14:22+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:33+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout @@ -70,6 +70,11 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: account_invoice_layout +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_invoice_layout #: model:ir.model,name:account_invoice_layout.model_notify_message msgid "Notify By Messages" diff --git a/addons/account_invoice_layout/i18n/lt_LT.po b/addons/account_invoice_layout/i18n/lt_LT.po index 706976f69b3..d8c57c11afc 100644 --- a/addons/account_invoice_layout/i18n/lt_LT.po +++ b/addons/account_invoice_layout/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/nb_NB.po b/addons/account_invoice_layout/i18n/nb_NB.po index fab4806ba91..f70d67e37d9 100644 --- a/addons/account_invoice_layout/i18n/nb_NB.po +++ b/addons/account_invoice_layout/i18n/nb_NB.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2009-01-25 14:43+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:54+0000\n" "Last-Translator: Knut Carlsen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:29+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:34+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout @@ -39,11 +39,6 @@ msgstr "Objektets navn må starte med x_ og ikke inneholde spesialkarakterer!" msgid "Title" msgstr "Tittel" -#. 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. (%)" @@ -70,11 +65,6 @@ msgstr "Denne merknaden vil vises på bunnen av faktura ved utskrift" msgid "Unit Price" msgstr "Stykkpris" -#. module: account_invoice_layout -#: model:ir.model,name:account_invoice_layout.model_notify_message -msgid "Notify By Messages" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Document" @@ -95,11 +85,6 @@ msgstr "Fakturalinjer" msgid "Seq." msgstr "Sekv." -#. module: account_invoice_layout -#: model:ir.ui.menu,name:account_invoice_layout.menu_finan_config_notify_message -msgid "Notification Message" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Customer Ref:" @@ -110,11 +95,6 @@ msgstr "Kundereferanse:" msgid "Description" msgstr "Beskrivelse" -#. module: account_invoice_layout -#: model:ir.module.module,shortdesc:account_invoice_layout.module_meta_information -msgid "account_invoice_layout" -msgstr "" - #. module: account_invoice_layout #: field:account.invoice.line,state:0 msgid "Type" @@ -135,51 +115,16 @@ msgstr "Kansellert faktura" msgid "Taxes:" msgstr "MVA:" -#. module: account_invoice_layout -#: field:account.invoice.line,functional_field:0 -msgid "Source Account" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form -msgid "Write Messages" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Base" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Fax :" msgstr "Telefaks :" -#. module: account_invoice_layout -#: field:notify.message,msg:0 -msgid "Special Message" -msgstr "" - -#. module: account_invoice_layout -#: view:notify.message:0 -msgid "Write a notification or a wishful message." -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid ":" msgstr ":" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Tel. :" -msgstr "" - -#. module: account_invoice_layout -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - #. module: account_invoice_layout #: selection:account.invoice.line,state:0 msgid "Page Break" @@ -200,11 +145,6 @@ msgstr "Meldinger" msgid "Product" msgstr "Produkt" -#. 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 "Amount" @@ -235,11 +175,6 @@ msgstr "Sekvensnr." msgid "Quantity" msgstr "Antall" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Refund" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "VAT :" @@ -275,11 +210,6 @@ msgstr "Faktura" msgid "Cancel" msgstr "Kanseller" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Supplier Refund" -msgstr "" - #. module: account_invoice_layout #: wizard_field:wizard.notify_message,init,message:0 msgid "Message" @@ -290,6 +220,81 @@ msgstr "Melding" msgid "Total" msgstr "Total" +#. 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 +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account_invoice_layout +#: model:ir.model,name:account_invoice_layout.model_notify_message +msgid "Notify By Messages" +msgstr "" + +#. module: account_invoice_layout +#: model:ir.ui.menu,name:account_invoice_layout.menu_finan_config_notify_message +msgid "Notification Message" +msgstr "" + +#. module: account_invoice_layout +#: model:ir.module.module,shortdesc:account_invoice_layout.module_meta_information +msgid "account_invoice_layout" +msgstr "" + +#. module: account_invoice_layout +#: field:account.invoice.line,functional_field:0 +msgid "Source Account" +msgstr "" + +#. module: account_invoice_layout +#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form +msgid "Write Messages" +msgstr "" + +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Base" +msgstr "" + +#. module: account_invoice_layout +#: field:notify.message,msg:0 +msgid "Special Message" +msgstr "" + +#. module: account_invoice_layout +#: view:notify.message:0 +msgid "Write a notification or a wishful message." +msgstr "" + +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Tel. :" +msgstr "" + +#. module: account_invoice_layout +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +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 "Refund" +msgstr "" + +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Supplier Refund" +msgstr "" + #. module: account_invoice_layout #: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form msgid "All Notification Messages" diff --git a/addons/account_invoice_layout/i18n/nl_BE.po b/addons/account_invoice_layout/i18n/nl_BE.po index 922cbcaf27e..534ea4ffc2c 100644 --- a/addons/account_invoice_layout/i18n/nl_BE.po +++ b/addons/account_invoice_layout/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/nl_NL.po b/addons/account_invoice_layout/i18n/nl_NL.po index 0c5b68b40f9..aff15da1065 100644 --- a/addons/account_invoice_layout/i18n/nl_NL.po +++ b/addons/account_invoice_layout/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Opmerkzaam maken met bericht" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Document" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Bijzonder bericht:" msgid "Write a notification or a wishful message." msgstr "Schrijf een opmerking of een hoopvol bericht." -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Ongeldige XML voor overzicht" msgid "Page Break" msgstr "Pagina-einde" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/pl_PL.po b/addons/account_invoice_layout/i18n/pl_PL.po index c28264fd17a..126be146ae1 100644 --- a/addons/account_invoice_layout/i18n/pl_PL.po +++ b/addons/account_invoice_layout/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Dokument" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" msgid "Page Break" msgstr "Podział strony" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/pt_BR.po b/addons/account_invoice_layout/i18n/pt_BR.po index 5e3173e10c4..92f17097e53 100644 --- a/addons/account_invoice_layout/i18n/pt_BR.po +++ b/addons/account_invoice_layout/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Invalido XML para Arquitetura da View" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/pt_PT.po b/addons/account_invoice_layout/i18n/pt_PT.po index c632b854b26..16f508c793c 100644 --- a/addons/account_invoice_layout/i18n/pt_PT.po +++ b/addons/account_invoice_layout/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Notificar por mensagens" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Documento" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Mensagem especial" msgid "Write a notification or a wishful message." msgstr "Escreva uma notificação ou uma mensagem construtiva." -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "XML inválido para a arquitectura de vista" msgid "Page Break" msgstr "Quebra de Página" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/ro_RO.po b/addons/account_invoice_layout/i18n/ro_RO.po index 07ae29958cb..54b401ff0dd 100644 --- a/addons/account_invoice_layout/i18n/ro_RO.po +++ b/addons/account_invoice_layout/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/ru_RU.po b/addons/account_invoice_layout/i18n/ru_RU.po index be364d83682..9565ac531bf 100644 --- a/addons/account_invoice_layout/i18n/ru_RU.po +++ b/addons/account_invoice_layout/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "Уведомить сообщением" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "Документ" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "Специальное сообщение" msgid "Write a notification or a wishful message." msgstr "Напишите уведомление или пожелание." -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr ":" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Неправильный XML для просмотра архитект msgid "Page Break" msgstr "Разрыв страницы" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/sl_SL.po b/addons/account_invoice_layout/i18n/sl_SL.po index a81a3c1fff9..5e8ced47e84 100644 --- a/addons/account_invoice_layout/i18n/sl_SL.po +++ b/addons/account_invoice_layout/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Neveljaven XML za arhitekturo pogleda." msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/sv_SE.po b/addons/account_invoice_layout/i18n/sv_SE.po index d0c5f0e625f..f1fa6bcc277 100644 --- a/addons/account_invoice_layout/i18n/sv_SE.po +++ b/addons/account_invoice_layout/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/sv_SV.po b/addons/account_invoice_layout/i18n/sv_SV.po index 8335a1f01ac..7ea4f0339af 100644 --- a/addons/account_invoice_layout/i18n/sv_SV.po +++ b/addons/account_invoice_layout/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -67,13 +67,13 @@ msgid "Unit Price" msgstr "" #. module: account_invoice_layout -#: model:ir.model,name:account_invoice_layout.model_notify_message -msgid "Notify By Messages" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" +#: model:ir.model,name:account_invoice_layout.model_notify_message +msgid "Notify By Messages" msgstr "" #. module: account_invoice_layout @@ -161,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -181,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/tr_TR.po b/addons/account_invoice_layout/i18n/tr_TR.po index 1003af10627..c8e89ca56be 100644 --- a/addons/account_invoice_layout/i18n/tr_TR.po +++ b/addons/account_invoice_layout/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Görüntüleme mimarisi için Geçersiz XML" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/uk_UK.po b/addons/account_invoice_layout/i18n/uk_UK.po index 6eb15c450bd..250bb646973 100644 --- a/addons/account_invoice_layout/i18n/uk_UK.po +++ b/addons/account_invoice_layout/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "Неправильний XML для Архітектури Вигляд msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/zh_CN.po b/addons/account_invoice_layout/i18n/zh_CN.po index a9a8fb3c70a..84f4becd9e4 100644 --- a/addons/account_invoice_layout/i18n/zh_CN.po +++ b/addons/account_invoice_layout/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_invoice_layout/i18n/zh_TW.po b/addons/account_invoice_layout/i18n/zh_TW.po index 57afb715206..c0c7d2ce1fa 100644 --- a/addons/account_invoice_layout/i18n/zh_TW.po +++ b/addons/account_invoice_layout/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "Notify By Messages" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "PRO-FORMA" @@ -166,11 +161,6 @@ msgstr "" msgid "Write a notification or a wishful message." msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Tel. :" @@ -186,6 +176,11 @@ msgstr "" msgid "Page Break" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Document:" +msgstr "" + #. module: account_invoice_layout #: wizard_view:wizard.notify_message,init:0 msgid "Select Message" diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot index 982bbb4430c..17420f79f21 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ar_AR.po b/addons/account_payment/i18n/ar_AR.po index f1235cf91de..41df8eb9448 100644 --- a/addons/account_payment/i18n/ar_AR.po +++ b/addons/account_payment/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/bg_BG.po b/addons/account_payment/i18n/bg_BG.po index f94a4ec3c59..dd3b2deae3a 100644 --- a/addons/account_payment/i18n/bg_BG.po +++ b/addons/account_payment/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/bs_BS.po b/addons/account_payment/i18n/bs_BS.po index 65c47bb0686..5aab76dd2b2 100644 --- a/addons/account_payment/i18n/bs_BS.po +++ b/addons/account_payment/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ca_ES.po b/addons/account_payment/i18n/ca_ES.po index 964ebaf8357..9569b48d3ff 100644 --- a/addons/account_payment/i18n/ca_ES.po +++ b/addons/account_payment/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/cs_CS.po b/addons/account_payment/i18n/cs_CS.po index 3ca0291b7be..86da4e0af0b 100644 --- a/addons/account_payment/i18n/cs_CS.po +++ b/addons/account_payment/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,8 +36,8 @@ msgid "Select the Payment Mode to be applied." msgstr "" #. module: account_payment -#: field:payment.order,line_ids:0 -msgid "Payment lines" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_payment @@ -160,6 +160,11 @@ msgstr "" msgid "Invoice Effective Date" msgstr "" +#. module: account_payment +#: field:payment.order,line_ids:0 +msgid "Payment lines" +msgstr "" + #. module: account_payment #: help:payment.order,date_planned:0 msgid "Select a date if you have chosen Preferred Date to be fixed." @@ -417,8 +422,8 @@ msgid "Code" msgstr "" #. module: account_payment -#: help:payment.line,communication:0 -msgid "Used as the message between ordering customer and current company. Depicts 'What do you want to say to the recipient about this order?'" +#: field:payment.line,name:0 +msgid "Your Reference" msgstr "" #. module: account_payment @@ -534,6 +539,11 @@ msgstr "" msgid "Entry line" msgstr "" +#. module: account_payment +#: help:payment.line,communication:0 +msgid "Used as the message between ordering customer and current company. Depicts 'What do you want to say to the recipient about this order ?'" +msgstr "" + #. module: account_payment #: field:payment.mode,name:0 #: field:payment.type,name:0 @@ -605,11 +615,6 @@ msgstr "" msgid "Bank Account for the Payment Mode" msgstr "" -#. module: account_payment -#: field:payment.line,name:0 -msgid "Your Reference" -msgstr "" - #. module: account_payment #: field:payment.mode,journal:0 msgid "Journal" diff --git a/addons/account_payment/i18n/cs_CZ.po b/addons/account_payment/i18n/cs_CZ.po index 7d547cc1b63..9a933faef63 100644 --- a/addons/account_payment/i18n/cs_CZ.po +++ b/addons/account_payment/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/de_DE.po b/addons/account_payment/i18n/de_DE.po index 98ae394204e..52226b6f725 100644 --- a/addons/account_payment/i18n/de_DE.po +++ b/addons/account_payment/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 4302bfa0373..056cbea66a9 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/es_ES.po b/addons/account_payment/i18n/es_ES.po index 7b4c69e7b1c..1c3b7ceb4ab 100644 --- a/addons/account_payment/i18n/es_ES.po +++ b/addons/account_payment/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/et_EE.po b/addons/account_payment/i18n/et_EE.po index 5835f8f3a75..8c61866d1aa 100644 --- a/addons/account_payment/i18n/et_EE.po +++ b/addons/account_payment/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #. module: account_payment #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_payment #: view:payment.line:0 diff --git a/addons/account_payment/i18n/fr_FR.po b/addons/account_payment/i18n/fr_FR.po index 73a5844b97f..bd33c7a5006 100644 --- a/addons/account_payment/i18n/fr_FR.po +++ b/addons/account_payment/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/hr_HR.po b/addons/account_payment/i18n/hr_HR.po index 334ea3934a7..92ffc369745 100644 --- a/addons/account_payment/i18n/hr_HR.po +++ b/addons/account_payment/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/hu_HU.po b/addons/account_payment/i18n/hu_HU.po index 4b32db4fc4f..ea360e0990b 100644 --- a/addons/account_payment/i18n/hu_HU.po +++ b/addons/account_payment/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/it_IT.po b/addons/account_payment/i18n/it_IT.po index 46735628389..b1847369800 100644 --- a/addons/account_payment/i18n/it_IT.po +++ b/addons/account_payment/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/lt_LT.po b/addons/account_payment/i18n/lt_LT.po index cad8a6fee98..33602bc5d6b 100644 --- a/addons/account_payment/i18n/lt_LT.po +++ b/addons/account_payment/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 4d2f0fcd329..9d2d19d3e74 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/nl_NL.po b/addons/account_payment/i18n/nl_NL.po index c3e5a57eae0..df7db02a59e 100644 --- a/addons/account_payment/i18n/nl_NL.po +++ b/addons/account_payment/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pl_PL.po b/addons/account_payment/i18n/pl_PL.po index b8968183a39..e82a19f120b 100644 --- a/addons/account_payment/i18n/pl_PL.po +++ b/addons/account_payment/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index 08c16e91f14..ec6c0fd08a7 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pt_PT.po b/addons/account_payment/i18n/pt_PT.po index 17e0d7c63fe..0f5e2310ebe 100644 --- a/addons/account_payment/i18n/pt_PT.po +++ b/addons/account_payment/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ro_RO.po b/addons/account_payment/i18n/ro_RO.po index eaca575c7d6..f282b8e202d 100644 --- a/addons/account_payment/i18n/ro_RO.po +++ b/addons/account_payment/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ru_RU.po b/addons/account_payment/i18n/ru_RU.po index ac088d6621d..075bc5fc183 100644 --- a/addons/account_payment/i18n/ru_RU.po +++ b/addons/account_payment/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sl_SL.po b/addons/account_payment/i18n/sl_SL.po index 0404bf511b0..3e64f26cbf7 100644 --- a/addons/account_payment/i18n/sl_SL.po +++ b/addons/account_payment/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sv_SE.po b/addons/account_payment/i18n/sv_SE.po index 6e944a6973a..977404e579b 100644 --- a/addons/account_payment/i18n/sv_SE.po +++ b/addons/account_payment/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sv_SV.po b/addons/account_payment/i18n/sv_SV.po index b8b23aed00b..fcf4f03bcf7 100644 --- a/addons/account_payment/i18n/sv_SV.po +++ b/addons/account_payment/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,8 +36,8 @@ msgid "Select the Payment Mode to be applied." msgstr "" #. module: account_payment -#: field:payment.order,line_ids:0 -msgid "Payment lines" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_payment @@ -160,6 +160,11 @@ msgstr "" msgid "Invoice Effective Date" msgstr "" +#. module: account_payment +#: field:payment.order,line_ids:0 +msgid "Payment lines" +msgstr "" + #. module: account_payment #: help:payment.order,date_planned:0 msgid "Select a date if you have chosen Preferred Date to be fixed." @@ -417,8 +422,8 @@ msgid "Code" msgstr "" #. module: account_payment -#: help:payment.line,communication:0 -msgid "Used as the message between ordering customer and current company. Depicts 'What do you want to say to the recipient about this order?'" +#: field:payment.line,name:0 +msgid "Your Reference" msgstr "" #. module: account_payment @@ -534,6 +539,11 @@ msgstr "" msgid "Entry line" msgstr "" +#. module: account_payment +#: help:payment.line,communication:0 +msgid "Used as the message between ordering customer and current company. Depicts 'What do you want to say to the recipient about this order ?'" +msgstr "" + #. module: account_payment #: field:payment.mode,name:0 #: field:payment.type,name:0 @@ -605,11 +615,6 @@ msgstr "" msgid "Bank Account for the Payment Mode" msgstr "" -#. module: account_payment -#: field:payment.line,name:0 -msgid "Your Reference" -msgstr "" - #. module: account_payment #: field:payment.mode,journal:0 msgid "Journal" diff --git a/addons/account_payment/i18n/tr_TR.po b/addons/account_payment/i18n/tr_TR.po index 517a79a4109..794fdb668cb 100644 --- a/addons/account_payment/i18n/tr_TR.po +++ b/addons/account_payment/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/uk_UK.po b/addons/account_payment/i18n/uk_UK.po index 3b7812b6368..b5e2d33f89b 100644 --- a/addons/account_payment/i18n/uk_UK.po +++ b/addons/account_payment/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index cb85abf0f83..b70d1aee69b 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index d1fa4618152..71cde3d6b10 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/account_report.pot b/addons/account_report/i18n/account_report.pot index 74e64fac055..08bb73279aa 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ar_AR.po b/addons/account_report/i18n/ar_AR.po index 9562314d157..f347d3d9113 100644 --- a/addons/account_report/i18n/ar_AR.po +++ b/addons/account_report/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/bg_BG.po b/addons/account_report/i18n/bg_BG.po index c40b14fd7fc..30464d4a686 100644 --- a/addons/account_report/i18n/bg_BG.po +++ b/addons/account_report/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/bs_BS.po b/addons/account_report/i18n/bs_BS.po index fe809fbc05c..f3bf0f7b434 100644 --- a/addons/account_report/i18n/bs_BS.po +++ b/addons/account_report/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ca_ES.po b/addons/account_report/i18n/ca_ES.po index 97fed2b9aef..7f9a53615c6 100644 --- a/addons/account_report/i18n/ca_ES.po +++ b/addons/account_report/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/cs_CS.po b/addons/account_report/i18n/cs_CS.po index 0b1f708e97d..9a880ed4d7b 100644 --- a/addons/account_report/i18n/cs_CS.po +++ b/addons/account_report/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,6 +27,11 @@ msgstr "" msgid "Select a PDF File" msgstr "" +#. module: account_report +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_report #: view:account.report.report:0 msgid "Operators:" @@ -62,6 +67,12 @@ msgstr "" msgid "Tabular Summary" msgstr "" +#. module: account_report +#: code:addons/account_report/wizard/wizard_print_indicators.py:0 +#, python-format +msgid "Please select maximum 8 records to fit the page-width." +msgstr "" + #. module: account_report #: view:account.report.report:0 msgid "Notes" @@ -473,6 +484,12 @@ msgstr "" msgid "Custom reporting" msgstr "" +#. module: account_report +#: code:addons/account_report/wizard/wizard_print_indicators.py:0 +#, python-format +msgid "User Error!" +msgstr "" + #. module: account_report #: rml:print.indicators:0 msgid "Page" diff --git a/addons/account_report/i18n/cs_CZ.po b/addons/account_report/i18n/cs_CZ.po index d643ea076ca..630de3b0251 100644 --- a/addons/account_report/i18n/cs_CZ.po +++ b/addons/account_report/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/de_DE.po b/addons/account_report/i18n/de_DE.po index c1eb6f0d6a7..bb3612e6b9a 100644 --- a/addons/account_report/i18n/de_DE.po +++ b/addons/account_report/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/es_AR.po b/addons/account_report/i18n/es_AR.po index 1a4ef9a4299..5b8751d95ab 100644 --- a/addons/account_report/i18n/es_AR.po +++ b/addons/account_report/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/es_ES.po b/addons/account_report/i18n/es_ES.po index 727b6112cce..4816df2300b 100644 --- a/addons/account_report/i18n/es_ES.po +++ b/addons/account_report/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/et_EE.po b/addons/account_report/i18n/et_EE.po index 9aab32c6568..9c1a80f54d5 100644 --- a/addons/account_report/i18n/et_EE.po +++ b/addons/account_report/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Vali PDF fail" #. module: account_report #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_report #: view:account.report.report:0 diff --git a/addons/account_report/i18n/fr_FR.po b/addons/account_report/i18n/fr_FR.po index 9ecc18362b2..3646d6cdeeb 100644 --- a/addons/account_report/i18n/fr_FR.po +++ b/addons/account_report/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/hr_HR.po b/addons/account_report/i18n/hr_HR.po index 231f2377b8a..a18ebe3d710 100644 --- a/addons/account_report/i18n/hr_HR.po +++ b/addons/account_report/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/hu_HU.po b/addons/account_report/i18n/hu_HU.po index 65253ba7b14..615a709bea7 100644 --- a/addons/account_report/i18n/hu_HU.po +++ b/addons/account_report/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/it_IT.po b/addons/account_report/i18n/it_IT.po index e9576e4ad77..c2d50f92853 100644 --- a/addons/account_report/i18n/it_IT.po +++ b/addons/account_report/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/lt_LT.po b/addons/account_report/i18n/lt_LT.po index 224a982a3d8..c4dc60bc10b 100644 --- a/addons/account_report/i18n/lt_LT.po +++ b/addons/account_report/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/nl_BE.po b/addons/account_report/i18n/nl_BE.po index 678ea4eae0c..c224692539b 100644 --- a/addons/account_report/i18n/nl_BE.po +++ b/addons/account_report/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/nl_NL.po b/addons/account_report/i18n/nl_NL.po index 1f77064942a..6c9df4fe95b 100644 --- a/addons/account_report/i18n/nl_NL.po +++ b/addons/account_report/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pl_PL.po b/addons/account_report/i18n/pl_PL.po index 716e7e87dee..20cb421ec2f 100644 --- a/addons/account_report/i18n/pl_PL.po +++ b/addons/account_report/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pt_BR.po b/addons/account_report/i18n/pt_BR.po index 1cacb601caf..08d8e7475f0 100644 --- a/addons/account_report/i18n/pt_BR.po +++ b/addons/account_report/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pt_PT.po b/addons/account_report/i18n/pt_PT.po index fe92c639160..043212316a9 100644 --- a/addons/account_report/i18n/pt_PT.po +++ b/addons/account_report/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ro_RO.po b/addons/account_report/i18n/ro_RO.po index 2dc90704a5d..e48b5b0f0f7 100644 --- a/addons/account_report/i18n/ro_RO.po +++ b/addons/account_report/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ru_RU.po b/addons/account_report/i18n/ru_RU.po index 52ef105292b..61e3236f0ca 100644 --- a/addons/account_report/i18n/ru_RU.po +++ b/addons/account_report/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sl_SL.po b/addons/account_report/i18n/sl_SL.po index 24e51642b1f..a97abdbd54a 100644 --- a/addons/account_report/i18n/sl_SL.po +++ b/addons/account_report/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sv_SE.po b/addons/account_report/i18n/sv_SE.po index 19cc044d6d5..91b130169c0 100644 --- a/addons/account_report/i18n/sv_SE.po +++ b/addons/account_report/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sv_SV.po b/addons/account_report/i18n/sv_SV.po index b536eff6a3f..93d74589abc 100644 --- a/addons/account_report/i18n/sv_SV.po +++ b/addons/account_report/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,6 +27,11 @@ msgstr "" msgid "Select a PDF File" msgstr "" +#. module: account_report +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_report #: view:account.report.report:0 msgid "Operators:" @@ -62,6 +67,12 @@ msgstr "" msgid "Tabular Summary" msgstr "" +#. module: account_report +#: code:addons/account_report/wizard/wizard_print_indicators.py:0 +#, python-format +msgid "Please select maximum 8 records to fit the page-width." +msgstr "" + #. module: account_report #: view:account.report.report:0 msgid "Notes" @@ -473,6 +484,12 @@ msgstr "" msgid "Custom reporting" msgstr "" +#. module: account_report +#: code:addons/account_report/wizard/wizard_print_indicators.py:0 +#, python-format +msgid "User Error!" +msgstr "" + #. module: account_report #: rml:print.indicators:0 msgid "Page" diff --git a/addons/account_report/i18n/tr_TR.po b/addons/account_report/i18n/tr_TR.po index 2141247ad20..9e1847f32b7 100644 --- a/addons/account_report/i18n/tr_TR.po +++ b/addons/account_report/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/uk_UK.po b/addons/account_report/i18n/uk_UK.po index c6e0862a820..61cd6d09aa5 100644 --- a/addons/account_report/i18n/uk_UK.po +++ b/addons/account_report/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/zh_CN.po b/addons/account_report/i18n/zh_CN.po index 674e0b0cd54..190aa5980b1 100644 --- a/addons/account_report/i18n/zh_CN.po +++ b/addons/account_report/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/zh_TW.po b/addons/account_report/i18n/zh_TW.po index ea5f6834eb9..6ffc5144bd0 100644 --- a/addons/account_report/i18n/zh_TW.po +++ b/addons/account_report/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 69855e18433..d1d14835182 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ar_AR.po b/addons/account_reporting/i18n/ar_AR.po index 5e83078b499..02d5fa069f9 100644 --- a/addons/account_reporting/i18n/ar_AR.po +++ b/addons/account_reporting/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/bg_BG.po b/addons/account_reporting/i18n/bg_BG.po index 2a60a1dcf85..2df6275cb41 100644 --- a/addons/account_reporting/i18n/bg_BG.po +++ b/addons/account_reporting/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/bs_BS.po b/addons/account_reporting/i18n/bs_BS.po index 417f3c6b4bf..7596d10047e 100644 --- a/addons/account_reporting/i18n/bs_BS.po +++ b/addons/account_reporting/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ca_ES.po b/addons/account_reporting/i18n/ca_ES.po index be41ae4c5dc..9751042c223 100644 --- a/addons/account_reporting/i18n/ca_ES.po +++ b/addons/account_reporting/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/cs_CS.po b/addons/account_reporting/i18n/cs_CS.po index 282a783ed89..9b67343490e 100644 --- a/addons/account_reporting/i18n/cs_CS.po +++ b/addons/account_reporting/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Balance Sheet Report" msgstr "" +#. module: account_reporting +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_reporting #: selection:account.report.bs,font_style:0 msgid "Courier" diff --git a/addons/account_reporting/i18n/cs_CZ.po b/addons/account_reporting/i18n/cs_CZ.po index 68b1f0adeef..56cfa6a1d73 100644 --- a/addons/account_reporting/i18n/cs_CZ.po +++ b/addons/account_reporting/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/de_DE.po b/addons/account_reporting/i18n/de_DE.po index 19de97c2bdd..027b4533358 100644 --- a/addons/account_reporting/i18n/de_DE.po +++ b/addons/account_reporting/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/es_AR.po b/addons/account_reporting/i18n/es_AR.po index 2850022ee0f..36c515954dc 100644 --- a/addons/account_reporting/i18n/es_AR.po +++ b/addons/account_reporting/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/es_ES.po b/addons/account_reporting/i18n/es_ES.po index 3a998ba3a32..d241ec838fd 100644 --- a/addons/account_reporting/i18n/es_ES.po +++ b/addons/account_reporting/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/et_EE.po b/addons/account_reporting/i18n/et_EE.po index dee5818a7a0..2e30a91f86d 100644 --- a/addons/account_reporting/i18n/et_EE.po +++ b/addons/account_reporting/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: account_reporting #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: account_reporting #: selection:account.report.bs,font_style:0 diff --git a/addons/account_reporting/i18n/fr_FR.po b/addons/account_reporting/i18n/fr_FR.po index 886e35a01bd..a5d450da2fc 100644 --- a/addons/account_reporting/i18n/fr_FR.po +++ b/addons/account_reporting/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/hr_HR.po b/addons/account_reporting/i18n/hr_HR.po index 650d0fc3743..4b065b8aab1 100644 --- a/addons/account_reporting/i18n/hr_HR.po +++ b/addons/account_reporting/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/hu_HU.po b/addons/account_reporting/i18n/hu_HU.po index 9dd16fc952e..3991a8a311d 100644 --- a/addons/account_reporting/i18n/hu_HU.po +++ b/addons/account_reporting/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/id_ID.po b/addons/account_reporting/i18n/id_ID.po index c3fdb0956b3..8ee51822e02 100644 --- a/addons/account_reporting/i18n/id_ID.po +++ b/addons/account_reporting/i18n/id_ID.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2008-10-16 08:04+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 14:19+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:30+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_reporting @@ -69,33 +69,11 @@ msgstr "Courier-BoldOblique" msgid "Print BalanceSheet" msgstr "Cetak Neraca Saldo" -#. module: account_reporting -#: help:account.account.balancesheet.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - #. module: account_reporting #: field:account.report.bs,color_font:0 msgid "Font Color" msgstr "Warna Huruf" -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects With Accounts and child of Accounts" -msgstr "" - -#. module: account_reporting -#: model:ir.module.module,description:account_reporting.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Balance Sheet Report" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects With Accounts" -msgstr "" - #. module: account_reporting #: selection:account.report.bs,font_style:0 msgid "Courier-Oblique" @@ -112,16 +90,6 @@ msgstr "Salah dalam penyusunan format XML" msgid "Name" msgstr "Nama" -#. module: account_reporting -#: view:account.report.bs:0 -msgid "Account reporting" -msgstr "" - -#. module: account_reporting -#: model:ir.ui.menu,name:account_reporting.bs_report_action_form -msgid "Balance Sheet Report Form" -msgstr "" - #. module: account_reporting #: view:account.report.bs:0 msgid "Notes" @@ -132,11 +100,6 @@ msgstr "Catatan" msgid "Times-BoldItalic" msgstr "Times-BoldItalic" -#. module: account_reporting -#: model:ir.model,name:account_reporting.model_account_report_bs -msgid "Account reporting for Balance Sheet" -msgstr "" - #. module: account_reporting #: selection:account.report.bs,font_style:0 msgid "Courier-Bold" @@ -147,21 +110,6 @@ msgstr "Courier-Bold" msgid "Times-Italic" msgstr "Times-Italic" -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects Only" -msgstr "" - -#. module: account_reporting -#: model:ir.model,name:account_reporting.model_color_rml -msgid "Rml Colors" -msgstr "" - -#. module: account_reporting -#: model:ir.module.module,shortdesc:account_reporting.module_meta_information -msgid "Reporting of Balancesheet for accounting" -msgstr "" - #. module: account_reporting #: field:account.report.bs,code:0 msgid "Code" @@ -198,21 +146,11 @@ msgstr "Tahun Pembukuan" msgid "Accounts" msgstr "Akun-akun" -#. module: account_reporting -#: wizard_field:account.account.balancesheet.report,init,periods:0 -msgid "Periods" -msgstr "" - #. module: account_reporting #: field:account.report.bs,color_back:0 msgid "Back Color" msgstr "Warna Belakang" -#. module: account_reporting -#: field:account.report.bs,child_id:0 -msgid "Children" -msgstr "" - #. module: account_reporting #: wizard_button:account.account.balancesheet.report,init,end:0 msgid "Cancel" @@ -237,3 +175,70 @@ msgstr "Bentuk huruf" #: wizard_view:account.account.balancesheet.report,init:0 msgid "Customize Report" msgstr "Mengatur Laporan" + +#. module: account_reporting +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account_reporting +#: help:account.account.balancesheet.report,init,periods:0 +msgid "All periods if empty" +msgstr "" + +#. module: account_reporting +#: selection:account.report.bs,report_type:0 +msgid "Report Objects With Accounts and child of Accounts" +msgstr "" + +#. module: account_reporting +#: model:ir.module.module,description:account_reporting.module_meta_information +msgid "" +"Financial and accounting reporting\n" +" Balance Sheet Report" +msgstr "" + +#. module: account_reporting +#: selection:account.report.bs,report_type:0 +msgid "Report Objects With Accounts" +msgstr "" + +#. module: account_reporting +#: view:account.report.bs:0 +msgid "Account reporting" +msgstr "" + +#. module: account_reporting +#: model:ir.ui.menu,name:account_reporting.bs_report_action_form +msgid "Balance Sheet Report Form" +msgstr "" + +#. module: account_reporting +#: model:ir.model,name:account_reporting.model_account_report_bs +msgid "Account reporting for Balance Sheet" +msgstr "" + +#. module: account_reporting +#: selection:account.report.bs,report_type:0 +msgid "Report Objects Only" +msgstr "" + +#. module: account_reporting +#: model:ir.model,name:account_reporting.model_color_rml +msgid "Rml Colors" +msgstr "" + +#. module: account_reporting +#: model:ir.module.module,shortdesc:account_reporting.module_meta_information +msgid "Reporting of Balancesheet for accounting" +msgstr "" + +#. module: account_reporting +#: wizard_field:account.account.balancesheet.report,init,periods:0 +msgid "Periods" +msgstr "" + +#. module: account_reporting +#: field:account.report.bs,child_id:0 +msgid "Children" +msgstr "" diff --git a/addons/account_reporting/i18n/it_IT.po b/addons/account_reporting/i18n/it_IT.po index 5ef6791c626..14ecd80ccbf 100644 --- a/addons/account_reporting/i18n/it_IT.po +++ b/addons/account_reporting/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/lt_LT.po b/addons/account_reporting/i18n/lt_LT.po index 2c1019614fc..dff14fe1e13 100644 --- a/addons/account_reporting/i18n/lt_LT.po +++ b/addons/account_reporting/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/nl_BE.po b/addons/account_reporting/i18n/nl_BE.po index acfccf7f26c..460152a333a 100644 --- a/addons/account_reporting/i18n/nl_BE.po +++ b/addons/account_reporting/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/nl_NL.po b/addons/account_reporting/i18n/nl_NL.po index a19ecc374ce..d6c58e1187d 100644 --- a/addons/account_reporting/i18n/nl_NL.po +++ b/addons/account_reporting/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pl_PL.po b/addons/account_reporting/i18n/pl_PL.po index fa0031856b6..38d343b46eb 100644 --- a/addons/account_reporting/i18n/pl_PL.po +++ b/addons/account_reporting/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pt_BR.po b/addons/account_reporting/i18n/pt_BR.po index 0572438bffe..8d0e8f6fb74 100644 --- a/addons/account_reporting/i18n/pt_BR.po +++ b/addons/account_reporting/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pt_PT.po b/addons/account_reporting/i18n/pt_PT.po index 1168a83f157..146c994e9f8 100644 --- a/addons/account_reporting/i18n/pt_PT.po +++ b/addons/account_reporting/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ro_RO.po b/addons/account_reporting/i18n/ro_RO.po index c85ad588306..e9e299ef922 100644 --- a/addons/account_reporting/i18n/ro_RO.po +++ b/addons/account_reporting/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ru_RU.po b/addons/account_reporting/i18n/ru_RU.po index 3af37b33bda..8aa4f7f1e71 100644 --- a/addons/account_reporting/i18n/ru_RU.po +++ b/addons/account_reporting/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "Отчетный год" #: view:account.report.bs:0 #: field:account.report.bs,account_id:0 msgid "Accounts" -msgstr "Счета" +msgstr "Учётные записи" #. module: account_reporting #: wizard_field:account.account.balancesheet.report,init,periods:0 @@ -212,12 +212,12 @@ msgstr "Цвет фона" #. module: account_reporting #: field:account.report.bs,child_id:0 msgid "Children" -msgstr "" +msgstr "Дети" #. module: account_reporting #: wizard_button:account.account.balancesheet.report,init,end:0 msgid "Cancel" -msgstr "Отмена" +msgstr "Отменена" #. module: account_reporting #: selection:account.report.bs,font_style:0 diff --git a/addons/account_reporting/i18n/sl_SL.po b/addons/account_reporting/i18n/sl_SL.po index 44f945b6f4e..08b02e879f4 100644 --- a/addons/account_reporting/i18n/sl_SL.po +++ b/addons/account_reporting/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/sv_SE.po b/addons/account_reporting/i18n/sv_SE.po index 24831cf9c79..5c2af61b6fc 100644 --- a/addons/account_reporting/i18n/sv_SE.po +++ b/addons/account_reporting/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/sv_SV.po b/addons/account_reporting/i18n/sv_SV.po index 546018b0639..1f0f75397d6 100644 --- a/addons/account_reporting/i18n/sv_SV.po +++ b/addons/account_reporting/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Balance Sheet Report" msgstr "" +#. module: account_reporting +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: account_reporting #: selection:account.report.bs,font_style:0 msgid "Courier" diff --git a/addons/account_reporting/i18n/tr_TR.po b/addons/account_reporting/i18n/tr_TR.po index dfdf779641f..8369890bf19 100644 --- a/addons/account_reporting/i18n/tr_TR.po +++ b/addons/account_reporting/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/uk_UK.po b/addons/account_reporting/i18n/uk_UK.po index 9b852b03e47..a633b3b70ed 100644 --- a/addons/account_reporting/i18n/uk_UK.po +++ b/addons/account_reporting/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/zh_CN.po b/addons/account_reporting/i18n/zh_CN.po index b42690c7177..4e80c8158b4 100644 --- a/addons/account_reporting/i18n/zh_CN.po +++ b/addons/account_reporting/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/zh_TW.po b/addons/account_reporting/i18n/zh_TW.po index c2b0b73253f..4c1f69921cf 100644 --- a/addons/account_reporting/i18n/zh_TW.po +++ b/addons/account_reporting/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/account_tax_include.pot b/addons/account_tax_include/i18n/account_tax_include.pot index 1320f918684..cee5ab9befa 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ar_AR.po b/addons/account_tax_include/i18n/ar_AR.po index 66da45b5d4e..6206d712aff 100644 --- a/addons/account_tax_include/i18n/ar_AR.po +++ b/addons/account_tax_include/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/bg_BG.po b/addons/account_tax_include/i18n/bg_BG.po index 69d7b601e55..b8de45937f5 100644 --- a/addons/account_tax_include/i18n/bg_BG.po +++ b/addons/account_tax_include/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/bs_BS.po b/addons/account_tax_include/i18n/bs_BS.po index c688b1ec089..53f42b10763 100644 --- a/addons/account_tax_include/i18n/bs_BS.po +++ b/addons/account_tax_include/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ca_ES.po b/addons/account_tax_include/i18n/ca_ES.po index afd4a9267bd..7716070433d 100644 --- a/addons/account_tax_include/i18n/ca_ES.po +++ b/addons/account_tax_include/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/cs_CS.po b/addons/account_tax_include/i18n/cs_CS.po index d4a28e8af56..f6c3aef3c9b 100644 --- a/addons/account_tax_include/i18n/cs_CS.po +++ b/addons/account_tax_include/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/cs_CZ.po b/addons/account_tax_include/i18n/cs_CZ.po index e408b59d999..ccdf2c67b51 100644 --- a/addons/account_tax_include/i18n/cs_CZ.po +++ b/addons/account_tax_include/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/de_DE.po b/addons/account_tax_include/i18n/de_DE.po index 074f40c754b..71f9ce522b8 100644 --- a/addons/account_tax_include/i18n/de_DE.po +++ b/addons/account_tax_include/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/es_AR.po b/addons/account_tax_include/i18n/es_AR.po index bdf2f4b0082..ab3101a74ae 100644 --- a/addons/account_tax_include/i18n/es_AR.po +++ b/addons/account_tax_include/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/es_ES.po b/addons/account_tax_include/i18n/es_ES.po index d611591b17d..1e3b6088dd3 100644 --- a/addons/account_tax_include/i18n/es_ES.po +++ b/addons/account_tax_include/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/et_EE.po b/addons/account_tax_include/i18n/et_EE.po index 36631b9c5ee..79c784b2801 100644 --- a/addons/account_tax_include/i18n/et_EE.po +++ b/addons/account_tax_include/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/fr_FR.po b/addons/account_tax_include/i18n/fr_FR.po index a7a5c389811..291a84e3726 100644 --- a/addons/account_tax_include/i18n/fr_FR.po +++ b/addons/account_tax_include/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/hr_HR.po b/addons/account_tax_include/i18n/hr_HR.po index ab3a9e92893..98d6c5bff18 100644 --- a/addons/account_tax_include/i18n/hr_HR.po +++ b/addons/account_tax_include/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/hu_HU.po b/addons/account_tax_include/i18n/hu_HU.po index 6d5499fb5e9..565214f4323 100644 --- a/addons/account_tax_include/i18n/hu_HU.po +++ b/addons/account_tax_include/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/it_IT.po b/addons/account_tax_include/i18n/it_IT.po index c008d1776f0..e791703430a 100644 --- a/addons/account_tax_include/i18n/it_IT.po +++ b/addons/account_tax_include/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/lt_LT.po b/addons/account_tax_include/i18n/lt_LT.po index 18f1ff138fa..208026d5c35 100644 --- a/addons/account_tax_include/i18n/lt_LT.po +++ b/addons/account_tax_include/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/nl_BE.po b/addons/account_tax_include/i18n/nl_BE.po index 0f0cb3b6d1d..e92f9debf81 100644 --- a/addons/account_tax_include/i18n/nl_BE.po +++ b/addons/account_tax_include/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/nl_NL.po b/addons/account_tax_include/i18n/nl_NL.po index e7f91c83f47..babc9b66349 100644 --- a/addons/account_tax_include/i18n/nl_NL.po +++ b/addons/account_tax_include/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pl_PL.po b/addons/account_tax_include/i18n/pl_PL.po index 2a2f685e7f8..9d72eb81623 100644 --- a/addons/account_tax_include/i18n/pl_PL.po +++ b/addons/account_tax_include/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pt_BR.po b/addons/account_tax_include/i18n/pt_BR.po index df96113ad26..2ea3928abbc 100644 --- a/addons/account_tax_include/i18n/pt_BR.po +++ b/addons/account_tax_include/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pt_PT.po b/addons/account_tax_include/i18n/pt_PT.po index 35355b06bf9..8019c539637 100644 --- a/addons/account_tax_include/i18n/pt_PT.po +++ b/addons/account_tax_include/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ro_RO.po b/addons/account_tax_include/i18n/ro_RO.po index 00b4587e5d5..71c0bb41df6 100644 --- a/addons/account_tax_include/i18n/ro_RO.po +++ b/addons/account_tax_include/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ru_RU.po b/addons/account_tax_include/i18n/ru_RU.po index 42fcca92654..844b5ad6e05 100644 --- a/addons/account_tax_include/i18n/ru_RU.po +++ b/addons/account_tax_include/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sl_SL.po b/addons/account_tax_include/i18n/sl_SL.po index 55f74d2e602..4e9fb63ebfd 100644 --- a/addons/account_tax_include/i18n/sl_SL.po +++ b/addons/account_tax_include/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sv_SE.po b/addons/account_tax_include/i18n/sv_SE.po index 3c1e3337b7f..afe12172d1e 100644 --- a/addons/account_tax_include/i18n/sv_SE.po +++ b/addons/account_tax_include/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sv_SV.po b/addons/account_tax_include/i18n/sv_SV.po index 81383133e3d..743e900862d 100644 --- a/addons/account_tax_include/i18n/sv_SV.po +++ b/addons/account_tax_include/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/tr_TR.po b/addons/account_tax_include/i18n/tr_TR.po index 9f49e669d53..0bf06e3f538 100644 --- a/addons/account_tax_include/i18n/tr_TR.po +++ b/addons/account_tax_include/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/uk_UK.po b/addons/account_tax_include/i18n/uk_UK.po index e01f391b50b..696c61b2cc4 100644 --- a/addons/account_tax_include/i18n/uk_UK.po +++ b/addons/account_tax_include/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/zh_CN.po b/addons/account_tax_include/i18n/zh_CN.po index 59aa2093e82..02a91f3ad1d 100644 --- a/addons/account_tax_include/i18n/zh_CN.po +++ b/addons/account_tax_include/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/zh_TW.po b/addons/account_tax_include/i18n/zh_TW.po index dce0e73ab0f..bc765caf101 100644 --- a/addons/account_tax_include/i18n/zh_TW.po +++ b/addons/account_tax_include/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 f91edce6165..7923ea877be 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:23:26+0000\n" -"PO-Revision-Date: 2009-04-09 17:23:26+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/ar_AR.po b/addons/account_voucher/i18n/ar_AR.po index 4348df37d14..a5cd4633981 100644 --- a/addons/account_voucher/i18n/ar_AR.po +++ b/addons/account_voucher/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:51:37+0000\n" -"PO-Revision-Date: 2009-04-09 16:51:37+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/bg_BG.po b/addons/account_voucher/i18n/bg_BG.po index 5e59cddbc7a..3448c9cda7a 100644 --- a/addons/account_voucher/i18n/bg_BG.po +++ b/addons/account_voucher/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:53:53+0000\n" -"PO-Revision-Date: 2009-04-09 16:53:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Ред от запис на сметка" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Невалиден XML за преглед на архитектурата" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Състояние" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Невалиден XML за преглед на архитектурата" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Допълнителна информация" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Обща информация" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/bs_BS.po b/addons/account_voucher/i18n/bs_BS.po index bbeaf349c63..0bea646f2c6 100644 --- a/addons/account_voucher/i18n/bs_BS.po +++ b/addons/account_voucher/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:52:45+0000\n" -"PO-Revision-Date: 2009-04-09 16:52:45+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neodgovarajući XML za arhitekturu prikaza!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/ca_ES.po b/addons/account_voucher/i18n/ca_ES.po index 4cecd409fd7..7cc68d27656 100644 --- a/addons/account_voucher/i18n/ca_ES.po +++ b/addons/account_voucher/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:55:00+0000\n" -"PO-Revision-Date: 2009-04-09 16:55:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Crèdit total" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Línia de l'assentament comptable" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Total deure" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invàlid per a la definició de la vista!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Estat" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML invàlid per a la definició de la vista!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Informació opcional" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Informació general" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/cs_CS.po b/addons/account_voucher/i18n/cs_CS.po index e94fbf8fea9..c53d67d656f 100644 --- a/addons/account_voucher/i18n/cs_CS.po +++ b/addons/account_voucher/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,100 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -151,42 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -195,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -210,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -230,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -357,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -373,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/cs_CZ.po b/addons/account_voucher/i18n/cs_CZ.po index 2f6da885c80..3a62f45899d 100644 --- a/addons/account_voucher/i18n/cs_CZ.po +++ b/addons/account_voucher/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:59:29+0000\n" -"PO-Revision-Date: 2009-04-09 16:59:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/de_DE.po b/addons/account_voucher/i18n/de_DE.po index 03a0aad6de0..1acc6a05efb 100644 --- a/addons/account_voucher/i18n/de_DE.po +++ b/addons/account_voucher/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:05:23+0000\n" -"PO-Revision-Date: 2009-04-09 17:05:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,30 +16,166 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" -msgstr "Typ" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" +msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "Bankauszug" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" -msgstr "Status" +msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" -msgstr "Buchungsbeleg" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "Gegenkonto" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "Entwurf" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "Zahlung" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Summe Haben" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Konto" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Buchungszeile" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Summe Soll" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "Betrag" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "Analytisches Konto" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "Journal Verkaufsbeleg" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "Erhaltene Belege" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" -msgstr "Bezug Konto:" - -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "Zahlungsbestätigung" +msgstr "" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list @@ -49,107 +185,42 @@ msgstr "Zahlungsbestätigung" msgid "Payment Vouchers" msgstr "Einzahlungsbeleg" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "Weitere Info" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "Erzeuge" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "Bez. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" +msgstr "Kein" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" -msgstr "Bankauszug" +#: field:account.voucher,number:0 +msgid "Number" +msgstr "Nummer" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Fehlerhafter xml Code für diese Ansicht!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "Personendaten" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "Pro-forma Zahlungsbeleg" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Receiver's Signature" -msgstr "Empfänger Bestätigung" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form -msgid "New Cash Receipt" -msgstr "Neuer Zahlungsbeleg" - -#. module: account_voucher -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "Entwurf" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "Bankzahlung" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "Journal Verkaufsbeleg" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Status" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "Belastung" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "Andere Belege" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "PRO-FORMA" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "Buchhaltung - Belegverwaltung" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "Tats. Buchung" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" +msgstr "Typ" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "Belegzeilen" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "Gegenkonto" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "Abbrechen Belegausgabe" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "Beschreibung" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "Währung" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "Zahlungsbeleg" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" -msgstr "Autorisierte Signatur" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "-" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,30 +241,270 @@ msgstr "Zahlungsbelege" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "Beleg" + +#. module: account_voucher +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "Zahlungsbelege" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "Neue Bankzahlung" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "Auszugspositionen" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "Währung" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "Beschreibung" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +msgstr "Zahlungsbeleg Bezug" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form +msgid "New Cash Receipt" +msgstr "Neuer Zahlungsbeleg" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "Zahlungsbestätigung" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "Anfangssaldo" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" msgstr "Entwurf" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" -msgstr "Journal Einkaufsbeleg" +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" +msgstr "Zahlungsbeleg" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form msgid "New Cash Payment" msgstr "Neue Barzahlung" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Informationen (Optional)" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "Datum" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "S/H" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "Guthaben" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "Bezugstyp" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "Buchungsbeleg" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "Periode" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "Neue Bankzahlung" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "Bankzahlung" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Grundinformation" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "Pro-forma" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Weitere Info" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "Andere Belege" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "Beschreibung" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "Barzahlungsbeleg" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "Bankauszug" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" +msgstr "Journal Einkaufsbeleg" #. module: account_voucher #: view:account.account:0 @@ -242,126 +516,28 @@ msgstr "Endsaldo" msgid "Ref." msgstr "Bez." -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "Datum" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr ":" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "Zahlung" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "Versendet" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "Durch :" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "Konto" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "S/H" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "Name" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "Bezugstyp" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" +msgstr "Tats. Buchung" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "Beschreibung" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "Datiert am :" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "Zahlungsbelege" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "Betrag" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "Differenz Anfangssaldo" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "Zahlungsbeleg Bezug" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "Erhaltene Belege" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "Kein" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "Eingabe" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "Versendeter Zahlungsbeleg" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "Entwurf Zahlungsbeleg" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "Auszugspositionen" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "Nr." - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" -msgstr "Firma" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" +msgstr "" #. module: account_voucher #: field:account.voucher,move_id:0 @@ -369,114 +545,52 @@ msgid "Account Entry" msgstr "Buchungssatz" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "Satus" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" -msgstr "Guthaben" +#: view:account.voucher:0 +msgid "Entry Lines" +msgstr "" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_rec_voucher_form msgid "New Bank Receipt" msgstr "Neuer Bankauszug" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "Pro-forma" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "Barzahlungen" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "Nummer" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "Betrag (in Worten)" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "Zahlungsbeleg" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "Analytisches Konto" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "Abgebrochen" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "Anfangssaldo" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "Beleg" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "Bankzahlungsbeleg" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "Barzahlungsbeleg" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "Abbrechen" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "Bankauszugsbeleg" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "Bankauszug" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "Journal" diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 3219ba5c8b1..0986c042d6d 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:17:20+0000\n" -"PO-Revision-Date: 2009-04-09 17:17:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Información opcional" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Información general" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/es_ES.po b/addons/account_voucher/i18n/es_ES.po index 89aca54e363..df4c04b7143 100644 --- a/addons/account_voucher/i18n/es_ES.po +++ b/addons/account_voucher/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:18:35+0000\n" -"PO-Revision-Date: 2009-04-09 17:18:35+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,29 +16,165 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "State :" -msgstr "Estado :" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "On Account of :" -msgstr "En cuenta de :" +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" #. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "State :" +msgstr "" + +#. module: account_voucher +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "Cambiar a borrador" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "Línea de recibo" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Total crédito" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Cuenta" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Línea del asiento contable" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Total debe" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "Importe" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "On Account of :" msgstr "" #. module: account_voucher @@ -49,107 +185,42 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "Otra información" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "Crear" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" +msgstr "Ninguno" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "¡XML inválido para la definición de la vista!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "Borrador" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Estado" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "Débito" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" +msgstr "Tipo" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "Descripción" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "Moneda" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "Recibos" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" -msgstr "Cambiar a borrador" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML inválido para la definición de la vista!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "Moneda" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "Borrador" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Información opcional" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "Fecha" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "Tipo de referencia" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "Período" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Información general" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Otra información" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "Descripción" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "Ref." -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "Fecha" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr ":" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "Línea de recibo" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "Publicado" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "A través de:" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "Cuenta" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "Nombre:" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "Tipo de referencia" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "Fechado :" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "Importe" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "Ninguno" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "Entrada" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "Estado" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/et_EE.po b/addons/account_voucher/i18n/et_EE.po index 6859b1e59db..20ece6279c2 100644 --- a/addons/account_voucher/i18n/et_EE.po +++ b/addons/account_voucher/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:02:59+0000\n" -"PO-Revision-Date: 2009-04-09 17:02:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "Pangakviitungid" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "Ettevõte" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "Määra mustandiks" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Konto" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Raamatupidamiskande rida" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Kogu deebet" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "Analüütiline konto" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "Sissetulekuorderid" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "Muu info" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "Loo" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "Viide:" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" +msgstr "Puudub" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" -msgstr "Pangakviitungid" +#: field:account.voucher,number:0 +msgid "Number" +msgstr "Number" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Vigane XML vaate arhitektuurile!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 "Uus kassakviitung" - -#. module: account_voucher -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "Mustand" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "Pangamaksed" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Olek" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "Deebet" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "Loobu kassakviitungist" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "Kirjeldus" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "Valuuta" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "Kassakviitung" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "-" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,30 +241,270 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" -msgstr "Määra mustandiks" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" msgstr "" +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "Kassakviitungid" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "Uus pangamakse" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "Valuuta" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form +msgid "New Cash Receipt" +msgstr "Uus kassakviitung" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "Mustand" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" +msgstr "Kassakviitung" + #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form msgid "New Cash Payment" msgstr "Uus kassamakse" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "Kuupäev" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "Krediit" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "Viite tüüp" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "Periood" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "Uus pangamakse" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "Pangamaksed" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "Loobu" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Muu info" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "Kirjeldus" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "Kassa väljaminekuorder" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "Pangakviitung" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" +msgstr "" #. module: account_voucher #: view:account.account:0 @@ -242,241 +516,81 @@ msgstr "" msgid "Ref." msgstr "Viide" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "Kuupäev" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr ":" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "Postitatud" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "Konto" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "Nimi" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "Viite tüüp" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "Kassakviitungid" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "Sissetulekuorderid" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "Puudub" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "Kirje" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "Postitatud kassakviitung" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "Kassakviitungi mustand" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "Nr." - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" -msgstr "Ettevõte" - #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" msgstr "Konto kirje" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "Staatus" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" -msgstr "Krediit" +#: view:account.voucher:0 +msgid "Entry Lines" +msgstr "" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_rec_voucher_form msgid "New Bank Receipt" msgstr "Uus tühi kviitung" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "Kassamaksed" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "Number" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "Summa (sõnadega) :" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "Kassa sissetulekuorder" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "Analüütiline konto" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "Tühistatud" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "Panga väljaminekuorder" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "Kassa väljaminekuorder" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "Loobu" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "Panga sissetulekuorder" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "Pangakviitung" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/fr_FR.po b/addons/account_voucher/i18n/fr_FR.po index 24dab6b8f64..156829f85fc 100644 --- a/addons/account_voucher/i18n/fr_FR.po +++ b/addons/account_voucher/i18n/fr_FR.po @@ -6,15 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -<<<<<<< TREE -"POT-Creation-Date: 2009-02-06 15:06:40+0000\n" -"PO-Revision-Date: 2009-02-06 15:06:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" -======= -"POT-Creation-Date: 2009-04-09 17:04:09+0000\n" -"PO-Revision-Date: 2009-04-09 17:04:09+0000\n" -"Last-Translator: <>\n" ->>>>>>> MERGE-SOURCE "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,57 +16,240 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "Reçus bancaires" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "Société" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "Mettre en Brouillon" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "Ligne de Souche" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Total crédit" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Compte" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Écritures comptables" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Total débit" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "Montant" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "Compte Analytique" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_action_payments_voucher_list msgid "Payment Vouchers" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" +msgstr "Souches de Paiement" #. module: account_voucher #: view:account.voucher:0 msgid "Create" +msgstr "Créer" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" +msgstr "Aucun" + +#. module: account_voucher +#: field:account.voucher,number:0 +msgid "Number" +msgstr "Nombre" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "État" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Debit" +msgstr "Débit" + +#. module: account_voucher +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" +msgstr "Type" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list +msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Authorised Signatory" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: view:account.voucher:0 +#: model:ir.actions.act_window,name:account_voucher.action_voucher_list +msgid "Vouchers" +msgstr "Souches" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "Souche" + +#. module: account_voucher +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" msgstr "" #. module: account_voucher @@ -81,168 +258,254 @@ msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "Reçus de Caisse" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "Partenaire" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "Nouveau Paiement Bancaire" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "Lignes de Souches" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "Devise" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Receiver's Signature" -msgstr "" +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +msgstr "Référence de la Souche" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form msgid "New Cash Receipt" +msgstr "Nouveau Reçu de Caisse" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "Rapport sur les Souches" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" msgstr "" #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Draft" +msgstr "Brouillon" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" +msgstr "Reçu de Caisse" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form +msgid "New Cash Payment" +msgstr "Nouveau Paiement de Caisse" + +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Information optionnelle" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: field:account.voucher,date:0 +msgid "Date" +msgstr "Date" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Debit" +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "Crédit" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "Type de Référence" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "Souche comptable" + +#. module: account_voucher +#: field:account.voucher,period_id:0 +msgid "Period" +msgstr "Période" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "Paiements bancaires" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Informations générales" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "Annulé" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "Pro-forma" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Autres Informations" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" msgstr "" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -<<<<<<< TREE -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" -======= -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" ->>>>>>> MERGE-SOURCE - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list -msgid "Voucher Entries" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" +msgstr "Autres Souches" #. module: account_voucher #: field:account.voucher.line,name:0 msgid "Description" +msgstr "Description" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" msgstr "" #. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "Souche de Paiement Bancaire" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "Reçu Bancaire" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Authorised Signatory" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "-" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: model:ir.actions.act_window,name:account_voucher.action_voucher_list -msgid "Vouchers" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Set to Draft" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form #: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form msgid "Journal Purchase Voucher" msgstr "" -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form -msgid "New Cash Payment" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "" - #. module: account_voucher #: view:account.account:0 msgid "Closing Balance" @@ -251,127 +514,29 @@ msgstr "" #. module: account_voucher #: field:account.voucher.line,ref:0 msgid "Ref." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" +msgstr "Réf." #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" +msgstr "Posté" #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" +msgstr "Nom" + +#. module: account_voucher +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -380,120 +545,53 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_rec_voucher_form msgid "New Bank Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" +msgstr "Nouveau Reçu Bancaire" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" +msgstr "Paiements de Caisse" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" +msgstr "Souche de Paiement Bancaire" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" +msgstr "Souche de Reçu Bancaire" #. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" -<<<<<<< TREE -msgstr "" - -======= msgstr "Journal" ->>>>>>> MERGE-SOURCE diff --git a/addons/account_voucher/i18n/hr_HR.po b/addons/account_voucher/i18n/hr_HR.po index ec274ce3e58..88b52425b31 100644 --- a/addons/account_voucher/i18n/hr_HR.po +++ b/addons/account_voucher/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:58:21+0000\n" -"PO-Revision-Date: 2009-04-09 16:58:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/hu_HU.po b/addons/account_voucher/i18n/hu_HU.po index ece8aa41054..f0ebe0f7aa6 100644 --- a/addons/account_voucher/i18n/hu_HU.po +++ b/addons/account_voucher/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:06:33+0000\n" -"PO-Revision-Date: 2009-04-09 17:06:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/id_ID.po b/addons/account_voucher/i18n/id_ID.po index 02a86795a25..1286d0f5e10 100644 --- a/addons/account_voucher/i18n/id_ID.po +++ b/addons/account_voucher/i18n/id_ID.po @@ -7,21 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2009-01-02 20:15+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:51+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:31+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:34+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" -msgstr "" +#: rml:voucher.cash_receipt:0 +msgid "Particulars" +msgstr "Tertentu" #. module: account_voucher #: rml:voucher.cash_receipt:0 @@ -29,20 +28,26 @@ msgid "State :" msgstr "Status :" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" -msgstr "" +#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form +msgid "Posted Cash Receipt" +msgstr "Penerimaan Tunai terposting" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Ref. :" +msgstr "Ref :" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Akun" #. module: account_voucher #: rml:voucher.cash_receipt:0 msgid "On Account of :" msgstr "Pada Account :" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "Voucher Report" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -51,50 +56,32 @@ msgstr "Voucher Report" msgid "Payment Vouchers" msgstr "Voucher Pembayaran" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "Info Lain" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "Membuat" #. module: account_voucher +#: field:account.voucher,number:0 +msgid "Number" +msgstr "Nomor" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.voucher.line,type:0 #: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "Ref :" +msgid "Debit" +msgstr "Debit" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" -msgstr "" +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report" +msgstr "Voucher Report" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "Tertentu" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 "" +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "Saldo Awal" #. module: account_voucher #: selection:account.voucher,state:0 @@ -108,18 +95,15 @@ msgid "Bank Payments" msgstr "Pembayaran Bank" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "Nama Objek harus berawalan x_ dan tidak mengandung karakter khusus !" #. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Debit" -msgstr "Debit" +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Info Lain" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list @@ -128,29 +112,18 @@ msgid "Other Vouchers" msgstr "Voucer lain-lain" #. module: account_voucher -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "Nama Objek harus berawalan x_ dan tidak mengandung karakter khusus !" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list +msgid "Cash Payments" +msgstr "Pembayaran Tunai" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" msgstr "" #. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list -msgid "Voucher Entries" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher @@ -161,39 +134,8 @@ msgid "Contra Voucher" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Authorised Signatory" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: model:ir.actions.act_window,name:account_voucher.action_voucher_list -msgid "Vouchers" +#: field:account.voucher,company_id:0 +msgid "Company" msgstr "" #. module: account_voucher @@ -201,101 +143,11 @@ msgstr "" msgid "Set to Draft" msgstr "" -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form -msgid "New Cash Payment" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "" - -#. module: account_voucher -#: view:account.account:0 -msgid "Closing Balance" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,ref:0 -msgid "Ref." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Line" msgstr "" -#. module: account_voucher -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Posted" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "Akun" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,name:0 -msgid "Name" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - #. module: account_voucher #: field:account.voucher,amount:0 #: field:account.voucher.line,amount:0 @@ -308,8 +160,35 @@ msgid "Difference of Opening Bal." msgstr "" #. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" +#: rml:voucher.cash_receipt:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form +msgid "Pro-forma Cash Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" msgstr "" #. module: account_voucher @@ -324,18 +203,67 @@ msgid "None" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" +#: field:account.voucher,state:0 +msgid "State" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "Penerimaan Tunai terposting" +#: code:addons/account_voucher/voucher.py:0 +#, python-format +msgid "Cannot delete invoice(s) which are already opened or paid !" +msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list +msgid "Voucher Entries" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Authorised Signatory" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: model:ir.actions.act_window,name:account_voucher.action_voucher_list +msgid "Vouchers" +msgstr "" + +#. module: account_voucher +#: code:addons/account_voucher/voucher.py:0 +#, python-format +msgid "Invalid action !" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" msgstr "" #. module: account_voucher @@ -345,13 +273,173 @@ msgid "Voucher Lines" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." +#: field:account.voucher,currency_id:0 +msgid "Currency" msgstr "" #. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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 +#: rml:voucher.cash_receipt:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting - Voucher Management" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form +msgid "Cancel Cash Receipt" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form +msgid "New Cash Payment" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form +msgid "Draf Cash Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,period_id:0 +msgid "Period" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_receipt:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" +msgstr "" + +#. module: account_voucher +#: view:account.account:0 +msgid "Closing Balance" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,ref:0 +msgid "Ref." +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: rml:voucher.cash_receipt:0 +msgid "Posted" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,name:0 +msgid "Name" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,move_ids:0 +msgid "Real Entry" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Entry" msgstr "" #. module: account_voucher @@ -359,11 +447,6 @@ msgstr "" msgid "Account Entry" msgstr "" -#. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - #. module: account_voucher #: selection:account.account,type1:0 #: selection:account.voucher.line,type:0 @@ -376,27 +459,6 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list -msgid "Cash Payments" -msgstr "Pembayaran Tunai" - -#. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "Nomor" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - #. module: account_voucher #: selection:account.voucher,type:0 #: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form @@ -408,28 +470,6 @@ msgstr "" msgid "Cash Receipt Voucher" msgstr "" -#. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "Saldo Awal" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - #. module: account_voucher #: selection:account.voucher,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form @@ -437,24 +477,6 @@ msgstr "" msgid "Bank Payment Voucher" msgstr "" -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - #. module: account_voucher #: selection:account.voucher,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form @@ -462,11 +484,6 @@ msgstr "" msgid "Bank Receipt Voucher" msgstr "" -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - #. module: account_voucher #: field:account.voucher,journal_id:0 msgid "Journal" diff --git a/addons/account_voucher/i18n/it_IT.po b/addons/account_voucher/i18n/it_IT.po index 478d7e50b39..219301b636b 100644 --- a/addons/account_voucher/i18n/it_IT.po +++ b/addons/account_voucher/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:07:44+0000\n" -"PO-Revision-Date: 2009-04-09 17:07:44+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Credito Totale" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Debito Totale" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valido per Visualizzazione Architettura!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Stato" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per Visualizzazione Architettura!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/lt_LT.po b/addons/account_voucher/i18n/lt_LT.po index b30602767ea..bd66f9ab7f8 100644 --- a/addons/account_voucher/i18n/lt_LT.po +++ b/addons/account_voucher/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:08:54+0000\n" -"PO-Revision-Date: 2009-04-09 17:08:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Apskritis, rajonas:" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index baf0be8b29d..684868756c3 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:00:38+0000\n" -"PO-Revision-Date: 2009-04-09 17:00:38+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/nl_NL.po b/addons/account_voucher/i18n/nl_NL.po index 1e6809e4438..f9013ec520e 100644 --- a/addons/account_voucher/i18n/nl_NL.po +++ b/addons/account_voucher/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:01:49+0000\n" -"PO-Revision-Date: 2009-04-09 17:01:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Totaal credit" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Boekingsregel" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Totaal debet" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor overzicht" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Status" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Optionele informatie" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Algemene Informatie" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/pl_PL.po b/addons/account_voucher/i18n/pl_PL.po index 0ee8e5d6117..f694d8af519 100644 --- a/addons/account_voucher/i18n/pl_PL.po +++ b/addons/account_voucher/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:10:04+0000\n" -"PO-Revision-Date: 2009-04-09 17:10:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML niewłaściwy dla tej architektury wyświetlania!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Województwo" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML niewłaściwy dla tej architektury wyświetlania!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index a1a9f1abd87..36c897bc672 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:11:15+0000\n" -"PO-Revision-Date: 2009-04-09 17:11:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Crédito Total" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Linha do lançamento de conta" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Total de débito" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalido XML para Arquitetura da View" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Estado" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalido XML para Arquitetura da View" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Informações Gerais" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/pt_PT.po b/addons/account_voucher/i18n/pt_PT.po index ab3e0384b6e..2ff40323e01 100644 --- a/addons/account_voucher/i18n/pt_PT.po +++ b/addons/account_voucher/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:12:27+0000\n" -"PO-Revision-Date: 2009-04-09 17:12:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,30 +16,166 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "State :" -msgstr "Estado :" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "On Account of :" -msgstr "Na conta de :" +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" #. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "Relatório do voucher" +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "State :" +msgstr "" + +#. module: account_voucher +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "Definido como rascunho" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "Linha de Voucher" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "Crédito total" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "Conta" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Linha de movimento de conta" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Debito total" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "Montante" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "Conta da contabilidade analítica" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "Voucher do diario de venda" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "On Account of :" +msgstr "" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list @@ -49,107 +185,42 @@ msgstr "Relatório do voucher" msgid "Payment Vouchers" msgstr "Vouchers de pagamento" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "Outras Informações" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "Criar" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "Referencia:" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" +msgstr "Nenhum" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" -msgstr "" +#: field:account.voucher,number:0 +msgid "Number" +msgstr "Número" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML inválido para a arquitectura de vista" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "Particulares" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Receiver's Signature" -msgstr "Assinatura do receptor" - -#. 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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "Rascunho" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "Pagamentos bancários" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "Voucher do diario de venda" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Estado" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "Débito" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "Outros vouchers" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "Pro-forma" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "Entrada real" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" +msgstr "Tipo" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "Entradas de vouchers" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "Descrição" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "Moeda" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" -msgstr "Signatário autorizado" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "-" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,30 +241,270 @@ msgstr "Vouchers" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" -msgstr "Definido como rascunho" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" +msgstr "Voucher" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" -msgstr "Voucher do diário de compra" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML inválido para a arquitectura de vista" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "Terceiro" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "Novo pagamento bancário" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "Linhas Voucher" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "Moeda" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "Narração" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +msgstr "Referencia do voucher" + +#. 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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "Relatório do voucher" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "Saldo Inicial" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "Rascunho" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" +msgstr "" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form msgid "New Cash Payment" msgstr "Novo pagamento a dinheiro" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Informação Opcional" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "Data" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "Dr/Cr" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "Crédito" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "Tipo de referência" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "Período" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "Novo pagamento bancário" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "Pagamentos bancários" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Informação geral" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "Pro-forma" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "Outras Informações" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "Outros vouchers" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "Descrição" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "Voucher do pagamento a dinheiro" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" +msgstr "Voucher do diário de compra" #. module: account_voucher #: view:account.account:0 @@ -242,241 +516,81 @@ msgstr "Fechar balanço" msgid "Ref." msgstr "Referencia" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "Data" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr ":" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "Linha de Voucher" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "Publicado" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "Através" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "Conta" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "Dr/Cr" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "Nome" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "Tipo de referência" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" +msgstr "Entrada real" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "Narração" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "Datado :" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "Montante" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "Diferença do balaço inicial" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "Referencia do voucher" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "Nenhum" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "Entrada" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "Linhas Voucher" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "Nº" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" -msgstr "Empresa" - #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" msgstr "Entrada da conta" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "Estado" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" -msgstr "Crédito" +#: view:account.voucher:0 +msgid "Entry Lines" +msgstr "" #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_rec_voucher_form msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "Pro-forma" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "Pagamentos a dinheiro" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "Número" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "Montante (por extenso):" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "Conta da contabilidade analítica" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "Cancelado" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "Saldo Inicial" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "Voucher" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "Voucher do pagamento a dinheiro" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "Terceiro" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "Diário" diff --git a/addons/account_voucher/i18n/ro_RO.po b/addons/account_voucher/i18n/ro_RO.po index 6a7d25b840e..910f10549e9 100644 --- a/addons/account_voucher/i18n/ro_RO.po +++ b/addons/account_voucher/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:13:42+0000\n" -"PO-Revision-Date: 2009-04-09 17:13:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/ru_RU.po b/addons/account_voucher/i18n/ru_RU.po index d485e37cd64..efee7d21413 100644 --- a/addons/account_voucher/i18n/ru_RU.po +++ b/addons/account_voucher/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:14:55+0000\n" -"PO-Revision-Date: 2009-04-09 17:14:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Проводка по счету" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильный XML для просмотра архитектуры!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Состояние" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильный XML для просмотра архитектуры!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Доп. информация" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Общая информация" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/sl_SL.po b/addons/account_voucher/i18n/sl_SL.po index 519c7fe9247..72cedd48ac7 100644 --- a/addons/account_voucher/i18n/sl_SL.po +++ b/addons/account_voucher/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:16:08+0000\n" -"PO-Revision-Date: 2009-04-09 17:16:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neveljaven XML za arhitekturo pogleda." - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Stanje" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neveljaven XML za arhitekturo pogleda." + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Neobvezni podatki" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Splošne informacije" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/sv_SE.po b/addons/account_voucher/i18n/sv_SE.po index 543950c8fb8..6aa6977741d 100644 --- a/addons/account_voucher/i18n/sv_SE.po +++ b/addons/account_voucher/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:19:47+0000\n" -"PO-Revision-Date: 2009-04-09 17:19:47+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/sv_SV.po b/addons/account_voucher/i18n/sv_SV.po index 6de6da823f0..76742219ad4 100644 --- a/addons/account_voucher/i18n/sv_SV.po +++ b/addons/account_voucher/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,100 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -151,42 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -195,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -210,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -230,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -357,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -373,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/tr_TR.po b/addons/account_voucher/i18n/tr_TR.po index e28438e37dd..70cb44f1f5e 100644 --- a/addons/account_voucher/i18n/tr_TR.po +++ b/addons/account_voucher/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:21:01+0000\n" -"PO-Revision-Date: 2009-04-09 17:21:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Görüntüleme mimarisi için Geçersiz XML" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Durum" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Görüntüleme mimarisi için Geçersiz XML" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/uk_UK.po b/addons/account_voucher/i18n/uk_UK.po index e7bed98ef01..9ac9daa82c4 100644 --- a/addons/account_voucher/i18n/uk_UK.po +++ b/addons/account_voucher/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:22:13+0000\n" -"PO-Revision-Date: 2009-04-09 17:22:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "Рядок проводки за рахунком" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "Всього Дебет" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для Архітектури Вигляду!" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" +msgstr "Стан" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури Вигляду!" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "Додаткова інформація" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "Загальне" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index 72c31ee12e4..ef206e6786e 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:56:07+0000\n" -"PO-Revision-Date: 2009-04-09 16:56:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 935d2320845..fad0eb670b9 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 16:57:15+0000\n" -"PO-Revision-Date: 2009-04-09 16:57:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,31 +16,167 @@ msgstr "" "Plural-Forms: \n" #. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" +#: model:ir.actions.act_window,name:account_voucher.act_account_acount_move_line_open1 +msgid "Opening Balance Entry" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list +msgid "Bank Receipts" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Particulars" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "State :" msgstr "" #. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Ref. :" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form +msgid "Contra Voucher" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_voucher_form +msgid "Journal Voucher" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_receipt.drcr:0 +msgid "," +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_voucher +#: wizard_button:account.voucher.open,init,open:0 +msgid "Open Voucher Entries" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher_line +msgid "Voucher Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Credit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,account_id:0 +#: field:account.voucher.line,account_id:0 +msgid "Account" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "D" +msgstr "" + +#. module: account_voucher +#: field:account.account,level:0 +msgid "Level" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Account Entry Line" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "Total Debit" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,amount:0 +#: field:account.voucher.line,amount:0 +#: rml:voucher.cash_amount:0 +msgid "Amount" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Receiver's Signature" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "No." +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Amount (in words) :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,account_analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form +msgid "Journal Sale Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list +msgid "Receipt Vouchers" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +msgid "Account :" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "On Account of :" msgstr "" -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list #: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list @@ -49,106 +185,41 @@ msgstr "" msgid "Payment Vouchers" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Create" msgstr "" #. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +msgid "None" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" +#: field:account.voucher,number:0 +msgid "Number" msgstr "" #. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -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 -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" +#: view:account.move:0 +#: field:account.voucher,state:0 +#: wizard_field:account.voucher.open,init,state:0 +msgid "State" msgstr "" #. module: account_voucher #: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 #: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Debit" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Cannot delete invoice(s) which are already opened or paid !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" +#: field:account.voucher,type:0 +#: field:account.voucher.line,type:0 +msgid "Type" msgstr "" #. module: account_voucher @@ -157,48 +228,11 @@ msgid "Voucher Entries" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Authorised Signatory" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/voucher.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -207,14 +241,100 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -msgid "Set to Draft" +#: field:account.voucher.line,voucher_id:0 +#: model:res.request.link,name:account_voucher.req_link_voucher +msgid "Voucher" msgstr "" #. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" +#: wizard_view:account.voucher.open,init:0 +#: model:ir.ui.menu,name:account_voucher.menu_wizard_account_voucher_open +msgid "Open Vouchers" +msgstr "" + +#. module: account_voucher +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Dated :" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list +msgid "Cash Receipts" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,partner_id:0 +#: field:account.voucher.line,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form +msgid "New Bank Payment" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: field:account.voucher,payment_ids:0 +msgid "Voucher Lines" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +#: field:account.move,narration:0 +#: view:account.voucher:0 +#: field:account.voucher,narration:0 +msgid "Narration" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference:0 +msgid "Voucher Reference" +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.actions.report.xml,name:account_voucher.report_account_voucher_amt +msgid "Voucher Report" +msgstr "" + +#. module: account_voucher +#: field:account.account,open_bal:0 +msgid "Opening Balance" +msgstr "" + +#. module: account_voucher +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Draft" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list +msgid "Cash Receipt" msgstr "" #. module: account_voucher @@ -222,14 +342,168 @@ msgstr "" msgid "New Cash Payment" msgstr "" +#. module: account_voucher +#: view:account.move:0 +msgid "Optional Information" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "General Entries" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,date:0 +msgid "Date" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid ":" +msgstr "" + +#. module: account_voucher +#: field:account.account,type1:0 +#: field:account.account.template,type1:0 +msgid "Dr/Cr" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher +msgid "Voucher Report (Cr/Dr)" +msgstr "" + +#. module: account_voucher +#: field:account.move,voucher_type:0 +#: wizard_field:account.voucher.open,init,type:0 +msgid "Voucher Type" +msgstr "" + +#. module: account_voucher +#: selection:account.account,type1:0 +#: selection:account.account.template,type1:0 +#: selection:account.voucher.line,type:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Credit" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Through :" +msgstr "" + +#. module: account_voucher +#: field:account.voucher,reference_type:0 +msgid "Reference Type" +msgstr "" + +#. module: account_voucher +#: model:ir.model,name:account_voucher.model_account_voucher +msgid "Accounting Voucher" +msgstr "" + #. module: account_voucher #: field:account.voucher,period_id:0 msgid "Period" msgstr "" #. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" +#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list +msgid "Bank Payments" +msgstr "" + +#. module: account_voucher +#: view:account.move:0 +msgid "General Information" +msgstr "" + +#. module: account_voucher +#: wizard_field:account.voucher.open,init,period_ids:0 +msgid "Periods" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: wizard_button:account.voucher.open,init,end:0 +#: selection:account.voucher.open,init,state:0 +msgid "Cancel" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +#: selection:account.voucher,state:0 +#: selection:account.voucher.open,init,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account_voucher +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_voucher +#: view:account.voucher:0 +msgid "Other Info" +msgstr "" + +#. module: account_voucher +#: model:ir.module.module,shortdesc:account_voucher.module_meta_information +msgid "Accounting Voucher Entries" +msgstr "" + +#. module: account_voucher +#: field:res.currency,sub_name:0 +msgid "Sub Currency" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list +#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list +msgid "Other Vouchers" +msgstr "" + +#. module: account_voucher +#: field:account.voucher.line,name:0 +msgid "Description" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Canceled" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "Cash Payment Voucher" +msgstr "" + +#. module: account_voucher +#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list +msgid "Bank Receipt" +msgstr "" + +#. module: account_voucher +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 +msgid "-" +msgstr "" + +#. module: account_voucher +#: selection:account.move,voucher_type:0 +#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 +#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form +#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form +msgid "Journal Purchase Voucher" msgstr "" #. module: account_voucher @@ -242,125 +516,27 @@ msgstr "" msgid "Ref." msgstr "" -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - #. module: account_voucher #: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 +#: selection:account.voucher.open,init,state:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Posted" msgstr "" -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - #. module: account_voucher #: field:account.voucher,name:0 msgid "Name" msgstr "" #. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" +#: field:account.voucher,move_ids:0 +msgid "Real Entry" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" +#: model:ir.actions.wizard,name:account_voucher.wizard_account_voucher_open +msgid "Open a Voucher Entry" msgstr "" #. module: account_voucher @@ -369,15 +545,8 @@ msgid "Account Entry" msgstr "" #. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" +#: view:account.voucher:0 +msgid "Entry Lines" msgstr "" #. module: account_voucher @@ -385,98 +554,43 @@ msgstr "" msgid "New Bank Receipt" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list msgid "Cash Payments" msgstr "" #. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Cash Receipt Voucher" msgstr "" #. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Payment Voucher" msgstr "" #. module: account_voucher +#: selection:account.move,voucher_type:0 #: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 +#: selection:account.voucher.open,init,type:0 #: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 +#: rml:voucher.cash_amount:0 +#: rml:voucher.cash_receipt.drcr:0 msgid "Bank Receipt Voucher" msgstr "" #. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher +#: field:account.account,journal_id:0 #: field:account.voucher,journal_id:0 msgid "Journal" msgstr "" 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 e108a608d4e..1c5214d22e5 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ar_AR.po b/addons/analytic_journal_billing_rate/i18n/ar_AR.po index c0bb29e44c4..3a5ac0fe07f 100644 --- a/addons/analytic_journal_billing_rate/i18n/ar_AR.po +++ b/addons/analytic_journal_billing_rate/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/bg_BG.po b/addons/analytic_journal_billing_rate/i18n/bg_BG.po index 9e518e46cf5..31a3102bd4d 100644 --- a/addons/analytic_journal_billing_rate/i18n/bg_BG.po +++ b/addons/analytic_journal_billing_rate/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/bs_BS.po b/addons/analytic_journal_billing_rate/i18n/bs_BS.po index b41ec02f821..83f5f0a6c6e 100644 --- a/addons/analytic_journal_billing_rate/i18n/bs_BS.po +++ b/addons/analytic_journal_billing_rate/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ca_ES.po b/addons/analytic_journal_billing_rate/i18n/ca_ES.po index 440c729b94b..32bd5510cab 100644 --- a/addons/analytic_journal_billing_rate/i18n/ca_ES.po +++ b/addons/analytic_journal_billing_rate/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/cs_CS.po b/addons/analytic_journal_billing_rate/i18n/cs_CS.po index a14f1345871..08356fb6f32 100644 --- a/addons/analytic_journal_billing_rate/i18n/cs_CS.po +++ b/addons/analytic_journal_billing_rate/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/cs_CZ.po b/addons/analytic_journal_billing_rate/i18n/cs_CZ.po index 8fc13d185bf..dacd895be25 100644 --- a/addons/analytic_journal_billing_rate/i18n/cs_CZ.po +++ b/addons/analytic_journal_billing_rate/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/de_DE.po b/addons/analytic_journal_billing_rate/i18n/de_DE.po index 80227d2b7b1..32447be0b79 100644 --- a/addons/analytic_journal_billing_rate/i18n/de_DE.po +++ b/addons/analytic_journal_billing_rate/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/es_AR.po b/addons/analytic_journal_billing_rate/i18n/es_AR.po index 43ee4bac6cb..73e1d2a16b9 100644 --- a/addons/analytic_journal_billing_rate/i18n/es_AR.po +++ b/addons/analytic_journal_billing_rate/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/es_ES.po b/addons/analytic_journal_billing_rate/i18n/es_ES.po index 2f1754e6eae..19c9e8661cc 100644 --- a/addons/analytic_journal_billing_rate/i18n/es_ES.po +++ b/addons/analytic_journal_billing_rate/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/et_EE.po b/addons/analytic_journal_billing_rate/i18n/et_EE.po index e9b5f186803..27aa86275b9 100644 --- a/addons/analytic_journal_billing_rate/i18n/et_EE.po +++ b/addons/analytic_journal_billing_rate/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/fr_FR.po b/addons/analytic_journal_billing_rate/i18n/fr_FR.po index 1e6d2f74078..f7f64fd6e30 100644 --- a/addons/analytic_journal_billing_rate/i18n/fr_FR.po +++ b/addons/analytic_journal_billing_rate/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/hr_HR.po b/addons/analytic_journal_billing_rate/i18n/hr_HR.po index de0f7d6d803..8b36381be1a 100644 --- a/addons/analytic_journal_billing_rate/i18n/hr_HR.po +++ b/addons/analytic_journal_billing_rate/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/hu_HU.po b/addons/analytic_journal_billing_rate/i18n/hu_HU.po index 6639a9128dd..01521cd08d8 100644 --- a/addons/analytic_journal_billing_rate/i18n/hu_HU.po +++ b/addons/analytic_journal_billing_rate/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/it_IT.po b/addons/analytic_journal_billing_rate/i18n/it_IT.po index fa6d573dec7..b7681612d46 100644 --- a/addons/analytic_journal_billing_rate/i18n/it_IT.po +++ b/addons/analytic_journal_billing_rate/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/lt_LT.po b/addons/analytic_journal_billing_rate/i18n/lt_LT.po index 026eb0355bd..b896e70756e 100644 --- a/addons/analytic_journal_billing_rate/i18n/lt_LT.po +++ b/addons/analytic_journal_billing_rate/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/nl_BE.po b/addons/analytic_journal_billing_rate/i18n/nl_BE.po index 32c7b1516b1..e51fc4da560 100644 --- a/addons/analytic_journal_billing_rate/i18n/nl_BE.po +++ b/addons/analytic_journal_billing_rate/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/nl_NL.po b/addons/analytic_journal_billing_rate/i18n/nl_NL.po index 7d5ae9226d3..708fba516fe 100644 --- a/addons/analytic_journal_billing_rate/i18n/nl_NL.po +++ b/addons/analytic_journal_billing_rate/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pl_PL.po b/addons/analytic_journal_billing_rate/i18n/pl_PL.po index 9bec641342c..bab44568747 100644 --- a/addons/analytic_journal_billing_rate/i18n/pl_PL.po +++ b/addons/analytic_journal_billing_rate/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pt_BR.po b/addons/analytic_journal_billing_rate/i18n/pt_BR.po index abefd663b02..cc63fe5a90d 100644 --- a/addons/analytic_journal_billing_rate/i18n/pt_BR.po +++ b/addons/analytic_journal_billing_rate/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pt_PT.po b/addons/analytic_journal_billing_rate/i18n/pt_PT.po index cf676d508ce..15071fcaa77 100644 --- a/addons/analytic_journal_billing_rate/i18n/pt_PT.po +++ b/addons/analytic_journal_billing_rate/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ro_RO.po b/addons/analytic_journal_billing_rate/i18n/ro_RO.po index b2ca307a87d..a76a2475bb2 100644 --- a/addons/analytic_journal_billing_rate/i18n/ro_RO.po +++ b/addons/analytic_journal_billing_rate/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ru_RU.po b/addons/analytic_journal_billing_rate/i18n/ru_RU.po index 509992cb7f0..aacfb626f47 100644 --- a/addons/analytic_journal_billing_rate/i18n/ru_RU.po +++ b/addons/analytic_journal_billing_rate/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sl_SL.po b/addons/analytic_journal_billing_rate/i18n/sl_SL.po index b82538d2566..9a40b85a26e 100644 --- a/addons/analytic_journal_billing_rate/i18n/sl_SL.po +++ b/addons/analytic_journal_billing_rate/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sv_SE.po b/addons/analytic_journal_billing_rate/i18n/sv_SE.po index 8231baff3d4..7c8621f66d3 100644 --- a/addons/analytic_journal_billing_rate/i18n/sv_SE.po +++ b/addons/analytic_journal_billing_rate/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sv_SV.po b/addons/analytic_journal_billing_rate/i18n/sv_SV.po index 3de4be47361..9e0be49c79a 100644 --- a/addons/analytic_journal_billing_rate/i18n/sv_SV.po +++ b/addons/analytic_journal_billing_rate/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/tr_TR.po b/addons/analytic_journal_billing_rate/i18n/tr_TR.po index b446af2c527..a942eaea2d9 100644 --- a/addons/analytic_journal_billing_rate/i18n/tr_TR.po +++ b/addons/analytic_journal_billing_rate/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/uk_UK.po b/addons/analytic_journal_billing_rate/i18n/uk_UK.po index 6ae7b7d8e48..39035303019 100644 --- a/addons/analytic_journal_billing_rate/i18n/uk_UK.po +++ b/addons/analytic_journal_billing_rate/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/zh_CN.po b/addons/analytic_journal_billing_rate/i18n/zh_CN.po index e376a2153fb..e87bb7595f2 100644 --- a/addons/analytic_journal_billing_rate/i18n/zh_CN.po +++ b/addons/analytic_journal_billing_rate/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/zh_TW.po b/addons/analytic_journal_billing_rate/i18n/zh_TW.po index 872ac5c39dc..89b27564a1e 100644 --- a/addons/analytic_journal_billing_rate/i18n/zh_TW.po +++ b/addons/analytic_journal_billing_rate/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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 6c25837d24f..955bdd86575 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ar_AR.po b/addons/analytic_user_function/i18n/ar_AR.po index 2770b176336..95bf97abc32 100644 --- a/addons/analytic_user_function/i18n/ar_AR.po +++ b/addons/analytic_user_function/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/bg_BG.po b/addons/analytic_user_function/i18n/bg_BG.po index c9baa45d4df..7f528cdfb25 100644 --- a/addons/analytic_user_function/i18n/bg_BG.po +++ b/addons/analytic_user_function/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/bs_BS.po b/addons/analytic_user_function/i18n/bs_BS.po index 7586978d655..e334c3478f8 100644 --- a/addons/analytic_user_function/i18n/bs_BS.po +++ b/addons/analytic_user_function/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ca_ES.po b/addons/analytic_user_function/i18n/ca_ES.po index 65bc5e363bb..fd71c76d271 100644 --- a/addons/analytic_user_function/i18n/ca_ES.po +++ b/addons/analytic_user_function/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/cs_CS.po b/addons/analytic_user_function/i18n/cs_CS.po index c3bd36cbb1c..a406ba5146c 100644 --- a/addons/analytic_user_function/i18n/cs_CS.po +++ b/addons/analytic_user_function/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,14 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: analytic_user_function -#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid -msgid "Relation table between users and products on a analytic account" +#: code:addons/analytic_user_function/analytic_user_function.py:0 +#, python-format +msgid "Error !" +msgstr "" + +#. module: analytic_user_function +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: analytic_user_function @@ -47,8 +53,8 @@ msgid "User" msgstr "" #. module: analytic_user_function -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid +msgid "Relation table between users and products on a analytic account" msgstr "" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/cs_CZ.po b/addons/analytic_user_function/i18n/cs_CZ.po index 2e71ade2b83..8a5706a2c82 100644 --- a/addons/analytic_user_function/i18n/cs_CZ.po +++ b/addons/analytic_user_function/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/de_DE.po b/addons/analytic_user_function/i18n/de_DE.po index d707131b753..b58d465605d 100644 --- a/addons/analytic_user_function/i18n/de_DE.po +++ b/addons/analytic_user_function/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 9bedc314c1a..d2d767cce0f 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/es_ES.po b/addons/analytic_user_function/i18n/es_ES.po index d15163182e2..041e9c44d35 100644 --- a/addons/analytic_user_function/i18n/es_ES.po +++ b/addons/analytic_user_function/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/et_EE.po b/addons/analytic_user_function/i18n/et_EE.po index a9bb463be10..dc8f0f49440 100644 --- a/addons/analytic_user_function/i18n/et_EE.po +++ b/addons/analytic_user_function/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/fr_FR.po b/addons/analytic_user_function/i18n/fr_FR.po index 9d8076f7a6a..3d40f180350 100644 --- a/addons/analytic_user_function/i18n/fr_FR.po +++ b/addons/analytic_user_function/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/hr_HR.po b/addons/analytic_user_function/i18n/hr_HR.po index f46b980adff..b18861ea192 100644 --- a/addons/analytic_user_function/i18n/hr_HR.po +++ b/addons/analytic_user_function/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/hu_HU.po b/addons/analytic_user_function/i18n/hu_HU.po index f202a58af48..0de48b32562 100644 --- a/addons/analytic_user_function/i18n/hu_HU.po +++ b/addons/analytic_user_function/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/it_IT.po b/addons/analytic_user_function/i18n/it_IT.po index c60a361158e..7ed7e6168bd 100644 --- a/addons/analytic_user_function/i18n/it_IT.po +++ b/addons/analytic_user_function/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/lt_LT.po b/addons/analytic_user_function/i18n/lt_LT.po index 5857b23d452..60eeae39fb7 100644 --- a/addons/analytic_user_function/i18n/lt_LT.po +++ b/addons/analytic_user_function/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 100f0db9b5a..6612e266ccc 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/nl_NL.po b/addons/analytic_user_function/i18n/nl_NL.po index 173ec480398..e1c7be91945 100644 --- a/addons/analytic_user_function/i18n/nl_NL.po +++ b/addons/analytic_user_function/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pl_PL.po b/addons/analytic_user_function/i18n/pl_PL.po index 0f41d361be2..fd26931fe06 100644 --- a/addons/analytic_user_function/i18n/pl_PL.po +++ b/addons/analytic_user_function/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index d6cd4152ae9..d496ce3048d 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pt_PT.po b/addons/analytic_user_function/i18n/pt_PT.po index 3d1b5ae3115..5d0dd119325 100644 --- a/addons/analytic_user_function/i18n/pt_PT.po +++ b/addons/analytic_user_function/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ro_RO.po b/addons/analytic_user_function/i18n/ro_RO.po index 395e6c3abd3..d9e81974874 100644 --- a/addons/analytic_user_function/i18n/ro_RO.po +++ b/addons/analytic_user_function/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ru_RU.po b/addons/analytic_user_function/i18n/ru_RU.po index 4ed8501744b..c8d58ecfcb5 100644 --- a/addons/analytic_user_function/i18n/ru_RU.po +++ b/addons/analytic_user_function/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sl_SL.po b/addons/analytic_user_function/i18n/sl_SL.po index 286665f2f2f..5251cab741d 100644 --- a/addons/analytic_user_function/i18n/sl_SL.po +++ b/addons/analytic_user_function/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sv_SE.po b/addons/analytic_user_function/i18n/sv_SE.po index bb945c68aeb..8886524c4bf 100644 --- a/addons/analytic_user_function/i18n/sv_SE.po +++ b/addons/analytic_user_function/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sv_SV.po b/addons/analytic_user_function/i18n/sv_SV.po index eed7889303e..980470ac44f 100644 --- a/addons/analytic_user_function/i18n/sv_SV.po +++ b/addons/analytic_user_function/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,10 +21,16 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: analytic_user_function -#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid -msgid "Relation table between users and products on a analytic account" +#: code:addons/analytic_user_function/analytic_user_function.py:0 +#, python-format +msgid "Error !" msgstr "" +#. module: analytic_user_function +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + #. module: analytic_user_function #: field:analytic_user_funct_grid,product_id:0 msgid "Product" @@ -47,9 +53,9 @@ msgid "User" msgstr "" #. module: analytic_user_function -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid +msgid "Relation table between users and products on a analytic account" +msgstr "" #. module: analytic_user_function #: model:ir.module.module,shortdesc:analytic_user_function.module_meta_information diff --git a/addons/analytic_user_function/i18n/tr_TR.po b/addons/analytic_user_function/i18n/tr_TR.po index 70bedc775ef..4a64a9eb412 100644 --- a/addons/analytic_user_function/i18n/tr_TR.po +++ b/addons/analytic_user_function/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/uk_UK.po b/addons/analytic_user_function/i18n/uk_UK.po index ecb9ba481d2..1c806d8b982 100644 --- a/addons/analytic_user_function/i18n/uk_UK.po +++ b/addons/analytic_user_function/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index 720d7ebbe5b..475ae2d6a3d 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 884bb1e2ea5..4580d6466fb 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/ar_AR.po b/addons/auction/i18n/ar_AR.po index b17265aea3b..219c3e14c86 100644 --- a/addons/auction/i18n/ar_AR.po +++ b/addons/auction/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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 b042bc49357..f0caddd945d 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/bg_BG.po b/addons/auction/i18n/bg_BG.po index 51ee4bc44bb..bcb69df2238 100644 --- a/addons/auction/i18n/bg_BG.po +++ b/addons/auction/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/bs_BS.po b/addons/auction/i18n/bs_BS.po index 0e4292a1c1b..e6215c64c17 100644 --- a/addons/auction/i18n/bs_BS.po +++ b/addons/auction/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/ca_ES.po b/addons/auction/i18n/ca_ES.po index 240290c6bec..7631147e3d7 100644 --- a/addons/auction/i18n/ca_ES.po +++ b/addons/auction/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/cs_CS.po b/addons/auction/i18n/cs_CS.po index 15cf0ef95df..f711d634994 100644 --- a/addons/auction/i18n/cs_CS.po +++ b/addons/auction/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Seller" msgstr "" +#. module: auction +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: auction #: selection:auction.lots.send.aie,date_ask,numerotation:0 #: selection:auction.lots.send.aie,init,numerotation:0 @@ -341,6 +346,12 @@ msgstr "" msgid "Seller Invoice" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The Buyer \"%s\" has no Invoice Address." +msgstr "" + #. module: auction #: view:auction.dates:0 msgid "Commissions" @@ -864,6 +875,12 @@ msgstr "" msgid "comparaison estimate/adjudication " msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The object \"%s\" has no buyer assigned." +msgstr "" + #. module: auction #: rml:buyer.list:0 msgid "Adj(EUR)" @@ -953,6 +970,12 @@ msgstr "" msgid "(Keep empty for automatic number)" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "No Invoice Address" +msgstr "" + #. module: auction #: model:ir.model,name:auction.model_report_auction_object_date #: view:report.auction.object.date:0 @@ -1230,6 +1253,12 @@ msgstr "" msgid "Depositer Inventory" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The Buyer has no Invoice Address." +msgstr "" + #. module: auction #: model:ir.ui.menu,name:auction.menu_report_deposit_tree_m #: model:ir.ui.menu,name:auction.menu_report_deposit_tree_member @@ -1683,6 +1712,12 @@ msgstr "" msgid "Buyer, Price" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "Missed buyer !" +msgstr "" + #. module: auction #: rml:auction.code_bar_lot:0 msgid "Flagey" @@ -2010,8 +2045,8 @@ msgid "TEL:" msgstr "" #. module: auction -#: field:auction.dates,acc_income:0 -msgid "Income Account" +#: model:ir.ui.menu,name:auction.menu_all_objects_to_sell +msgid "Objects to sell" msgstr "" #. module: auction @@ -2298,6 +2333,12 @@ msgstr "" msgid "Unplanned Objects" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "Missed Address !" +msgstr "" + #. module: auction #: field:report.buyer.auction2,gross_revenue:0 msgid "Gross Revenue" @@ -2445,8 +2486,8 @@ msgid "Adjudication price" msgstr "" #. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_to_sell -msgid "Objects to sell" +#: field:auction.dates,acc_income:0 +msgid "Income Account" msgstr "" #. module: auction diff --git a/addons/auction/i18n/cs_CZ.po b/addons/auction/i18n/cs_CZ.po index df6d2ecdbb2..6a8be29dc21 100644 --- a/addons/auction/i18n/cs_CZ.po +++ b/addons/auction/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/de_DE.po b/addons/auction/i18n/de_DE.po index 1f401bd20c7..e7fd1f640cb 100644 --- a/addons/auction/i18n/de_DE.po +++ b/addons/auction/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/es_AR.po b/addons/auction/i18n/es_AR.po index 4aa2b5e78a0..c439e0510f5 100644 --- a/addons/auction/i18n/es_AR.po +++ b/addons/auction/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/es_ES.po b/addons/auction/i18n/es_ES.po index 94fbaf1a72c..1bf99f1504a 100644 --- a/addons/auction/i18n/es_ES.po +++ b/addons/auction/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/et_EE.po b/addons/auction/i18n/et_EE.po index 64594f0fd31..090ca385515 100644 --- a/addons/auction/i18n/et_EE.po +++ b/addons/auction/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgstr "" #. module: auction #: wizard_view:auction.lots.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "SMS - Värav: clickatell" #. module: auction #: view:auction.lots:0 msgid "Set to draft" -msgstr "" +msgstr "Sea mustandiks" #. module: auction #: field:auction.deposit,partner_id:0 @@ -43,7 +43,7 @@ msgstr "Müüja" #. module: auction #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: auction #: selection:auction.lots.send.aie,date_ask,numerotation:0 @@ -76,7 +76,7 @@ msgstr "" #: field:report.auction.object.date,obj_num:0 #: field:report.auction.view2,obj_number:0 msgid "# of Objects" -msgstr "" +msgstr "Objektide arv" #. module: auction #: model:ir.ui.menu,name:auction.menu_action_bids_form @@ -286,7 +286,7 @@ msgstr "" #. module: auction #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: auction #: rml:auction.total.rml:0 @@ -662,7 +662,7 @@ msgstr "" #. module: auction #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: auction #: model:ir.module.module,description:auction.module_meta_information @@ -2266,7 +2266,7 @@ msgstr "" #. module: auction #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Viga! Sa ei saa luua rekursiivseid seotud liikmeid." #. module: auction #: selection:auction.dates,state:0 diff --git a/addons/auction/i18n/fr_FR.po b/addons/auction/i18n/fr_FR.po index 5713960788d..0ac354a12ba 100644 --- a/addons/auction/i18n/fr_FR.po +++ b/addons/auction/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/hr_HR.po b/addons/auction/i18n/hr_HR.po index d388c7d1a08..375f07e39bd 100644 --- a/addons/auction/i18n/hr_HR.po +++ b/addons/auction/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/hu_HU.po b/addons/auction/i18n/hu_HU.po index ab3135b2b95..8a87b69433d 100644 --- a/addons/auction/i18n/hu_HU.po +++ b/addons/auction/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/it_IT.po b/addons/auction/i18n/it_IT.po index 0a1f5858b34..a0c6cf9842c 100644 --- a/addons/auction/i18n/it_IT.po +++ b/addons/auction/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/lt_LT.po b/addons/auction/i18n/lt_LT.po index d9f6357cc67..8419ea0d317 100644 --- a/addons/auction/i18n/lt_LT.po +++ b/addons/auction/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/nl_BE.po b/addons/auction/i18n/nl_BE.po index 57daed318a8..b52e05fe168 100644 --- a/addons/auction/i18n/nl_BE.po +++ b/addons/auction/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/nl_NL.po b/addons/auction/i18n/nl_NL.po index 48886f28b3a..7ed732ab3a7 100644 --- a/addons/auction/i18n/nl_NL.po +++ b/addons/auction/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/pl_PL.po b/addons/auction/i18n/pl_PL.po index 8acc249fa72..ca0828d9fa2 100644 --- a/addons/auction/i18n/pl_PL.po +++ b/addons/auction/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/pt_BR.po b/addons/auction/i18n/pt_BR.po index 14833e63e54..f3731a167c9 100644 --- a/addons/auction/i18n/pt_BR.po +++ b/addons/auction/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/pt_PT.po b/addons/auction/i18n/pt_PT.po index 0c934f7d38c..12c49e501e9 100644 --- a/addons/auction/i18n/pt_PT.po +++ b/addons/auction/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/ro_RO.po b/addons/auction/i18n/ro_RO.po index db14506899a..345cf39862b 100644 --- a/addons/auction/i18n/ro_RO.po +++ b/addons/auction/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/ru_RU.po b/addons/auction/i18n/ru_RU.po index 01c85042de1..5632d365e14 100644 --- a/addons/auction/i18n/ru_RU.po +++ b/addons/auction/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/sl_SL.po b/addons/auction/i18n/sl_SL.po index c8b338c4798..39edc2380ab 100644 --- a/addons/auction/i18n/sl_SL.po +++ b/addons/auction/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/sv_SE.po b/addons/auction/i18n/sv_SE.po index 269691601b1..052a4079240 100644 --- a/addons/auction/i18n/sv_SE.po +++ b/addons/auction/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/sv_SV.po b/addons/auction/i18n/sv_SV.po index 45665275e3b..7cd19731083 100644 --- a/addons/auction/i18n/sv_SV.po +++ b/addons/auction/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Seller" msgstr "" +#. module: auction +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: auction #: selection:auction.lots.send.aie,date_ask,numerotation:0 #: selection:auction.lots.send.aie,init,numerotation:0 @@ -341,6 +346,12 @@ msgstr "" msgid "Seller Invoice" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The Buyer \"%s\" has no Invoice Address." +msgstr "" + #. module: auction #: view:auction.dates:0 msgid "Commissions" @@ -864,6 +875,12 @@ msgstr "" msgid "comparaison estimate/adjudication " msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The object \"%s\" has no buyer assigned." +msgstr "" + #. module: auction #: rml:buyer.list:0 msgid "Adj(EUR)" @@ -953,6 +970,12 @@ msgstr "" msgid "(Keep empty for automatic number)" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "No Invoice Address" +msgstr "" + #. module: auction #: model:ir.model,name:auction.model_report_auction_object_date #: view:report.auction.object.date:0 @@ -1230,6 +1253,12 @@ msgstr "" msgid "Depositer Inventory" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "The Buyer has no Invoice Address." +msgstr "" + #. module: auction #: model:ir.ui.menu,name:auction.menu_report_deposit_tree_m #: model:ir.ui.menu,name:auction.menu_report_deposit_tree_member @@ -1683,6 +1712,12 @@ msgstr "" msgid "Buyer, Price" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "Missed buyer !" +msgstr "" + #. module: auction #: rml:auction.code_bar_lot:0 msgid "Flagey" @@ -2010,8 +2045,8 @@ msgid "TEL:" msgstr "" #. module: auction -#: field:auction.dates,acc_income:0 -msgid "Income Account" +#: model:ir.ui.menu,name:auction.menu_all_objects_to_sell +msgid "Objects to sell" msgstr "" #. module: auction @@ -2131,7 +2166,7 @@ msgstr "" #. module: auction #: model:ir.ui.menu,name:auction.auction_report_menu msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: auction #: view:auction.lots:0 @@ -2298,6 +2333,12 @@ msgstr "" msgid "Unplanned Objects" msgstr "" +#. module: auction +#: code:addons/auction/auction.py:0 +#, python-format +msgid "Missed Address !" +msgstr "" + #. module: auction #: field:report.buyer.auction2,gross_revenue:0 msgid "Gross Revenue" @@ -2445,8 +2486,8 @@ msgid "Adjudication price" msgstr "" #. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_to_sell -msgid "Objects to sell" +#: field:auction.dates,acc_income:0 +msgid "Income Account" msgstr "" #. module: auction diff --git a/addons/auction/i18n/tr_TR.po b/addons/auction/i18n/tr_TR.po index b315bc42493..bf92924483b 100644 --- a/addons/auction/i18n/tr_TR.po +++ b/addons/auction/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/uk_UK.po b/addons/auction/i18n/uk_UK.po index 2f67e17b473..a7b452455c4 100644 --- a/addons/auction/i18n/uk_UK.po +++ b/addons/auction/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/zh_CN.po b/addons/auction/i18n/zh_CN.po index b9540dc4725..cb9aafd39e3 100644 --- a/addons/auction/i18n/zh_CN.po +++ b/addons/auction/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/zh_TW.po b/addons/auction/i18n/zh_TW.po index 82d036fc6fb..51875e09a99 100644 --- a/addons/auction/i18n/zh_TW.po +++ b/addons/auction/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ar_AR.po b/addons/audittrail/i18n/ar_AR.po index c57be20c488..9f017544877 100644 --- a/addons/audittrail/i18n/ar_AR.po +++ b/addons/audittrail/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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 8b16c6b978c..75bedbbead3 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/bg_BG.po b/addons/audittrail/i18n/bg_BG.po index 6ef23e1fb97..85f2d411106 100644 --- a/addons/audittrail/i18n/bg_BG.po +++ b/addons/audittrail/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/bs_BS.po b/addons/audittrail/i18n/bs_BS.po index 324cff45b6b..93a5352e42d 100644 --- a/addons/audittrail/i18n/bs_BS.po +++ b/addons/audittrail/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ca_ES.po b/addons/audittrail/i18n/ca_ES.po index 8b858104027..1da23f62a95 100644 --- a/addons/audittrail/i18n/ca_ES.po +++ b/addons/audittrail/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/cs_CS.po b/addons/audittrail/i18n/cs_CS.po index 7cb0b08dee6..08a74dd05f0 100644 --- a/addons/audittrail/i18n/cs_CS.po +++ b/addons/audittrail/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Old Value" msgstr "" +#. module: audittrail +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: audittrail #: model:ir.actions.wizard,name:audittrail.wizard_audittrail_log msgid "View log" @@ -152,6 +157,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: audittrail +#: code:addons/audittrail/audittrail.py:0 +#, python-format +msgid "WARNING:audittrail is not part of the pool" +msgstr "" + #. module: audittrail #: field:audittrail.log,user_id:0 msgid "User" @@ -168,8 +179,9 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: audittrail -#: field:audittrail.log,name:0 -msgid "Name" +#: code:addons/audittrail/audittrail.py:0 +#, python-format +msgid "Change audittrail depends -- Setting rule as DRAFT" msgstr "" #. module: audittrail @@ -297,3 +309,8 @@ msgstr "" msgid "Log deletes" msgstr "" +#. module: audittrail +#: field:audittrail.log,name:0 +msgid "Name" +msgstr "" + diff --git a/addons/audittrail/i18n/cs_CZ.po b/addons/audittrail/i18n/cs_CZ.po index de2a5a5d9f4..5a0ecd88cf1 100644 --- a/addons/audittrail/i18n/cs_CZ.po +++ b/addons/audittrail/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/de_DE.po b/addons/audittrail/i18n/de_DE.po index 2ea6a885c96..059e2519195 100644 --- a/addons/audittrail/i18n/de_DE.po +++ b/addons/audittrail/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index f2f3e746505..5d83d3ffd1c 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/es_ES.po b/addons/audittrail/i18n/es_ES.po index be3d876c59e..3a2e3f3b05e 100644 --- a/addons/audittrail/i18n/es_ES.po +++ b/addons/audittrail/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/et_EE.po b/addons/audittrail/i18n/et_EE.po index c57029b31b8..8f9e9e88693 100644 --- a/addons/audittrail/i18n/et_EE.po +++ b/addons/audittrail/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Vana väärtus" #. module: audittrail #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: audittrail #: model:ir.actions.wizard,name:audittrail.wizard_audittrail_log diff --git a/addons/audittrail/i18n/fr_FR.po b/addons/audittrail/i18n/fr_FR.po index 724700d3dfa..cfc0f37cf98 100644 --- a/addons/audittrail/i18n/fr_FR.po +++ b/addons/audittrail/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/hr_HR.po b/addons/audittrail/i18n/hr_HR.po index 6f7bfce58e8..5c4222490bc 100644 --- a/addons/audittrail/i18n/hr_HR.po +++ b/addons/audittrail/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/hu_HU.po b/addons/audittrail/i18n/hu_HU.po index bf3bbd08253..0cde9f5741c 100644 --- a/addons/audittrail/i18n/hu_HU.po +++ b/addons/audittrail/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/it_IT.po b/addons/audittrail/i18n/it_IT.po index 3d990680807..db7501a9ca5 100644 --- a/addons/audittrail/i18n/it_IT.po +++ b/addons/audittrail/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/lt_LT.po b/addons/audittrail/i18n/lt_LT.po index 93d69e2e7ef..980b899de8c 100644 --- a/addons/audittrail/i18n/lt_LT.po +++ b/addons/audittrail/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index ec7013e7921..5f90d507c73 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/nl_NL.po b/addons/audittrail/i18n/nl_NL.po index 7859c66eba6..1ed67c0a744 100644 --- a/addons/audittrail/i18n/nl_NL.po +++ b/addons/audittrail/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pl_PL.po b/addons/audittrail/i18n/pl_PL.po index e485375597e..ee1a5dcaf2a 100644 --- a/addons/audittrail/i18n/pl_PL.po +++ b/addons/audittrail/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 1dfe858ab75..06b03fb809d 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pt_PT.po b/addons/audittrail/i18n/pt_PT.po index 5ca7dd6b522..c1d82929a91 100644 --- a/addons/audittrail/i18n/pt_PT.po +++ b/addons/audittrail/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ro_RO.po b/addons/audittrail/i18n/ro_RO.po index f623c328a63..6c563e2ad88 100644 --- a/addons/audittrail/i18n/ro_RO.po +++ b/addons/audittrail/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ru_RU.po b/addons/audittrail/i18n/ru_RU.po index cad608902a0..a78c21ff924 100644 --- a/addons/audittrail/i18n/ru_RU.po +++ b/addons/audittrail/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sl_SL.po b/addons/audittrail/i18n/sl_SL.po index 0679075d82b..229bb9f75a2 100644 --- a/addons/audittrail/i18n/sl_SL.po +++ b/addons/audittrail/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sv_SE.po b/addons/audittrail/i18n/sv_SE.po index 42a60cd654f..08ce0947f70 100644 --- a/addons/audittrail/i18n/sv_SE.po +++ b/addons/audittrail/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sv_SV.po b/addons/audittrail/i18n/sv_SV.po index 96fc19595ab..b7bedadba24 100644 --- a/addons/audittrail/i18n/sv_SV.po +++ b/addons/audittrail/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Old Value" msgstr "" +#. module: audittrail +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: audittrail #: model:ir.actions.wizard,name:audittrail.wizard_audittrail_log msgid "View log" @@ -152,6 +157,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: audittrail +#: code:addons/audittrail/audittrail.py:0 +#, python-format +msgid "WARNING:audittrail is not part of the pool" +msgstr "" + #. module: audittrail #: field:audittrail.log,user_id:0 msgid "User" @@ -168,8 +179,9 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: audittrail -#: field:audittrail.log,name:0 -msgid "Name" +#: code:addons/audittrail/audittrail.py:0 +#, python-format +msgid "Change audittrail depends -- Setting rule as DRAFT" msgstr "" #. module: audittrail @@ -297,3 +309,8 @@ msgstr "" msgid "Log deletes" msgstr "" +#. module: audittrail +#: field:audittrail.log,name:0 +msgid "Name" +msgstr "" + diff --git a/addons/audittrail/i18n/tr_TR.po b/addons/audittrail/i18n/tr_TR.po index b84e0d2de25..0097ea434fc 100644 --- a/addons/audittrail/i18n/tr_TR.po +++ b/addons/audittrail/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/uk_UK.po b/addons/audittrail/i18n/uk_UK.po index 405b38eb054..f88f098f59e 100644 --- a/addons/audittrail/i18n/uk_UK.po +++ b/addons/audittrail/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 70a9f5c3137..23956882228 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 457c4c6d3e5..aaa0a6dbc3b 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/ar_AR.po b/addons/base_contact/i18n/ar_AR.po index 6dbb91982e8..7f617ce5442 100644 --- a/addons/base_contact/i18n/ar_AR.po +++ b/addons/base_contact/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/base_contact.pot b/addons/base_contact/i18n/base_contact.pot index 4da40fead17..bca5d4870e8 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/bg_BG.po b/addons/base_contact/i18n/bg_BG.po index 93a361f2158..1382ad961ea 100644 --- a/addons/base_contact/i18n/bg_BG.po +++ b/addons/base_contact/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Собствено име" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,16 +90,26 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Функция" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" msgstr "" +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Език" + #. module: base_contact #: field:res.partner.job,phone:0 msgid "Phone" @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "ел. поща" @@ -157,11 +173,22 @@ msgstr "Nationality" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Категории" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Език" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Мобилен" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/bs_BS.po b/addons/base_contact/i18n/bs_BS.po index b662e3575dd..430d17d9374 100644 --- a/addons/base_contact/i18n/bs_BS.po +++ b/addons/base_contact/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/ca_ES.po b/addons/base_contact/i18n/ca_ES.po index 93f7e8b1eee..08d20a42eb8 100644 --- a/addons/base_contact/i18n/ca_ES.po +++ b/addons/base_contact/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Primer nom" msgid "Contact Partner Function" msgstr "Funció contacte a l'empresa" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Empresa a adreça" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Funció" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Treball principal" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Idioma" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Ordre d'importància d'aquesta ocupació en la llista d'ocupacions de l'empresa relacionada" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "Email" @@ -157,11 +173,22 @@ msgstr "Nacionalitat" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Ordre d'importància d'aquesta adreça en la llista d'adreces del contacte relacionat" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categories" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Seq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Idioma" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Mòbil" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/cs_CS.po b/addons/base_contact/i18n/cs_CS.po index c474091a4a0..ee1a7afdeba 100644 --- a/addons/base_contact/i18n/cs_CS.po +++ b/addons/base_contact/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: base_contact +#: field:res.partner.job,function_id:0 +msgid "Partner Function" +msgstr "" + #. module: base_contact #: model:ir.actions.act_window,name:base_contact.action_partner_contact_form #: model:ir.ui.menu,name:base_contact.menu_partner_contact_form @@ -60,14 +65,19 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" msgstr "" #. module: base_contact -#: field:res.partner.job,function_id:0 -msgid "Partner Function" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base_contact @@ -80,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -121,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -152,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategorie" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -178,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -187,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/cs_CZ.po b/addons/base_contact/i18n/cs_CZ.po index 63e4895a74d..313154d000f 100644 --- a/addons/base_contact/i18n/cs_CZ.po +++ b/addons/base_contact/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategorie" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/de_DE.po b/addons/base_contact/i18n/de_DE.po index b7ef12af7b7..ade738f20c1 100644 --- a/addons/base_contact/i18n/de_DE.po +++ b/addons/base_contact/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Vorname" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Anschreiben Partner" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Funktion" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Beruf" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Sprache" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Wichtigkeit der Anschriften in der Adressliste des Partners" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-Mail" @@ -157,11 +173,22 @@ msgstr "Nationalität" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Wichtigkeit der Anschriften in der Adressliste des Kontakts" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategorien" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Seq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Sprache" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Mobil" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/es_AR.po b/addons/base_contact/i18n/es_AR.po index 3d28b7eaf6b..3c62412f647 100644 --- a/addons/base_contact/i18n/es_AR.po +++ b/addons/base_contact/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorías" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/es_ES.po b/addons/base_contact/i18n/es_ES.po index 06fc36eb689..e47ade0e46a 100644 --- a/addons/base_contact/i18n/es_ES.po +++ b/addons/base_contact/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Nombre" msgid "Contact Partner Function" msgstr "Función contacto en empresa" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Empresa a dirección" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Cargo" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Trabajo principal" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Idioma" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Orden de importancia de este empleo en la lista de empleos de la empresa relacionada" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "Correo electrónico" @@ -157,11 +173,22 @@ msgstr "Nacionalidad" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Orden de importancia de esta dirección en la lista de direcciones del contacto relacionado" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorías" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Sec." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Idioma" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Móvil" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/et_EE.po b/addons/base_contact/i18n/et_EE.po index b4adef22f13..156c86301c6 100644 --- a/addons/base_contact/i18n/et_EE.po +++ b/addons/base_contact/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Eesnimi" msgid "Contact Partner Function" msgstr "Kontaktpartneri otstarve" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -73,7 +78,7 @@ msgstr "Kontakt otstarvetesse" #. module: base_contact #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: base_contact #: model:process.transition,name:base_contact.process_transition_partnertoaddress0 @@ -83,6 +88,11 @@ msgstr "Partner aadressidesse" #. module: base_contact #: view:res.partner.address:0 msgid "# of Contacts" +msgstr "Kontaktide arv" + +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" msgstr "" #. module: base_contact @@ -91,9 +101,14 @@ msgid "Function" msgstr "Funktsioon" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Peamine töö" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Keel" #. module: base_contact #: field:res.partner.job,phone:0 @@ -118,7 +133,7 @@ msgstr "Kontaktifunktsioonid" #. module: base_contact #: model:ir.module.module,shortdesc:base_contact.module_meta_information msgid "Base Contact" -msgstr "" +msgstr "Baas kontakt" #. module: base_contact #: help:res.partner.job,sequence_partner:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Selle ameti tähtsus kontakti ametite nimistus." #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-post" @@ -157,11 +173,22 @@ msgstr "Rahvus" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Selle aadressi tähtsus kontakti aadresside nimistus." +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategooriad" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Jada" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Keel" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Mobiil" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/fr_FR.po b/addons/base_contact/i18n/fr_FR.po index 0957231fe63..5eb27ba48a3 100644 --- a/addons/base_contact/i18n/fr_FR.po +++ b/addons/base_contact/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Prénom" msgid "Contact Partner Function" msgstr "Fonction du contact du partenaire" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Partenaire vers adresse" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Fonction" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Emploi principal" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Langue" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Par ordre d'importance le titre de cet emploi dans la liste des titres d'emplois est lié au partenaire" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-Mail" @@ -157,11 +173,22 @@ msgstr "Nationalité" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Par ordre d'importance, cette adresse dans la liste d'adresse est lié au contact" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Catégories" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Séq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Langue" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Portable" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/hr_HR.po b/addons/base_contact/i18n/hr_HR.po index 148ff9c0270..36e3ee7b629 100644 --- a/addons/base_contact/i18n/hr_HR.po +++ b/addons/base_contact/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/hu_HU.po b/addons/base_contact/i18n/hu_HU.po index 2e2e3e90ddf..27f9ab51703 100644 --- a/addons/base_contact/i18n/hu_HU.po +++ b/addons/base_contact/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategóriák" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/it_IT.po b/addons/base_contact/i18n/it_IT.po index 5bfefb83869..6c8a718064f 100644 --- a/addons/base_contact/i18n/it_IT.po +++ b/addons/base_contact/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Nome" msgid "Contact Partner Function" msgstr "Funzione di contatto Partner" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Partner da contattare" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Funzione" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Lavoro principale" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Lingua" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Ordine di importanza di qualifica di attività nella lista delle qualifiche del partner collegato" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-Mail" @@ -157,11 +173,22 @@ msgstr "Nazionalità" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Ordine di importanza di questo indirizzo nella lista degli indirizzi del contatto collegato" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorie" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Seq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Lingua" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Cellulare" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/lt_LT.po b/addons/base_contact/i18n/lt_LT.po index f9928f3f928..70165dfee80 100644 --- a/addons/base_contact/i18n/lt_LT.po +++ b/addons/base_contact/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/nl_BE.po b/addons/base_contact/i18n/nl_BE.po index d340acecec0..682e39e2d43 100644 --- a/addons/base_contact/i18n/nl_BE.po +++ b/addons/base_contact/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/nl_NL.po b/addons/base_contact/i18n/nl_NL.po index e53d38f19f7..bbf8321d341 100644 --- a/addons/base_contact/i18n/nl_NL.po +++ b/addons/base_contact/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Voornaam" msgid "Contact Partner Function" msgstr "Functie contactpersoon" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Relatie naar adres" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Functie" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Hoofdtaak" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Taal" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Volgorde van belangrijkheid van deze functie in de lijst van functies van de gekoppelde relatie" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-mail" @@ -157,11 +173,22 @@ msgstr "Nationaliteit" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Volgorde van belangrijkheid van dit adres in de lijst van adressen van de gekoppelde contactpersoon" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categoriën" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Volgorde" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Taal" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Mobiel" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/pl_PL.po b/addons/base_contact/i18n/pl_PL.po index d0f72cc2a46..54db0e7975b 100644 --- a/addons/base_contact/i18n/pl_PL.po +++ b/addons/base_contact/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Imię" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,16 +90,26 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Funkcja" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" msgstr "" +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Język" + #. module: base_contact #: field:res.partner.job,phone:0 msgid "Phone" @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-mail" @@ -157,11 +173,22 @@ msgstr "Narodowość" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Język" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Telefon komórkowy" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/pt_BR.po b/addons/base_contact/i18n/pt_BR.po index 9f10a8f260f..18d0ed7df08 100644 --- a/addons/base_contact/i18n/pt_BR.po +++ b/addons/base_contact/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Primeiro Nome" msgid "Contact Partner Function" msgstr "Função do contato do parceiro" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Endereço do Parceiro" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Função" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Principal Trabalho" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Idioma" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Ordem de importância deste cargo, na lista de postos de trabalho ligados a título de parceiro" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-mail" @@ -157,11 +173,22 @@ msgstr "Nacionalidade" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Ordem de importância deste endereço na lista de endereços ligados aos contatos" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorias" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Seq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Idioma" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Celular" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/pt_PT.po b/addons/base_contact/i18n/pt_PT.po index 89781a2bfdc..cc8932a4144 100644 --- a/addons/base_contact/i18n/pt_PT.po +++ b/addons/base_contact/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Primeiro Nome" msgid "Contact Partner Function" msgstr "Função de contacto do terceiro" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,15 +90,25 @@ msgstr "Terceiro a endereçar" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Função" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "Trabalho principal" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Língua" #. module: base_contact #: field:res.partner.job,phone:0 @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "Ordem de importância deste titulo de trabalho na lista de titulo de trabalho do terceiro relacionado" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-Mail" @@ -157,11 +173,22 @@ msgstr "Nacionalidade" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "Ordem de importância deste endereço na lista de endereços do cliente relacionado" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorias" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "Seq." #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Língua" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Telemóvel" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/ro_RO.po b/addons/base_contact/i18n/ro_RO.po index afab304a7df..13f68c1336a 100644 --- a/addons/base_contact/i18n/ro_RO.po +++ b/addons/base_contact/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Categorii" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/ru_RU.po b/addons/base_contact/i18n/ru_RU.po index a4aaaae99d9..4c73e426ca6 100644 --- a/addons/base_contact/i18n/ru_RU.po +++ b/addons/base_contact/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Имя" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,16 +90,26 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Функция" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" msgstr "" +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Язык" + #. module: base_contact #: field:res.partner.job,phone:0 msgid "Phone" @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "Эл. почта" @@ -157,11 +173,22 @@ msgstr "Национальность" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Категории" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Язык" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Моб. тел." +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/sl_SL.po b/addons/base_contact/i18n/sl_SL.po index 76f78f9f0ee..51e137e1e48 100644 --- a/addons/base_contact/i18n/sl_SL.po +++ b/addons/base_contact/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Ime" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,16 +90,26 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "Funkcija" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" msgstr "" +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" +msgstr "Jezik" + #. module: base_contact #: field:res.partner.job,phone:0 msgid "Phone" @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "E-pošta" @@ -157,11 +173,22 @@ msgstr "Državljanstvo" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Kategorije" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,15 +210,20 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "Jezik" +#: field:res.partner.job,extension:0 +msgid "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" msgstr "Mobilni telefon" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/sv_SE.po b/addons/base_contact/i18n/sv_SE.po index 8278b6d9e00..4555cfb3d4a 100644 --- a/addons/base_contact/i18n/sv_SE.po +++ b/addons/base_contact/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/sv_SV.po b/addons/base_contact/i18n/sv_SV.po index 0a2f8f677ba..f76eae7cfe0 100644 --- a/addons/base_contact/i18n/sv_SV.po +++ b/addons/base_contact/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#. module: base_contact +#: field:res.partner.job,function_id:0 +msgid "Partner Function" +msgstr "" + #. module: base_contact #: model:ir.actions.act_window,name:base_contact.action_partner_contact_form #: model:ir.ui.menu,name:base_contact.menu_partner_contact_form @@ -60,14 +65,19 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" msgstr "" #. module: base_contact -#: field:res.partner.job,function_id:0 -msgid "Partner Function" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base_contact @@ -80,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -121,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -152,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -178,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -187,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/tr_TR.po b/addons/base_contact/i18n/tr_TR.po index a0096630ae1..e3a1d5669ba 100644 --- a/addons/base_contact/i18n/tr_TR.po +++ b/addons/base_contact/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "Ad" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/uk_UK.po b/addons/base_contact/i18n/uk_UK.po index 2049ae8a970..12844a7633a 100644 --- a/addons/base_contact/i18n/uk_UK.po +++ b/addons/base_contact/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "Категорії" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/zh_CN.po b/addons/base_contact/i18n/zh_CN.po index 2f29aa34566..178a0457078 100644 --- a/addons/base_contact/i18n/zh_CN.po +++ b/addons/base_contact/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "分类" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_contact/i18n/zh_TW.po b/addons/base_contact/i18n/zh_TW.po index 141ac06f04c..013c2a120e9 100644 --- a/addons/base_contact/i18n/zh_TW.po +++ b/addons/base_contact/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,6 +65,11 @@ msgstr "" msgid "Contact Partner Function" msgstr "" +#. module: base_contact +#: field:res.partner.job,other:0 +msgid "Other" +msgstr "" + #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" @@ -85,14 +90,24 @@ msgstr "" msgid "# of Contacts" msgstr "" +#. module: base_contact +#: help:res.partner.job,other:0 +msgid "Additional phone field" +msgstr "" + #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 msgid "Function" msgstr "" #. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" +#: field:res.partner.job,fax:0 +msgid "Fax" +msgstr "" + +#. module: base_contact +#: field:res.partner.contact,lang_id:0 +msgid "Language" msgstr "" #. module: base_contact @@ -126,6 +141,7 @@ msgid "Order of importance of this job title in the list of job title of the lin msgstr "" #. module: base_contact +#: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" msgstr "" @@ -157,11 +173,22 @@ msgstr "" msgid "Order of importance of this address in the list of addresses of the linked contact" msgstr "" +#. module: base_contact +#: field:res.partner.address,job_id:0 +#: field:res.partner.contact,job_id:0 +msgid "Main Job" +msgstr "" + #. module: base_contact #: view:res.partner:0 msgid "Categories" msgstr "分类" +#. module: base_contact +#: field:res.partner.contact,function_id:0 +msgid "Main Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -183,8 +210,8 @@ msgid "Seq." msgstr "" #. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" +#: field:res.partner.job,extension:0 +msgid "Extension" msgstr "" #. module: base_contact @@ -192,6 +219,11 @@ msgstr "" msgid "Mobile" msgstr "" +#. module: base_contact +#: help:res.partner.job,extension:0 +msgid "Internal/External extension phone number" +msgstr "" + #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." diff --git a/addons/base_iban/i18n/ar_AR.po b/addons/base_iban/i18n/ar_AR.po index 2471d7fad7d..9fb876e5ec0 100644 --- a/addons/base_iban/i18n/ar_AR.po +++ b/addons/base_iban/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 884de94a418..1edcea60bb0 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bg_BG.po b/addons/base_iban/i18n/bg_BG.po index 3a4b9a1db2d..ad3a2a70f51 100644 --- a/addons/base_iban/i18n/bg_BG.po +++ b/addons/base_iban/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bs_BS.po b/addons/base_iban/i18n/bs_BS.po index 640fe284300..1abab8152f8 100644 --- a/addons/base_iban/i18n/bs_BS.po +++ b/addons/base_iban/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ca_ES.po b/addons/base_iban/i18n/ca_ES.po index afc80b18fea..7fad6d2743d 100644 --- a/addons/base_iban/i18n/ca_ES.po +++ b/addons/base_iban/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/cs_CS.po b/addons/base_iban/i18n/cs_CS.po index 75270445536..c292a5f1767 100644 --- a/addons/base_iban/i18n/cs_CS.po +++ b/addons/base_iban/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/cs_CZ.po b/addons/base_iban/i18n/cs_CZ.po index 9679ce419bc..1022c94bcde 100644 --- a/addons/base_iban/i18n/cs_CZ.po +++ b/addons/base_iban/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/de_DE.po b/addons/base_iban/i18n/de_DE.po index ad010f90c35..cb4ee5ee535 100644 --- a/addons/base_iban/i18n/de_DE.po +++ b/addons/base_iban/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index c70b446a1bd..0d59ec3c300 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/es_ES.po b/addons/base_iban/i18n/es_ES.po index 9a808d8c72b..fe7485bd418 100644 --- a/addons/base_iban/i18n/es_ES.po +++ b/addons/base_iban/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/et_EE.po b/addons/base_iban/i18n/et_EE.po index 1b7593bd4dc..f9a7e93bd46 100644 --- a/addons/base_iban/i18n/et_EE.po +++ b/addons/base_iban/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "iban" #: model:ir.module.module,shortdesc:base_iban.module_meta_information #: field:res.partner.bank,iban:0 msgid "IBAN" -msgstr "" +msgstr "IBAN" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/fr_FR.po b/addons/base_iban/i18n/fr_FR.po index 89e49d17d91..db5c0fb15b9 100644 --- a/addons/base_iban/i18n/fr_FR.po +++ b/addons/base_iban/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/hr_HR.po b/addons/base_iban/i18n/hr_HR.po index e99ede4b695..fbcdbb5a7b8 100644 --- a/addons/base_iban/i18n/hr_HR.po +++ b/addons/base_iban/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/hu_HU.po b/addons/base_iban/i18n/hu_HU.po index 451f9232d84..8921e70ddfa 100644 --- a/addons/base_iban/i18n/hu_HU.po +++ b/addons/base_iban/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/it_IT.po b/addons/base_iban/i18n/it_IT.po index 06a4d3ed467..b0e07c24fe6 100644 --- a/addons/base_iban/i18n/it_IT.po +++ b/addons/base_iban/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/lt_LT.po b/addons/base_iban/i18n/lt_LT.po index 0ef5788d2e8..d1571089e17 100644 --- a/addons/base_iban/i18n/lt_LT.po +++ b/addons/base_iban/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 002c516f2bf..8f8f0a7359f 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/nl_NL.po b/addons/base_iban/i18n/nl_NL.po index fe93f2effbd..a8604305817 100644 --- a/addons/base_iban/i18n/nl_NL.po +++ b/addons/base_iban/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pl_PL.po b/addons/base_iban/i18n/pl_PL.po index 95f621cda6c..068dda6e93a 100644 --- a/addons/base_iban/i18n/pl_PL.po +++ b/addons/base_iban/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 82dde57ce83..ca8ecce374f 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pt_PT.po b/addons/base_iban/i18n/pt_PT.po index c5fd2c9eefe..f403fd54df3 100644 --- a/addons/base_iban/i18n/pt_PT.po +++ b/addons/base_iban/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ro_RO.po b/addons/base_iban/i18n/ro_RO.po index d197cede589..a00c3d56a06 100644 --- a/addons/base_iban/i18n/ro_RO.po +++ b/addons/base_iban/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ru_RU.po b/addons/base_iban/i18n/ru_RU.po index e793ae27f58..a3e139afd45 100644 --- a/addons/base_iban/i18n/ru_RU.po +++ b/addons/base_iban/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sl_SL.po b/addons/base_iban/i18n/sl_SL.po index df0a668f912..4aab5973f45 100644 --- a/addons/base_iban/i18n/sl_SL.po +++ b/addons/base_iban/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sv_SE.po b/addons/base_iban/i18n/sv_SE.po index ccdef89e37b..b414545fac5 100644 --- a/addons/base_iban/i18n/sv_SE.po +++ b/addons/base_iban/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sv_SV.po b/addons/base_iban/i18n/sv_SV.po index fcf4698e964..5d4c7ccbc91 100644 --- a/addons/base_iban/i18n/sv_SV.po +++ b/addons/base_iban/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/tr_TR.po b/addons/base_iban/i18n/tr_TR.po index 1c639256b26..cc89227ef59 100644 --- a/addons/base_iban/i18n/tr_TR.po +++ b/addons/base_iban/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/uk_UK.po b/addons/base_iban/i18n/uk_UK.po index 4040f442b66..9429fa05f60 100644 --- a/addons/base_iban/i18n/uk_UK.po +++ b/addons/base_iban/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index e261b951e03..7cc0d593749 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 77bc5e14b96..8312168ff61 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ar_AR.po b/addons/base_module_merge/i18n/ar_AR.po index 1b9e85ef13f..a05995aa9e4 100644 --- a/addons/base_module_merge/i18n/ar_AR.po +++ b/addons/base_module_merge/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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 571d0f21f46..a9fcb723c77 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/bg_BG.po b/addons/base_module_merge/i18n/bg_BG.po index 7d30268c402..63693fcccbf 100644 --- a/addons/base_module_merge/i18n/bg_BG.po +++ b/addons/base_module_merge/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/bs_BS.po b/addons/base_module_merge/i18n/bs_BS.po index 3b39ab3d230..66581d40153 100644 --- a/addons/base_module_merge/i18n/bs_BS.po +++ b/addons/base_module_merge/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ca_ES.po b/addons/base_module_merge/i18n/ca_ES.po index fc1f817e18c..9bec931c390 100644 --- a/addons/base_module_merge/i18n/ca_ES.po +++ b/addons/base_module_merge/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/cs_CS.po b/addons/base_module_merge/i18n/cs_CS.po index 3bc40ec2cbd..944f880b7b4 100644 --- a/addons/base_module_merge/i18n/cs_CS.po +++ b/addons/base_module_merge/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/cs_CZ.po b/addons/base_module_merge/i18n/cs_CZ.po index 26825f9608c..e099f4ab8fd 100644 --- a/addons/base_module_merge/i18n/cs_CZ.po +++ b/addons/base_module_merge/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/de_DE.po b/addons/base_module_merge/i18n/de_DE.po index 38f638b9357..88935baf1d9 100644 --- a/addons/base_module_merge/i18n/de_DE.po +++ b/addons/base_module_merge/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/es_AR.po b/addons/base_module_merge/i18n/es_AR.po index 2d1c0d95b9a..668270ad074 100644 --- a/addons/base_module_merge/i18n/es_AR.po +++ b/addons/base_module_merge/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/es_ES.po b/addons/base_module_merge/i18n/es_ES.po index 9bd23d5685b..1458f5c4988 100644 --- a/addons/base_module_merge/i18n/es_ES.po +++ b/addons/base_module_merge/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/et_EE.po b/addons/base_module_merge/i18n/et_EE.po index 3ed6a97a9e1..1d75b3e44f2 100644 --- a/addons/base_module_merge/i18n/et_EE.po +++ b/addons/base_module_merge/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Moodulite liitmine" #. module: base_module_merge #: wizard_field:base_module_merge.module_merge,info,author:0 msgid "Author" -msgstr "" +msgstr "Autor" #. module: base_module_merge #: wizard_field:base_module_merge.module_merge,info,directory_name:0 @@ -96,7 +96,7 @@ msgstr "Mooduli .zip fail" #. module: base_module_merge #: model:ir.module.module,shortdesc:base_module_merge.module_meta_information msgid "Module Merger" -msgstr "" +msgstr "Moodulite liitja" #. module: base_module_merge #: wizard_view:base_module_merge.module_merge,save:0 diff --git a/addons/base_module_merge/i18n/fr_FR.po b/addons/base_module_merge/i18n/fr_FR.po index 3f2382fb3b1..f58af236447 100644 --- a/addons/base_module_merge/i18n/fr_FR.po +++ b/addons/base_module_merge/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/hr_HR.po b/addons/base_module_merge/i18n/hr_HR.po index 89a2b31ca60..b641d6aaeb2 100644 --- a/addons/base_module_merge/i18n/hr_HR.po +++ b/addons/base_module_merge/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/hu_HU.po b/addons/base_module_merge/i18n/hu_HU.po index 50b4dbc0b6e..61725d63724 100644 --- a/addons/base_module_merge/i18n/hu_HU.po +++ b/addons/base_module_merge/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/it_IT.po b/addons/base_module_merge/i18n/it_IT.po index 7bd2c6514c9..62220526c19 100644 --- a/addons/base_module_merge/i18n/it_IT.po +++ b/addons/base_module_merge/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/lt_LT.po b/addons/base_module_merge/i18n/lt_LT.po index 59f4d895a62..200a3278570 100644 --- a/addons/base_module_merge/i18n/lt_LT.po +++ b/addons/base_module_merge/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/nl_BE.po b/addons/base_module_merge/i18n/nl_BE.po index 1062f17c22b..26f31783ff5 100644 --- a/addons/base_module_merge/i18n/nl_BE.po +++ b/addons/base_module_merge/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/nl_NL.po b/addons/base_module_merge/i18n/nl_NL.po index 8a30babcb9a..4885be1077a 100644 --- a/addons/base_module_merge/i18n/nl_NL.po +++ b/addons/base_module_merge/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pl_PL.po b/addons/base_module_merge/i18n/pl_PL.po index 69757239c17..0a6cc9c2a60 100644 --- a/addons/base_module_merge/i18n/pl_PL.po +++ b/addons/base_module_merge/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pt_BR.po b/addons/base_module_merge/i18n/pt_BR.po index de144e9b02f..29fbf92c071 100644 --- a/addons/base_module_merge/i18n/pt_BR.po +++ b/addons/base_module_merge/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pt_PT.po b/addons/base_module_merge/i18n/pt_PT.po index a6080f12e0e..04da03af7ec 100644 --- a/addons/base_module_merge/i18n/pt_PT.po +++ b/addons/base_module_merge/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ro_RO.po b/addons/base_module_merge/i18n/ro_RO.po index baa6fbca0df..18490a1e636 100644 --- a/addons/base_module_merge/i18n/ro_RO.po +++ b/addons/base_module_merge/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ru_RU.po b/addons/base_module_merge/i18n/ru_RU.po index 4b8f0cbfb9e..5e979472f1d 100644 --- a/addons/base_module_merge/i18n/ru_RU.po +++ b/addons/base_module_merge/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sl_SL.po b/addons/base_module_merge/i18n/sl_SL.po index e09cbf5b14f..644938e2808 100644 --- a/addons/base_module_merge/i18n/sl_SL.po +++ b/addons/base_module_merge/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sv_SE.po b/addons/base_module_merge/i18n/sv_SE.po index 696e4a4d777..5f22f7689f8 100644 --- a/addons/base_module_merge/i18n/sv_SE.po +++ b/addons/base_module_merge/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sv_SV.po b/addons/base_module_merge/i18n/sv_SV.po index 4227dd8b341..d61886f521b 100644 --- a/addons/base_module_merge/i18n/sv_SV.po +++ b/addons/base_module_merge/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/tr_TR.po b/addons/base_module_merge/i18n/tr_TR.po index b3d732f29b2..7bde62419f4 100644 --- a/addons/base_module_merge/i18n/tr_TR.po +++ b/addons/base_module_merge/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/uk_UK.po b/addons/base_module_merge/i18n/uk_UK.po index 697f1320385..f3f04a4a150 100644 --- a/addons/base_module_merge/i18n/uk_UK.po +++ b/addons/base_module_merge/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/zh_CN.po b/addons/base_module_merge/i18n/zh_CN.po index e8fffa0fa42..47e0fd866c4 100644 --- a/addons/base_module_merge/i18n/zh_CN.po +++ b/addons/base_module_merge/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/zh_TW.po b/addons/base_module_merge/i18n/zh_TW.po index d351b4501f6..1a47944aed7 100644 --- a/addons/base_module_merge/i18n/zh_TW.po +++ b/addons/base_module_merge/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ar_AR.po b/addons/base_module_publish/i18n/ar_AR.po index 1dcea0b7b36..d35d5d72832 100644 --- a/addons/base_module_publish/i18n/ar_AR.po +++ b/addons/base_module_publish/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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 7487cca4c14..55442d15ff2 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/bg_BG.po b/addons/base_module_publish/i18n/bg_BG.po index 08ef2fb1ad7..73cb1eb057c 100644 --- a/addons/base_module_publish/i18n/bg_BG.po +++ b/addons/base_module_publish/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/bs_BS.po b/addons/base_module_publish/i18n/bs_BS.po index 1ef4c5518f7..7ab12535131 100644 --- a/addons/base_module_publish/i18n/bs_BS.po +++ b/addons/base_module_publish/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ca_ES.po b/addons/base_module_publish/i18n/ca_ES.po index c22b3392cbb..d3c89e8fcc4 100644 --- a/addons/base_module_publish/i18n/ca_ES.po +++ b/addons/base_module_publish/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/cs_CS.po b/addons/base_module_publish/i18n/cs_CS.po index 88668612b12..2cdfa9068ae 100644 --- a/addons/base_module_publish/i18n/cs_CS.po +++ b/addons/base_module_publish/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,7 @@ msgstr "Úvod" #. module: base_module_publish #: code:addons/base_module_publish/wizard/base_module_publish.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish_all.py:0 #: code:addons/base_module_publish/wizard/module_zip.py:0 #, python-format msgid "Error" @@ -190,6 +191,7 @@ msgstr "Heslo" #. module: base_module_publish #: code:addons/base_module_publish/wizard/base_module_publish.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish_all.py:0 #, python-format msgid "Login failed!" msgstr "" diff --git a/addons/base_module_publish/i18n/cs_CZ.po b/addons/base_module_publish/i18n/cs_CZ.po index 29059f83433..2af4f5c622e 100644 --- a/addons/base_module_publish/i18n/cs_CZ.po +++ b/addons/base_module_publish/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/de_DE.po b/addons/base_module_publish/i18n/de_DE.po index f02e3a91bfc..5ae974e0421 100644 --- a/addons/base_module_publish/i18n/de_DE.po +++ b/addons/base_module_publish/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/es_AR.po b/addons/base_module_publish/i18n/es_AR.po index 9456ef2dfae..86cb36941e3 100644 --- a/addons/base_module_publish/i18n/es_AR.po +++ b/addons/base_module_publish/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/es_ES.po b/addons/base_module_publish/i18n/es_ES.po index a82454e8c15..9f4172b9da4 100644 --- a/addons/base_module_publish/i18n/es_ES.po +++ b/addons/base_module_publish/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/et_EE.po b/addons/base_module_publish/i18n/et_EE.po index d2ad80aff72..2f3d91834d2 100644 --- a/addons/base_module_publish/i18n/et_EE.po +++ b/addons/base_module_publish/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "Ei saa eksportida moodulit, mis pole paigaldatud!" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish_all,publish,error:0 msgid "Modules in error" -msgstr "" +msgstr "Viga moodulites" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,docurl:0 diff --git a/addons/base_module_publish/i18n/fr_FR.po b/addons/base_module_publish/i18n/fr_FR.po index 8d5fe7203e3..7f6b5d45020 100644 --- a/addons/base_module_publish/i18n/fr_FR.po +++ b/addons/base_module_publish/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/hr_HR.po b/addons/base_module_publish/i18n/hr_HR.po index 4c54e752683..47917830e9b 100644 --- a/addons/base_module_publish/i18n/hr_HR.po +++ b/addons/base_module_publish/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/hu_HU.po b/addons/base_module_publish/i18n/hu_HU.po index eb8538ab130..96298a2828f 100644 --- a/addons/base_module_publish/i18n/hu_HU.po +++ b/addons/base_module_publish/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/it_IT.po b/addons/base_module_publish/i18n/it_IT.po index afe2da8e3f5..b74610e66ea 100644 --- a/addons/base_module_publish/i18n/it_IT.po +++ b/addons/base_module_publish/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/lt_LT.po b/addons/base_module_publish/i18n/lt_LT.po index 005a0e77b70..a2a2232a07c 100644 --- a/addons/base_module_publish/i18n/lt_LT.po +++ b/addons/base_module_publish/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/nl_BE.po b/addons/base_module_publish/i18n/nl_BE.po index 16045c5be0c..d1cbfd5abd4 100644 --- a/addons/base_module_publish/i18n/nl_BE.po +++ b/addons/base_module_publish/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/nl_NL.po b/addons/base_module_publish/i18n/nl_NL.po index 41ec7a6afe5..148dd28b4c8 100644 --- a/addons/base_module_publish/i18n/nl_NL.po +++ b/addons/base_module_publish/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pl_PL.po b/addons/base_module_publish/i18n/pl_PL.po index 6762e0865f5..01fc8c3c794 100644 --- a/addons/base_module_publish/i18n/pl_PL.po +++ b/addons/base_module_publish/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pt_BR.po b/addons/base_module_publish/i18n/pt_BR.po index fbf2b8dad6c..61978250e63 100644 --- a/addons/base_module_publish/i18n/pt_BR.po +++ b/addons/base_module_publish/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pt_PT.po b/addons/base_module_publish/i18n/pt_PT.po index cc4d9644783..255f2f50d47 100644 --- a/addons/base_module_publish/i18n/pt_PT.po +++ b/addons/base_module_publish/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ro_RO.po b/addons/base_module_publish/i18n/ro_RO.po index 327b9562dd6..5d5b742c875 100644 --- a/addons/base_module_publish/i18n/ro_RO.po +++ b/addons/base_module_publish/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ru_RU.po b/addons/base_module_publish/i18n/ru_RU.po index 45174e0d6da..6498912cad0 100644 --- a/addons/base_module_publish/i18n/ru_RU.po +++ b/addons/base_module_publish/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sl_SL.po b/addons/base_module_publish/i18n/sl_SL.po index bb05a779e10..07856e00fe0 100644 --- a/addons/base_module_publish/i18n/sl_SL.po +++ b/addons/base_module_publish/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sv_SE.po b/addons/base_module_publish/i18n/sv_SE.po index c387a5ddb92..31a93216a4c 100644 --- a/addons/base_module_publish/i18n/sv_SE.po +++ b/addons/base_module_publish/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sv_SV.po b/addons/base_module_publish/i18n/sv_SV.po index 22df01effb2..996e4ac3605 100644 --- a/addons/base_module_publish/i18n/sv_SV.po +++ b/addons/base_module_publish/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,7 @@ msgstr "" #. module: base_module_publish #: code:addons/base_module_publish/wizard/base_module_publish.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish_all.py:0 #: code:addons/base_module_publish/wizard/module_zip.py:0 #, python-format msgid "Error" @@ -190,6 +191,7 @@ msgstr "" #. module: base_module_publish #: code:addons/base_module_publish/wizard/base_module_publish.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish_all.py:0 #, python-format msgid "Login failed!" msgstr "" diff --git a/addons/base_module_publish/i18n/tr_TR.po b/addons/base_module_publish/i18n/tr_TR.po index 1de2b5449e0..6c831824d06 100644 --- a/addons/base_module_publish/i18n/tr_TR.po +++ b/addons/base_module_publish/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/uk_UK.po b/addons/base_module_publish/i18n/uk_UK.po index 2f396f50bb6..8c48d183234 100644 --- a/addons/base_module_publish/i18n/uk_UK.po +++ b/addons/base_module_publish/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/zh_CN.po b/addons/base_module_publish/i18n/zh_CN.po index c5a4cdc6bd1..35c4a3ba0c5 100644 --- a/addons/base_module_publish/i18n/zh_CN.po +++ b/addons/base_module_publish/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/zh_TW.po b/addons/base_module_publish/i18n/zh_TW.po index 8704f8f9e62..5fd150d0a7f 100644 --- a/addons/base_module_publish/i18n/zh_TW.po +++ b/addons/base_module_publish/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ar_AR.po b/addons/base_module_record/i18n/ar_AR.po index 0b4a6c444e0..42664436c4f 100644 --- a/addons/base_module_record/i18n/ar_AR.po +++ b/addons/base_module_record/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot index 1a17d5618ee..0fc5f27d4d5 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/bg_BG.po b/addons/base_module_record/i18n/bg_BG.po index 4dc5f55ae24..064407a2c03 100644 --- a/addons/base_module_record/i18n/bg_BG.po +++ b/addons/base_module_record/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/bs_BS.po b/addons/base_module_record/i18n/bs_BS.po index 6903a3a4096..df844c512f7 100644 --- a/addons/base_module_record/i18n/bs_BS.po +++ b/addons/base_module_record/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ca_ES.po b/addons/base_module_record/i18n/ca_ES.po index e8eb63b42aa..3975c96863e 100644 --- a/addons/base_module_record/i18n/ca_ES.po +++ b/addons/base_module_record/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/cs_CS.po b/addons/base_module_record/i18n/cs_CS.po index a55c2f8e9a4..0eaac1d639c 100644 --- a/addons/base_module_record/i18n/cs_CS.po +++ b/addons/base_module_record/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/cs_CZ.po b/addons/base_module_record/i18n/cs_CZ.po index e73d678ddbc..8ef86970c7d 100644 --- a/addons/base_module_record/i18n/cs_CZ.po +++ b/addons/base_module_record/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/de_DE.po b/addons/base_module_record/i18n/de_DE.po index 8dfdbb6b4ab..0311afa1f21 100644 --- a/addons/base_module_record/i18n/de_DE.po +++ b/addons/base_module_record/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/es_AR.po b/addons/base_module_record/i18n/es_AR.po index 889adf99c4d..41847c8aaeb 100644 --- a/addons/base_module_record/i18n/es_AR.po +++ b/addons/base_module_record/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/es_ES.po b/addons/base_module_record/i18n/es_ES.po index 05bd01b0ee5..5ecd4e14b48 100644 --- a/addons/base_module_record/i18n/es_ES.po +++ b/addons/base_module_record/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/et_EE.po b/addons/base_module_record/i18n/et_EE.po index e129e8fe1b8..9b7901820af 100644 --- a/addons/base_module_record/i18n/et_EE.po +++ b/addons/base_module_record/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/fr_FR.po b/addons/base_module_record/i18n/fr_FR.po index a4faf61af24..b416009d62c 100644 --- a/addons/base_module_record/i18n/fr_FR.po +++ b/addons/base_module_record/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/hr_HR.po b/addons/base_module_record/i18n/hr_HR.po index 5e7f0eda5bb..63d28803052 100644 --- a/addons/base_module_record/i18n/hr_HR.po +++ b/addons/base_module_record/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/hu_HU.po b/addons/base_module_record/i18n/hu_HU.po index 19ac3f26354..8ebb33fb5e3 100644 --- a/addons/base_module_record/i18n/hu_HU.po +++ b/addons/base_module_record/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/it_IT.po b/addons/base_module_record/i18n/it_IT.po index af4bb49f111..aeaa0a565e1 100644 --- a/addons/base_module_record/i18n/it_IT.po +++ b/addons/base_module_record/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/lt_LT.po b/addons/base_module_record/i18n/lt_LT.po index 599bfacb09f..c66a0426a01 100644 --- a/addons/base_module_record/i18n/lt_LT.po +++ b/addons/base_module_record/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/nl_BE.po b/addons/base_module_record/i18n/nl_BE.po index 4cea57d8c27..da524150632 100644 --- a/addons/base_module_record/i18n/nl_BE.po +++ b/addons/base_module_record/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/nl_NL.po b/addons/base_module_record/i18n/nl_NL.po index 7fc0a86d566..d4532f35c8d 100644 --- a/addons/base_module_record/i18n/nl_NL.po +++ b/addons/base_module_record/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pl_PL.po b/addons/base_module_record/i18n/pl_PL.po index 482978cf6e9..e070f2835ef 100644 --- a/addons/base_module_record/i18n/pl_PL.po +++ b/addons/base_module_record/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pt_BR.po b/addons/base_module_record/i18n/pt_BR.po index 4c510c0ff60..32c5904b19c 100644 --- a/addons/base_module_record/i18n/pt_BR.po +++ b/addons/base_module_record/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pt_PT.po b/addons/base_module_record/i18n/pt_PT.po index f47eaa93d61..b1ffd449025 100644 --- a/addons/base_module_record/i18n/pt_PT.po +++ b/addons/base_module_record/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ro_RO.po b/addons/base_module_record/i18n/ro_RO.po index a86dc8e5541..f2bea99bfd4 100644 --- a/addons/base_module_record/i18n/ro_RO.po +++ b/addons/base_module_record/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ru_RU.po b/addons/base_module_record/i18n/ru_RU.po index 2dad1b95bd4..e533a5b1c43 100644 --- a/addons/base_module_record/i18n/ru_RU.po +++ b/addons/base_module_record/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sl_SL.po b/addons/base_module_record/i18n/sl_SL.po index 743a7c413ca..dc8f5208072 100644 --- a/addons/base_module_record/i18n/sl_SL.po +++ b/addons/base_module_record/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sv_SE.po b/addons/base_module_record/i18n/sv_SE.po index e68bd32ee05..2f9d2e083c5 100644 --- a/addons/base_module_record/i18n/sv_SE.po +++ b/addons/base_module_record/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sv_SV.po b/addons/base_module_record/i18n/sv_SV.po index 8c5f7d9e6c6..90880ad09bc 100644 --- a/addons/base_module_record/i18n/sv_SV.po +++ b/addons/base_module_record/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/tr_TR.po b/addons/base_module_record/i18n/tr_TR.po index fbbd716bfd8..01d8d782fa0 100644 --- a/addons/base_module_record/i18n/tr_TR.po +++ b/addons/base_module_record/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/uk_UK.po b/addons/base_module_record/i18n/uk_UK.po index ca3a560619e..63d600df555 100644 --- a/addons/base_module_record/i18n/uk_UK.po +++ b/addons/base_module_record/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/zh_CN.po b/addons/base_module_record/i18n/zh_CN.po index 5fecc6ef9dc..0024aaa2fa8 100644 --- a/addons/base_module_record/i18n/zh_CN.po +++ b/addons/base_module_record/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/zh_TW.po b/addons/base_module_record/i18n/zh_TW.po index 45cdd919455..0f11260cac0 100644 --- a/addons/base_module_record/i18n/zh_TW.po +++ b/addons/base_module_record/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/ar_AR.po b/addons/base_report_creator/i18n/ar_AR.po index 70f7864a26f..2b7f395ee5a 100644 --- a/addons/base_report_creator/i18n/ar_AR.po +++ b/addons/base_report_creator/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/base_report_creator.pot b/addons/base_report_creator/i18n/base_report_creator.pot index 91645c1ac2b..068ed201318 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/bg_BG.po b/addons/base_report_creator/i18n/bg_BG.po index 0e5f32e59c8..bf458beec5d 100644 --- a/addons/base_report_creator/i18n/bg_BG.po +++ b/addons/base_report_creator/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/bs_BS.po b/addons/base_report_creator/i18n/bs_BS.po index 4f3e04ed088..808ebb8d81f 100644 --- a/addons/base_report_creator/i18n/bs_BS.po +++ b/addons/base_report_creator/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/ca_ES.po b/addons/base_report_creator/i18n/ca_ES.po index e4f058c5849..1343f62c9a5 100644 --- a/addons/base_report_creator/i18n/ca_ES.po +++ b/addons/base_report_creator/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/cs_CS.po b/addons/base_report_creator/i18n/cs_CS.po index 34916a06c87..a959eba7f30 100644 --- a/addons/base_report_creator/i18n/cs_CS.po +++ b/addons/base_report_creator/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,14 +16,9 @@ msgstr "" "Plural-Forms: \n" #. module: base_report_creator -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action_config -msgid "Custom Reports" -msgstr "" - -#. module: base_report_creator -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" msgstr "" #. module: base_report_creator @@ -32,8 +27,8 @@ msgid "Graph Type" msgstr "" #. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Menu Information" +#: view:base_report_creator.report:0 +msgid "Used View" msgstr "" #. module: base_report_creator @@ -41,19 +36,100 @@ msgstr "" msgid "Filter Values" msgstr "" +#. module: base_report_creator +#: field:base_report_creator.report.fields,graph_mode:0 +msgid "Graph Mode" +msgstr "" + +#. module: base_report_creator +#: code:addons/base_report_creator/base_report_creator.py:0 +#, python-format +msgid "These is/are model(s) (%s) in selection which is/are not related to any other model" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Graph View" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.filter,expression:0 +msgid "Value" +msgstr "" + +#. module: base_report_creator +#: model:ir.actions.wizard,name:base_report_creator.wizard_set_filter_fields +msgid "Set Filter Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Ending Date" +msgstr "" + +#. module: base_report_creator +#: model:ir.model,name:base_report_creator.model_base_report_creator_report_filter +msgid "Report Filters" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,sql_query:0 +msgid "SQL Query" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: wizard_button:base_report_creator.report.menu.create,init,create_menu:0 +msgid "Create Menu" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Minimum" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,operator:0 +msgid "Operator" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.filter,condition:0 +#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 +msgid "OR" +msgstr "" + +#. module: base_report_creator +#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action +#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action_config +msgid "Custom Reports" +msgstr "" + +#. module: base_report_creator +#: code:addons/base_report_creator/base_report_creator.py:0 +#, python-format +msgid "No Related Models!!" +msgstr "" + +#. module: base_report_creator +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: base_report_creator +#: wizard_view:base_report_creator.report.menu.create,init:0 +msgid "Menu Information" +msgstr "" + #. module: base_report_creator #: selection:base_report_creator.report.fields,group_method:0 msgid "Sum" msgstr "" #. module: base_report_creator -#: field:base_report_creator.report,view_type1:0 -msgid "First View" -msgstr "" - -#. module: base_report_creator -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:base_report_creator.report,model_ids:0 +msgid "Reported Objects" msgstr "" #. module: base_report_creator @@ -62,18 +138,8 @@ msgid "Field List" msgstr "" #. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,field_id:0 -msgid "Field Name" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Delay" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,field_id:0 -msgid "Field" +#: field:base_report_creator.report,type:0 +msgid "Report Type" msgstr "" #. module: base_report_creator @@ -86,6 +152,112 @@ msgstr "" msgid "Valid" msgstr "" +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Add filter" +msgstr "" + +#. module: base_report_creator +#: model:ir.actions.wizard,name:base_report_creator.wizard_menu_create +msgid "Create Menu for Report" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type3:0 +#: selection:base_report_creator.report.fields,calendar_mode:0 +#: selection:base_report_creator.report.fields,graph_mode:0 +msgid "/" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,report_id:0 +#: field:base_report_creator.report.filter,report_id:0 +#: model:ir.model,name:base_report_creator.model_base_report_creator_report +msgid "Report" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Starting Date" +msgstr "" + +#. module: base_report_creator +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Tree" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,group_ids:0 +msgid "Authorized Groups" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_graph_orientation:0 +msgid "Graph Orientation" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Authorized Groups (empty for all)" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Security" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report.menu.create,init,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.filter,condition:0 +#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 +msgid "AND" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,calendar_mode:0 +msgid "Calendar Mode" +msgstr "" + +#. module: base_report_creator +#: model:ir.model,name:base_report_creator.model_base_report_creator_report_fields +msgid "Display Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,graph_mode:0 +msgid "Y Axis" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Calendar" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Graph" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,field_id:0 +msgid "Field Name" +msgstr "" + #. module: base_report_creator #: selection:base_report_creator.report,state:0 msgid "Draft" @@ -97,43 +269,8 @@ msgid "Set Filter Values" msgstr "" #. module: base_report_creator -#: wizard_field:base_report_creator.report.menu.create,init,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Used View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Security" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,operator:0 -msgid "Operator" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,model_ids:0 -msgid "Reported Objects" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Starting Date" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Add filter" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_menu_create -msgid "Create Menu for Report" +#: field:base_report_creator.report,state:0 +msgid "Status" msgstr "" #. module: base_report_creator @@ -151,52 +288,11 @@ msgstr "" msgid "General Configuration" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report.fields,report_id:0 -#: field:base_report_creator.report.filter,report_id:0 -#: model:ir.model,name:base_report_creator.model_base_report_creator_report -msgid "Report" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type3:0 -#: selection:base_report_creator.report.fields,calendar_mode:0 -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "/" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type3:0 -msgid "Third View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "Y Axis" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Minimum" -msgstr "" - #. module: base_report_creator #: wizard_view:base_report_creator.report_filter.fields,init:0 msgid "Select Field to filter" msgstr "" -#. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Graph" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report,active:0 msgid "Active" @@ -223,21 +319,6 @@ msgstr "" msgid "Count" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report,state:0 -msgid "Status" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Filters on Fields" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,name:0 -msgid "Report Name" -msgstr "" - #. module: base_report_creator #: selection:base_report_creator.report.fields,graph_mode:0 msgid "X Axis" @@ -248,91 +329,11 @@ msgstr "" msgid "Parent Menu" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report,type:0 -msgid "Report Type" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Average" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,group_ids:0 -msgid "Authorized Groups" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Graph View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Reports" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Maximum" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_set_filter_fields -msgid "Set Filter Fields" -msgstr "" - #. module: base_report_creator #: wizard_button:base_report_creator.report_filter.fields,set_value_select_field,set_value:0 msgid "Confirm Filter" msgstr "" -#. module: base_report_creator -#: wizard_button:base_report_creator.report_filter.fields,init,set_value_select_field:0 -msgid "Continue" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,value:0 -msgid "Values" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.filter,expression:0 -msgid "Value" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_graph_orientation:0 -msgid "Graph Orientation" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Authorized Groups (empty for all)" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type2:0 -msgid "Second View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,graph_mode:0 -msgid "Graph Mode" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report.filter,name:0 msgid "Filter Name" @@ -343,93 +344,17 @@ msgstr "" msgid "Open Report" msgstr "" -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_filter -msgid "Report Filters" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "AND" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Ending Date" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Create Menu For This Report" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "View parameters" -msgstr "" - #. module: base_report_creator #: selection:base_report_creator.report.fields,group_method:0 msgid "Grouped" msgstr "" -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,sql_query:0 -msgid "SQL Query" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: wizard_button:base_report_creator.report.menu.create,init,create_menu:0 -msgid "Create Menu" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,field_ids:0 -msgid "Fields to Display" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,calendar_mode:0 -msgid "Calendar Mode" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "OR" -msgstr "" - #. module: base_report_creator #: view:base_report_creator.report:0 #: model:ir.module.module,shortdesc:base_report_creator.module_meta_information msgid "Report Creator" msgstr "" -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_fields -msgid "Display Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Uniq Colors" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,filter_ids:0 -msgid "Filters" -msgstr "" - #. module: base_report_creator #: wizard_button:base_report_creator.report.menu.create,init,end:0 #: wizard_button:base_report_creator.report_filter.fields,init,end:0 @@ -438,10 +363,38 @@ msgid "Cancel" msgstr "" #. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Calendar" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type1:0 +msgid "First View" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Delay" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,field_id:0 +msgid "Field" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Filters on Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_graph_type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type3:0 +msgid "Third View" msgstr "" #. module: base_report_creator @@ -455,15 +408,85 @@ msgid "This modules allows you to create any statistic\n" "" msgstr "" +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Uniq Colors" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,name:0 +msgid "Report Name" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Average" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Reports" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Maximum" +msgstr "" + +#. module: base_report_creator +#: wizard_button:base_report_creator.report_filter.fields,init,set_value_select_field:0 +msgid "Continue" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,value:0 +msgid "Values" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_graph_type:0 +msgid "Bar Chart" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type2:0 +msgid "Second View" +msgstr "" + +#. module: base_report_creator +#: wizard_view:base_report_creator.report.menu.create,init:0 +msgid "Create Menu For This Report" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "View parameters" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,sequence:0 +msgid "Sequence" +msgstr "" + #. module: base_report_creator #: wizard_field:base_report_creator.report_filter.fields,init,field_id:0 msgid "Filter Field" msgstr "" #. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Tree" +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,field_ids:0 +msgid "Fields to Display" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,filter_ids:0 +msgid "Filters" msgstr "" diff --git a/addons/base_report_creator/i18n/cs_CZ.po b/addons/base_report_creator/i18n/cs_CZ.po index 829dede03e9..5dc5b529675 100644 --- a/addons/base_report_creator/i18n/cs_CZ.po +++ b/addons/base_report_creator/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/de_DE.po b/addons/base_report_creator/i18n/de_DE.po index d381128c4c6..aff6712fb3c 100644 --- a/addons/base_report_creator/i18n/de_DE.po +++ b/addons/base_report_creator/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/es_AR.po b/addons/base_report_creator/i18n/es_AR.po index 0746ef46079..938d606070e 100644 --- a/addons/base_report_creator/i18n/es_AR.po +++ b/addons/base_report_creator/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/es_ES.po b/addons/base_report_creator/i18n/es_ES.po index 3266ec89c93..daa18b9c304 100644 --- a/addons/base_report_creator/i18n/es_ES.po +++ b/addons/base_report_creator/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/et_EE.po b/addons/base_report_creator/i18n/et_EE.po index 6bc059cedc8..2d492eb2881 100644 --- a/addons/base_report_creator/i18n/et_EE.po +++ b/addons/base_report_creator/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" @@ -39,7 +45,7 @@ msgstr "Graafiku laad" #: code:addons/base_report_creator/base_report_creator.py:0 #, python-format msgid "These is/are model(s) (%s) in selection which is/are not related to any other model" -msgstr "" +msgstr "See/need on mudel(id) (%s) valikus, mis ei ole seotud ühegi teise mudeliga" #. module: base_report_creator #: view:base_report_creator.report:0 @@ -104,12 +110,12 @@ msgstr "Kohandatud aruanded" #: code:addons/base_report_creator/base_report_creator.py:0 #, python-format msgid "No Related Models!!" -msgstr "" +msgstr "Puuduvad seotud mudelid!" #. module: base_report_creator #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: base_report_creator #: wizard_view:base_report_creator.report.menu.create,init:0 @@ -400,7 +406,12 @@ msgid "This modules allows you to create any statistic\n" "After installing the module, it adds a menu to define custom report in\n" "the \"Dashboard\" menu.\n" "" -msgstr "" +msgstr "See moodul võimaldab sul luua mistahes statistilist\n" +"aruannet mitmel objektil. See on SQL päringu ehitaja ja sirvija.\n" +"\n" +"Pärast mooduli paigaldamist luuakse menüü, et määrata kohandatud\n" +"aruanne \"Töölauad\" menüüs.\n" +"" #. module: base_report_creator #: selection:base_report_creator.report.fields,calendar_mode:0 diff --git a/addons/base_report_creator/i18n/fr_FR.po b/addons/base_report_creator/i18n/fr_FR.po index 12aff671106..bcc95ff64c5 100644 --- a/addons/base_report_creator/i18n/fr_FR.po +++ b/addons/base_report_creator/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/hr_HR.po b/addons/base_report_creator/i18n/hr_HR.po index fa71c86b2b5..a3b8351daa4 100644 --- a/addons/base_report_creator/i18n/hr_HR.po +++ b/addons/base_report_creator/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/hu_HU.po b/addons/base_report_creator/i18n/hu_HU.po index ed33d9f90f1..a486d98117c 100644 --- a/addons/base_report_creator/i18n/hu_HU.po +++ b/addons/base_report_creator/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/it_IT.po b/addons/base_report_creator/i18n/it_IT.po index 4d71c5b6d10..b176ed8b5a4 100644 --- a/addons/base_report_creator/i18n/it_IT.po +++ b/addons/base_report_creator/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/lt_LT.po b/addons/base_report_creator/i18n/lt_LT.po index ded7081cdc0..354d4a0adb4 100644 --- a/addons/base_report_creator/i18n/lt_LT.po +++ b/addons/base_report_creator/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/nl_BE.po b/addons/base_report_creator/i18n/nl_BE.po index b3a5b25f943..7dc843c7b00 100644 --- a/addons/base_report_creator/i18n/nl_BE.po +++ b/addons/base_report_creator/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/nl_NL.po b/addons/base_report_creator/i18n/nl_NL.po index 1898dc7e41d..28da7837752 100644 --- a/addons/base_report_creator/i18n/nl_NL.po +++ b/addons/base_report_creator/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/pl_PL.po b/addons/base_report_creator/i18n/pl_PL.po index 5ffa063cafa..74badfb1e4b 100644 --- a/addons/base_report_creator/i18n/pl_PL.po +++ b/addons/base_report_creator/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/pt_BR.po b/addons/base_report_creator/i18n/pt_BR.po index c6d24392b57..f6ea92d9bdd 100644 --- a/addons/base_report_creator/i18n/pt_BR.po +++ b/addons/base_report_creator/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/pt_PT.po b/addons/base_report_creator/i18n/pt_PT.po index 88bfc96ea5d..15c1add0f85 100644 --- a/addons/base_report_creator/i18n/pt_PT.po +++ b/addons/base_report_creator/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/ro_RO.po b/addons/base_report_creator/i18n/ro_RO.po index f62d4ae104d..0d33292d09e 100644 --- a/addons/base_report_creator/i18n/ro_RO.po +++ b/addons/base_report_creator/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/ru_RU.po b/addons/base_report_creator/i18n/ru_RU.po index e339614dc0e..99628ea4ad6 100644 --- a/addons/base_report_creator/i18n/ru_RU.po +++ b/addons/base_report_creator/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/sl_SL.po b/addons/base_report_creator/i18n/sl_SL.po index c7cc81270c7..bee823119c4 100644 --- a/addons/base_report_creator/i18n/sl_SL.po +++ b/addons/base_report_creator/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/sv_SE.po b/addons/base_report_creator/i18n/sv_SE.po index df03cf6a422..52548ccafa6 100644 --- a/addons/base_report_creator/i18n/sv_SE.po +++ b/addons/base_report_creator/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/sv_SV.po b/addons/base_report_creator/i18n/sv_SV.po index 11ebffb8b7f..378fa47629b 100644 --- a/addons/base_report_creator/i18n/sv_SV.po +++ b/addons/base_report_creator/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,24 +16,19 @@ msgstr "" "Plural-Forms: \n" #. module: base_report_creator -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action_config -msgid "Custom Reports" +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" msgstr "" -#. module: base_report_creator -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" msgstr "" #. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Menu Information" +#: view:base_report_creator.report:0 +msgid "Used View" msgstr "" #. module: base_report_creator @@ -41,19 +36,100 @@ msgstr "" msgid "Filter Values" msgstr "" +#. module: base_report_creator +#: field:base_report_creator.report.fields,graph_mode:0 +msgid "Graph Mode" +msgstr "" + +#. module: base_report_creator +#: code:addons/base_report_creator/base_report_creator.py:0 +#, python-format +msgid "These is/are model(s) (%s) in selection which is/are not related to any other model" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Graph View" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.filter,expression:0 +msgid "Value" +msgstr "" + +#. module: base_report_creator +#: model:ir.actions.wizard,name:base_report_creator.wizard_set_filter_fields +msgid "Set Filter Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Ending Date" +msgstr "" + +#. module: base_report_creator +#: model:ir.model,name:base_report_creator.model_base_report_creator_report_filter +msgid "Report Filters" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,sql_query:0 +msgid "SQL Query" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: wizard_button:base_report_creator.report.menu.create,init,create_menu:0 +msgid "Create Menu" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Minimum" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,operator:0 +msgid "Operator" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.filter,condition:0 +#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 +msgid "OR" +msgstr "" + +#. module: base_report_creator +#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action +#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action_config +msgid "Custom Reports" +msgstr "" + +#. module: base_report_creator +#: code:addons/base_report_creator/base_report_creator.py:0 +#, python-format +msgid "No Related Models!!" +msgstr "" + +#. module: base_report_creator +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: base_report_creator +#: wizard_view:base_report_creator.report.menu.create,init:0 +msgid "Menu Information" +msgstr "" + #. module: base_report_creator #: selection:base_report_creator.report.fields,group_method:0 msgid "Sum" msgstr "" #. module: base_report_creator -#: field:base_report_creator.report,view_type1:0 -msgid "First View" -msgstr "" - -#. module: base_report_creator -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:base_report_creator.report,model_ids:0 +msgid "Reported Objects" msgstr "" #. module: base_report_creator @@ -62,18 +138,8 @@ msgid "Field List" msgstr "" #. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,field_id:0 -msgid "Field Name" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Delay" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,field_id:0 -msgid "Field" +#: field:base_report_creator.report,type:0 +msgid "Report Type" msgstr "" #. module: base_report_creator @@ -86,6 +152,112 @@ msgstr "" msgid "Valid" msgstr "" +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Add filter" +msgstr "" + +#. module: base_report_creator +#: model:ir.actions.wizard,name:base_report_creator.wizard_menu_create +msgid "Create Menu for Report" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type3:0 +#: selection:base_report_creator.report.fields,calendar_mode:0 +#: selection:base_report_creator.report.fields,graph_mode:0 +msgid "/" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,report_id:0 +#: field:base_report_creator.report.filter,report_id:0 +#: model:ir.model,name:base_report_creator.model_base_report_creator_report +msgid "Report" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Starting Date" +msgstr "" + +#. module: base_report_creator +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Tree" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,group_ids:0 +msgid "Authorized Groups" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_graph_orientation:0 +msgid "Graph Orientation" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Authorized Groups (empty for all)" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Security" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report.menu.create,init,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.filter,condition:0 +#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 +msgid "AND" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,calendar_mode:0 +msgid "Calendar Mode" +msgstr "" + +#. module: base_report_creator +#: model:ir.model,name:base_report_creator.model_base_report_creator_report_fields +msgid "Display Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,graph_mode:0 +msgid "Y Axis" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Calendar" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_type1:0 +#: selection:base_report_creator.report,view_type2:0 +#: selection:base_report_creator.report,view_type3:0 +msgid "Graph" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,field_id:0 +msgid "Field Name" +msgstr "" + #. module: base_report_creator #: selection:base_report_creator.report,state:0 msgid "Draft" @@ -97,43 +269,8 @@ msgid "Set Filter Values" msgstr "" #. module: base_report_creator -#: wizard_field:base_report_creator.report.menu.create,init,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Used View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Security" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,operator:0 -msgid "Operator" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,model_ids:0 -msgid "Reported Objects" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Starting Date" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Add filter" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_menu_create -msgid "Create Menu for Report" +#: field:base_report_creator.report,state:0 +msgid "Status" msgstr "" #. module: base_report_creator @@ -151,52 +288,11 @@ msgstr "" msgid "General Configuration" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report.fields,report_id:0 -#: field:base_report_creator.report.filter,report_id:0 -#: model:ir.model,name:base_report_creator.model_base_report_creator_report -msgid "Report" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type3:0 -#: selection:base_report_creator.report.fields,calendar_mode:0 -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "/" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type3:0 -msgid "Third View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "Y Axis" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Minimum" -msgstr "" - #. module: base_report_creator #: wizard_view:base_report_creator.report_filter.fields,init:0 msgid "Select Field to filter" msgstr "" -#. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Graph" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report,active:0 msgid "Active" @@ -223,21 +319,6 @@ msgstr "" msgid "Count" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report,state:0 -msgid "Status" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Filters on Fields" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,name:0 -msgid "Report Name" -msgstr "" - #. module: base_report_creator #: selection:base_report_creator.report.fields,graph_mode:0 msgid "X Axis" @@ -248,91 +329,11 @@ msgstr "" msgid "Parent Menu" msgstr "" -#. module: base_report_creator -#: field:base_report_creator.report,type:0 -msgid "Report Type" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Average" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,group_ids:0 -msgid "Authorized Groups" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Graph View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Reports" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Maximum" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_set_filter_fields -msgid "Set Filter Fields" -msgstr "" - #. module: base_report_creator #: wizard_button:base_report_creator.report_filter.fields,set_value_select_field,set_value:0 msgid "Confirm Filter" msgstr "" -#. module: base_report_creator -#: wizard_button:base_report_creator.report_filter.fields,init,set_value_select_field:0 -msgid "Continue" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,value:0 -msgid "Values" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.filter,expression:0 -msgid "Value" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_graph_orientation:0 -msgid "Graph Orientation" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Authorized Groups (empty for all)" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type2:0 -msgid "Second View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,graph_mode:0 -msgid "Graph Mode" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report.filter,name:0 msgid "Filter Name" @@ -343,93 +344,17 @@ msgstr "" msgid "Open Report" msgstr "" -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_filter -msgid "Report Filters" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "AND" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Ending Date" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Create Menu For This Report" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "View parameters" -msgstr "" - #. module: base_report_creator #: selection:base_report_creator.report.fields,group_method:0 msgid "Grouped" msgstr "" -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,sql_query:0 -msgid "SQL Query" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: wizard_button:base_report_creator.report.menu.create,init,create_menu:0 -msgid "Create Menu" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,field_ids:0 -msgid "Fields to Display" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,calendar_mode:0 -msgid "Calendar Mode" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "OR" -msgstr "" - #. module: base_report_creator #: view:base_report_creator.report:0 #: model:ir.module.module,shortdesc:base_report_creator.module_meta_information msgid "Report Creator" msgstr "" -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_fields -msgid "Display Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Uniq Colors" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,filter_ids:0 -msgid "Filters" -msgstr "" - #. module: base_report_creator #: wizard_button:base_report_creator.report.menu.create,init,end:0 #: wizard_button:base_report_creator.report_filter.fields,init,end:0 @@ -438,10 +363,38 @@ msgid "Cancel" msgstr "" #. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Calendar" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type1:0 +msgid "First View" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Delay" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,field_id:0 +msgid "Field" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Filters on Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_graph_type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type3:0 +msgid "Third View" msgstr "" #. module: base_report_creator @@ -455,15 +408,85 @@ msgid "This modules allows you to create any statistic\n" "" msgstr "" +#. module: base_report_creator +#: selection:base_report_creator.report.fields,calendar_mode:0 +msgid "Uniq Colors" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,name:0 +msgid "Report Name" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Fields" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Average" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Reports" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report.fields,group_method:0 +msgid "Maximum" +msgstr "" + +#. module: base_report_creator +#: wizard_button:base_report_creator.report_filter.fields,init,set_value_select_field:0 +msgid "Continue" +msgstr "" + +#. module: base_report_creator +#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,value:0 +msgid "Values" +msgstr "" + +#. module: base_report_creator +#: selection:base_report_creator.report,view_graph_type:0 +msgid "Bar Chart" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report,view_type2:0 +msgid "Second View" +msgstr "" + +#. module: base_report_creator +#: wizard_view:base_report_creator.report.menu.create,init:0 +msgid "Create Menu For This Report" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "View parameters" +msgstr "" + +#. module: base_report_creator +#: field:base_report_creator.report.fields,sequence:0 +msgid "Sequence" +msgstr "" + #. module: base_report_creator #: wizard_field:base_report_creator.report_filter.fields,init,field_id:0 msgid "Filter Field" msgstr "" #. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Tree" +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,field_ids:0 +msgid "Fields to Display" +msgstr "" + +#. module: base_report_creator +#: view:base_report_creator.report:0 +#: field:base_report_creator.report,filter_ids:0 +msgid "Filters" msgstr "" diff --git a/addons/base_report_creator/i18n/tr_TR.po b/addons/base_report_creator/i18n/tr_TR.po index 0ad0f8f8dda..2590f8288e0 100644 --- a/addons/base_report_creator/i18n/tr_TR.po +++ b/addons/base_report_creator/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/uk_UK.po b/addons/base_report_creator/i18n/uk_UK.po index 3be79edd362..c9c1bd3fce3 100644 --- a/addons/base_report_creator/i18n/uk_UK.po +++ b/addons/base_report_creator/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/zh_CN.po b/addons/base_report_creator/i18n/zh_CN.po index 65beb4ffbd1..9237c0ccc9e 100644 --- a/addons/base_report_creator/i18n/zh_CN.po +++ b/addons/base_report_creator/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_creator/i18n/zh_TW.po b/addons/base_report_creator/i18n/zh_TW.po index 04890dd7b9b..5fe4218d46b 100644 --- a/addons/base_report_creator/i18n/zh_TW.po +++ b/addons/base_report_creator/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_report_creator +#: help:base_report_creator.report.filter,expression:0 +msgid "Provide an expression for the field based on which you want to filter the records.\n" +" e.g. res_partner.id=3" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report,view_graph_type:0 msgid "Graph Type" diff --git a/addons/base_report_designer/i18n/ar_AR.po b/addons/base_report_designer/i18n/ar_AR.po index 46a7d3cfa74..12f03827e48 100644 --- a/addons/base_report_designer/i18n/ar_AR.po +++ b/addons/base_report_designer/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index 3f211f8390c..ecef779bb9d 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bg_BG.po b/addons/base_report_designer/i18n/bg_BG.po index 821c19c8270..4750983a0e8 100644 --- a/addons/base_report_designer/i18n/bg_BG.po +++ b/addons/base_report_designer/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bs_BS.po b/addons/base_report_designer/i18n/bs_BS.po index a2a7375d8bc..4636f94df9d 100644 --- a/addons/base_report_designer/i18n/bs_BS.po +++ b/addons/base_report_designer/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ca_ES.po b/addons/base_report_designer/i18n/ca_ES.po index 139d5f4daef..89d67324cb7 100644 --- a/addons/base_report_designer/i18n/ca_ES.po +++ b/addons/base_report_designer/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/cs_CS.po b/addons/base_report_designer/i18n/cs_CS.po index 4f0d08964ed..7b96b28e8de 100644 --- a/addons/base_report_designer/i18n/cs_CS.po +++ b/addons/base_report_designer/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/cs_CZ.po b/addons/base_report_designer/i18n/cs_CZ.po index 4bce6dc7101..1a6b2b323e2 100644 --- a/addons/base_report_designer/i18n/cs_CZ.po +++ b/addons/base_report_designer/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/de_DE.po b/addons/base_report_designer/i18n/de_DE.po index a9bf58cdbd7..93669499c3a 100644 --- a/addons/base_report_designer/i18n/de_DE.po +++ b/addons/base_report_designer/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index f6357ab4eb5..fe640f82603 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/es_ES.po b/addons/base_report_designer/i18n/es_ES.po index 41073185c15..57b248cac73 100644 --- a/addons/base_report_designer/i18n/es_ES.po +++ b/addons/base_report_designer/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/et_EE.po b/addons/base_report_designer/i18n/et_EE.po index 3e271e3f0ee..c01525f3243 100644 --- a/addons/base_report_designer/i18n/et_EE.po +++ b/addons/base_report_designer/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Su aruanne on muudetud." #. module: base_report_designer #: model:ir.module.module,shortdesc:base_report_designer.module_meta_information msgid "Report designer interface module" -msgstr "" +msgstr "Aruande disaniliidese moodul" #. module: base_report_designer #: wizard_field:base_report_designer.modify,get_form,report_id:0 diff --git a/addons/base_report_designer/i18n/fr_FR.po b/addons/base_report_designer/i18n/fr_FR.po index a28e09eb83b..bd983d616c7 100644 --- a/addons/base_report_designer/i18n/fr_FR.po +++ b/addons/base_report_designer/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/hr_HR.po b/addons/base_report_designer/i18n/hr_HR.po index 3b8a8a37782..2dde731e407 100644 --- a/addons/base_report_designer/i18n/hr_HR.po +++ b/addons/base_report_designer/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/hu_HU.po b/addons/base_report_designer/i18n/hu_HU.po index d5f48b8d9c2..380c97c04a2 100644 --- a/addons/base_report_designer/i18n/hu_HU.po +++ b/addons/base_report_designer/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/it_IT.po b/addons/base_report_designer/i18n/it_IT.po index fa026d07fb0..fa828da8dd1 100644 --- a/addons/base_report_designer/i18n/it_IT.po +++ b/addons/base_report_designer/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/lt_LT.po b/addons/base_report_designer/i18n/lt_LT.po index d93a27a8bf3..9ed1c0a9553 100644 --- a/addons/base_report_designer/i18n/lt_LT.po +++ b/addons/base_report_designer/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index c4d581b6eb4..aea90550479 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/nl_NL.po b/addons/base_report_designer/i18n/nl_NL.po index fa876dfc4e9..e7ca4414c2a 100644 --- a/addons/base_report_designer/i18n/nl_NL.po +++ b/addons/base_report_designer/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pl_PL.po b/addons/base_report_designer/i18n/pl_PL.po index cd43abe8b35..00d61e02768 100644 --- a/addons/base_report_designer/i18n/pl_PL.po +++ b/addons/base_report_designer/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 658ca89561b..b9397e5f938 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pt_PT.po b/addons/base_report_designer/i18n/pt_PT.po index d82aa6f197e..5e6be905dc5 100644 --- a/addons/base_report_designer/i18n/pt_PT.po +++ b/addons/base_report_designer/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ro_RO.po b/addons/base_report_designer/i18n/ro_RO.po index d9ca2c753dc..364be455d87 100644 --- a/addons/base_report_designer/i18n/ro_RO.po +++ b/addons/base_report_designer/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ru_RU.po b/addons/base_report_designer/i18n/ru_RU.po index c3b08577000..e5aa5479e2e 100644 --- a/addons/base_report_designer/i18n/ru_RU.po +++ b/addons/base_report_designer/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sl_SL.po b/addons/base_report_designer/i18n/sl_SL.po index fb385925cea..416e74c8a4d 100644 --- a/addons/base_report_designer/i18n/sl_SL.po +++ b/addons/base_report_designer/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sv_SE.po b/addons/base_report_designer/i18n/sv_SE.po index 366fa49886a..578e8b07c1f 100644 --- a/addons/base_report_designer/i18n/sv_SE.po +++ b/addons/base_report_designer/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sv_SV.po b/addons/base_report_designer/i18n/sv_SV.po index 94584ab344f..10b6474e84e 100644 --- a/addons/base_report_designer/i18n/sv_SV.po +++ b/addons/base_report_designer/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/tr_TR.po b/addons/base_report_designer/i18n/tr_TR.po index ba1c70080a7..d1ee5e2a36a 100644 --- a/addons/base_report_designer/i18n/tr_TR.po +++ b/addons/base_report_designer/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/uk_UK.po b/addons/base_report_designer/i18n/uk_UK.po index 8ba08b26eaa..0c7c331b00c 100644 --- a/addons/base_report_designer/i18n/uk_UK.po +++ b/addons/base_report_designer/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index 1934868f56c..222dd17af65 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index d9235db94b4..ea72e71ea92 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/ar_AR.po b/addons/base_setup/i18n/ar_AR.po index a0f55aa0429..677d4ff2266 100644 --- a/addons/base_setup/i18n/ar_AR.po +++ b/addons/base_setup/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index 24fceca413d..f439778d5b5 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/bg_BG.po b/addons/base_setup/i18n/bg_BG.po index 6def16e0f10..b1d0db11927 100644 --- a/addons/base_setup/i18n/bg_BG.po +++ b/addons/base_setup/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Улица2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "Телефон" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/bs_BS.po b/addons/base_setup/i18n/bs_BS.po index b4eea7300b7..62a3dc562ae 100644 --- a/addons/base_setup/i18n/bs_BS.po +++ b/addons/base_setup/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/ca_ES.po b/addons/base_setup/i18n/ca_ES.po index 4c72eb939de..ab13e031fd1 100644 --- a/addons/base_setup/i18n/ca_ES.po +++ b/addons/base_setup/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Carrer 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Informació dels informes" +msgid "Define Main Company" +msgstr "Defineix companyia principal" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telèfon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Defineix companyia principal" +msgid "Report Information" +msgstr "Informació dels informes" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/cs_CS.po b/addons/base_setup/i18n/cs_CS.po index b86e625fa9a..c26af7e27be 100644 --- a/addons/base_setup/i18n/cs_CS.po +++ b/addons/base_setup/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/cs_CZ.po b/addons/base_setup/i18n/cs_CZ.po index 2a61e082ff8..6ba742cc75e 100644 --- a/addons/base_setup/i18n/cs_CZ.po +++ b/addons/base_setup/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Ulice2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "Telefon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/de_DE.po b/addons/base_setup/i18n/de_DE.po index ac292246be7..51686545f64 100644 --- a/addons/base_setup/i18n/de_DE.po +++ b/addons/base_setup/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Strasse2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Report Information" +msgid "Define Main Company" +msgstr "Haupt Gesellschaft Defnieren" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Haupt Gesellschaft Defnieren" +msgid "Report Information" +msgstr "Report Information" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 8480ba190e9..fbde032b118 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/es_ES.po b/addons/base_setup/i18n/es_ES.po index f1a87a6545f..890e27af31a 100644 --- a/addons/base_setup/i18n/es_ES.po +++ b/addons/base_setup/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Calle 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Información de los informes" +msgid "Define Main Company" +msgstr "Definir compañia principal" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Teléfono" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Definir compañia principal" +msgid "Report Information" +msgstr "Información de los informes" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/et_EE.po b/addons/base_setup/i18n/et_EE.po index 574adbbddee..48bfcc014ee 100644 --- a/addons/base_setup/i18n/et_EE.po +++ b/addons/base_setup/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Tänav2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Aruande informatsioon" +msgid "Define Main Company" +msgstr "Määra Emaettevõte" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Määra Emaettevõte" +msgid "Report Information" +msgstr "Aruande informatsioon" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 @@ -252,7 +252,7 @@ msgstr "Logo" #. module: base_setup #: model:ir.module.module,shortdesc:base_setup.module_meta_information msgid "Base Setup" -msgstr "" +msgstr "Baashäälestus" #. module: base_setup #: wizard_button:base_setup.base_setup,company,init:0 diff --git a/addons/base_setup/i18n/fr_FR.po b/addons/base_setup/i18n/fr_FR.po index 71616356821..c42c7e50977 100644 --- a/addons/base_setup/i18n/fr_FR.po +++ b/addons/base_setup/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Rue (suite)" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Rapport d'information" +msgid "Define Main Company" +msgstr "Définir la société principale" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Téléphone" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Définir la société principale" +msgid "Report Information" +msgstr "Rapport d'information" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/hr_HR.po b/addons/base_setup/i18n/hr_HR.po index 4885586b69f..2c9fdcae0a1 100644 --- a/addons/base_setup/i18n/hr_HR.po +++ b/addons/base_setup/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/hu_HU.po b/addons/base_setup/i18n/hu_HU.po index 340f59daeab..680c803996b 100644 --- a/addons/base_setup/i18n/hu_HU.po +++ b/addons/base_setup/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/it_IT.po b/addons/base_setup/i18n/it_IT.po index b7cacc458a0..80720eb03d5 100644 --- a/addons/base_setup/i18n/it_IT.po +++ b/addons/base_setup/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Indirizzo 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Informazion Report" +msgid "Define Main Company" +msgstr "Definisci Azienda Principale" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefono" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Definisci Azienda Principale" +msgid "Report Information" +msgstr "Informazion Report" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/lt_LT.po b/addons/base_setup/i18n/lt_LT.po index ce927918763..aee929b67a6 100644 --- a/addons/base_setup/i18n/lt_LT.po +++ b/addons/base_setup/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 1ae293c0ed8..ab2d6c0ee12 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/nl_NL.po b/addons/base_setup/i18n/nl_NL.po index 21b1a7589ba..2969c3285f1 100644 --- a/addons/base_setup/i18n/nl_NL.po +++ b/addons/base_setup/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Adres 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Rapportinformatie" +msgid "Define Main Company" +msgstr "Defineer moederorganisatie" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefoon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Defineer moederorganisatie" +msgid "Report Information" +msgstr "Rapportinformatie" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/pl_PL.po b/addons/base_setup/i18n/pl_PL.po index ab39331d6dd..25db70dd771 100644 --- a/addons/base_setup/i18n/pl_PL.po +++ b/addons/base_setup/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "Telefon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 53e141fbd32..77c4c2cf8d5 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Cidade" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "You can start configuring the system or connect directly to the database using the default setup." -msgstr "Voce pode iniciar configurando seu sistema ou conectando diretamente a base de dados usando o setup padrão." +msgstr "Você pode começar a configurar o sistema ou conectar diretamente a base de dados usando a configuração padrão." #. module: base_setup #: wizard_field:base_setup.base_setup,company,zip:0 @@ -52,12 +52,12 @@ msgstr "Iniciar configuração" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 msgid "You'll be able to install more modules later through the Administration menu." -msgstr "Voce poderá instala novos módulos mais tarde através do menu Administração." +msgstr "Você será capaz de instalar mais módulos posteriormente através do menu Administração." #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 msgid "A profile sets a pre-selection of modules for specific needs. These profiles have been setup to help you discover the different aspects of OpenERP. This is just an overview, we have 300+ available modules." -msgstr "" +msgstr "Um perfil configura uma pré-seleção dos módulos para necessidades específicas. Estes perfis foram configurados para ajudá-lo a descobrir os diferentes aspectos do OpenERP. Esta é apenas uma visão geral, nós temos mais de 300 módulos disponíveis." #. module: base_setup #: wizard_button:base_setup.base_setup,company,update:0 @@ -82,7 +82,7 @@ msgstr "Estado" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "Your new database is now fully installed." -msgstr "Sua nova base de dados já esta instalada." +msgstr "Sua nova base de dados está agora completamente instalada." #. module: base_setup #: wizard_field:base_setup.base_setup,company,profile:0 @@ -108,7 +108,7 @@ msgstr "Rodapé 2 do relatório" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "General Information" -msgstr "Informações Gerais" +msgstr "Informação geral" #. module: base_setup #: wizard_field:base_setup.base_setup,company,street2:0 @@ -119,8 +119,8 @@ msgstr "Complemento" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Relatório de informação" +msgid "Define Main Company" +msgstr "Definir empresa principal" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefone" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Definir empresa principal" +msgid "Report Information" +msgstr "Relatório de informação" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 @@ -148,7 +148,8 @@ msgstr "Nome da Empresa" msgid "This sentence will appear at the bottom of your reports.\n" "We suggest you to put bank information here:\n" "IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" -msgstr "" +msgstr "Esta frase aparecerá no rodapé de seus relatórios.\n" +"Sugerimos que coloque informações bancarias aqui:" #. module: base_setup #: wizard_field:base_setup.base_setup,company,country_id:0 @@ -165,7 +166,7 @@ msgstr "País" #: model:ir.actions.wizard,name:base_setup.action_wizard_setup #: model:ir.actions.wizard,name:base_setup.wizard_base_setup msgid "Setup" -msgstr "Setup" +msgstr "Configurar" #. module: base_setup #: help:base_setup.base_setup,company,rml_footer1:0 @@ -174,12 +175,15 @@ msgstr "Setup" msgid "This sentence will appear at the bottom of your reports.\n" "We suggest you to write legal sentences here:\n" "Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" -msgstr "" +msgstr "Esta frase aparecerá no rodapé de seus relatórios.\\n" +"\n" +"Sugerimos que escreva uma frase válida aqui:\n" +"Web: http://openerp.com - Fax: +55.00.0000.0000" #. module: base_setup #: wizard_view:base_setup.base_setup,update:0 msgid "Summary" -msgstr "Sumário" +msgstr "Resumo" #. module: base_setup #: wizard_button:base_setup.base_setup,update,finish:0 @@ -189,7 +193,7 @@ msgstr "Instalar" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "Installation Done" -msgstr "Instalado" +msgstr "Instalação concluída" #. module: base_setup #: help:base_setup.base_setup,company,rml_header1:0 @@ -198,7 +202,11 @@ msgstr "Instalado" msgid "This sentence will appear at the top right corner of your reports.\n" "We suggest you to put a slogan here:\n" "\"Open Source Business Solutions\"." -msgstr "" +msgstr "Esta frase aparecerá no canto superior direito de seus relatórios.\\n" +"\n" +"Nós sugerimos que coloque um slogan aqui:\\n" +"\n" +"\\\"Soluções de negócios em código aberto\\\"." #. module: base_setup #: wizard_field:base_setup.base_setup,company,rml_header1:0 @@ -210,7 +218,7 @@ msgstr "Cabeçalho do relatório" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Seu logotipo usa um tamanho acima de que 450x150 pixels." +msgstr "Seu logotipo - Use um tamanho de aproximadamente 450x150 pixels." #. module: base_setup #: wizard_field:base_setup.base_setup,company,currency:0 @@ -246,7 +254,7 @@ msgstr "Logotipo" #. module: base_setup #: model:ir.module.module,shortdesc:base_setup.module_meta_information msgid "Base Setup" -msgstr "" +msgstr "Configurar base" #. module: base_setup #: wizard_button:base_setup.base_setup,company,init:0 diff --git a/addons/base_setup/i18n/pt_PT.po b/addons/base_setup/i18n/pt_PT.po index 203b7c6a50b..4b67bd25536 100644 --- a/addons/base_setup/i18n/pt_PT.po +++ b/addons/base_setup/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Rua2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Informação do relatório" +msgid "Define Main Company" +msgstr "Definir empresa principal" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefone" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Definir empresa principal" +msgid "Report Information" +msgstr "Informação do relatório" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/ro_RO.po b/addons/base_setup/i18n/ro_RO.po index cdaa69bf9ba..aac26789aaa 100644 --- a/addons/base_setup/i18n/ro_RO.po +++ b/addons/base_setup/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/ru_RU.po b/addons/base_setup/i18n/ru_RU.po index 1956fe39578..c8c31250199 100644 --- a/addons/base_setup/i18n/ru_RU.po +++ b/addons/base_setup/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Улица (2-я строка)" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "" +msgid "Define Main Company" +msgstr "Задать головную компанию" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Телефон" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Задать головную компанию" +msgid "Report Information" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/sl_SL.po b/addons/base_setup/i18n/sl_SL.po index d622caed5fe..57ca0999e0f 100644 --- a/addons/base_setup/i18n/sl_SL.po +++ b/addons/base_setup/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,8 +119,8 @@ msgstr "Naslov 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "" +msgid "Define Main Company" +msgstr "Določi glavno družbo" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -131,8 +131,8 @@ msgstr "Telefon" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Določi glavno družbo" +msgid "Report Information" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 diff --git a/addons/base_setup/i18n/sv_SE.po b/addons/base_setup/i18n/sv_SE.po index 7e3d66d7925..92bced62365 100644 --- a/addons/base_setup/i18n/sv_SE.po +++ b/addons/base_setup/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/sv_SV.po b/addons/base_setup/i18n/sv_SV.po index 5222a0cfe81..cc872595869 100644 --- a/addons/base_setup/i18n/sv_SV.po +++ b/addons/base_setup/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/tr_TR.po b/addons/base_setup/i18n/tr_TR.po index 912a797607d..e20e114d932 100644 --- a/addons/base_setup/i18n/tr_TR.po +++ b/addons/base_setup/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/uk_UK.po b/addons/base_setup/i18n/uk_UK.po index 6f83edfd626..344c3cece6f 100644 --- a/addons/base_setup/i18n/uk_UK.po +++ b/addons/base_setup/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Вулиця2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "Телефон" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 429bc86591d..189980fcebc 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "街区地址5" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "电话" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index f569d7ca1d6..a1bac7f3853 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" +msgid "Define Main Company" msgstr "" #. module: base_setup @@ -131,7 +131,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" +msgid "Report Information" msgstr "" #. module: base_setup diff --git a/addons/base_vat/i18n/ab_AB.po b/addons/base_vat/i18n/ab_AB.po new file mode 100644 index 00000000000..d01ca2790a6 --- /dev/null +++ b/addons/base_vat/i18n/ab_AB.po @@ -0,0 +1,39 @@ +# Abkhazian translation for openobject-addons +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:44+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Abkhazian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-05-19 13:27+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_vat +#: model:ir.module.module,description:base_vat.module_meta_information +msgid "" +"Enable the VAT Number for the partner. Check the validity of that VAT Number." +msgstr "" + +#. module: base_vat +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_vat +#: field:res.partner,vat_subjected:0 +msgid "VAT Legal Statement" +msgstr "" + +#. module: base_vat +#: model:ir.module.module,shortdesc:base_vat.module_meta_information +msgid "VAT" +msgstr "" diff --git a/addons/base_vat/i18n/ar_AR.po b/addons/base_vat/i18n/ar_AR.po index 79e1e17c1f8..c3e09a1b9ee 100644 --- a/addons/base_vat/i18n/ar_AR.po +++ b/addons/base_vat/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index 0243c675620..acebd226f4c 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/bg_BG.po b/addons/base_vat/i18n/bg_BG.po index 4c20397169a..9baac89d4aa 100644 --- a/addons/base_vat/i18n/bg_BG.po +++ b/addons/base_vat/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/bs_BS.po b/addons/base_vat/i18n/bs_BS.po index 31677da24cc..44de66a5d44 100644 --- a/addons/base_vat/i18n/bs_BS.po +++ b/addons/base_vat/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ca_ES.po b/addons/base_vat/i18n/ca_ES.po index 061302d0443..09b33b558e5 100644 --- a/addons/base_vat/i18n/ca_ES.po +++ b/addons/base_vat/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/cs_CS.po b/addons/base_vat/i18n/cs_CS.po index 9fe98d17d6d..a742a5b15fc 100644 --- a/addons/base_vat/i18n/cs_CS.po +++ b/addons/base_vat/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/cs_CZ.po b/addons/base_vat/i18n/cs_CZ.po index 0d19c0f2aad..a7116753491 100644 --- a/addons/base_vat/i18n/cs_CZ.po +++ b/addons/base_vat/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/de_DE.po b/addons/base_vat/i18n/de_DE.po index 635810f89a5..1d1aa8c65c2 100644 --- a/addons/base_vat/i18n/de_DE.po +++ b/addons/base_vat/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 621acb00e46..1c8bbc937af 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/es_ES.po b/addons/base_vat/i18n/es_ES.po index 554c2fb2fa4..b5da0c06f51 100644 --- a/addons/base_vat/i18n/es_ES.po +++ b/addons/base_vat/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/et_EE.po b/addons/base_vat/i18n/et_EE.po index a3e0d21d107..6ab47509d13 100644 --- a/addons/base_vat/i18n/et_EE.po +++ b/addons/base_vat/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: base_vat #: model:ir.module.module,description:base_vat.module_meta_information msgid "Enable the VAT Number for the partner. Check the validity of that VAT Number." -msgstr "" +msgstr "Luba partnerile KM number. Kontrolli KM numbri kehtivust." #. module: base_vat #: constraint:ir.ui.view:0 @@ -33,5 +33,5 @@ msgstr "Käibemaksu teatis" #. module: base_vat #: model:ir.module.module,shortdesc:base_vat.module_meta_information msgid "VAT" -msgstr "" +msgstr "KM" diff --git a/addons/base_vat/i18n/fr_FR.po b/addons/base_vat/i18n/fr_FR.po index 05544723514..85d8e4d9c76 100644 --- a/addons/base_vat/i18n/fr_FR.po +++ b/addons/base_vat/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/hr_HR.po b/addons/base_vat/i18n/hr_HR.po index 127a1920675..018aa7e8c51 100644 --- a/addons/base_vat/i18n/hr_HR.po +++ b/addons/base_vat/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/hu_HU.po b/addons/base_vat/i18n/hu_HU.po index 36da339e400..395345c6c19 100644 --- a/addons/base_vat/i18n/hu_HU.po +++ b/addons/base_vat/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/it_IT.po b/addons/base_vat/i18n/it_IT.po index 3272f7c9cef..7fbcdd1ff55 100644 --- a/addons/base_vat/i18n/it_IT.po +++ b/addons/base_vat/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/lt_LT.po b/addons/base_vat/i18n/lt_LT.po index 9ccd1b720df..75ce851564a 100644 --- a/addons/base_vat/i18n/lt_LT.po +++ b/addons/base_vat/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index 40871737949..bcc8aae68e3 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/nl_NL.po b/addons/base_vat/i18n/nl_NL.po index 9b7acad7637..0fa47dac407 100644 --- a/addons/base_vat/i18n/nl_NL.po +++ b/addons/base_vat/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pl_PL.po b/addons/base_vat/i18n/pl_PL.po index 63189f6212b..68cc959e07d 100644 --- a/addons/base_vat/i18n/pl_PL.po +++ b/addons/base_vat/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index cd1f7de65f8..bd20416143a 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pt_PT.po b/addons/base_vat/i18n/pt_PT.po index f7cc458be07..5d5795b20e9 100644 --- a/addons/base_vat/i18n/pt_PT.po +++ b/addons/base_vat/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ro_RO.po b/addons/base_vat/i18n/ro_RO.po index 094ae83f3ce..60bd3815b08 100644 --- a/addons/base_vat/i18n/ro_RO.po +++ b/addons/base_vat/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ru_RU.po b/addons/base_vat/i18n/ru_RU.po index 96bc1d6e64d..0cbb1a802fe 100644 --- a/addons/base_vat/i18n/ru_RU.po +++ b/addons/base_vat/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sl_SL.po b/addons/base_vat/i18n/sl_SL.po index 86051e9fc64..be5f6cf078d 100644 --- a/addons/base_vat/i18n/sl_SL.po +++ b/addons/base_vat/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sv_SE.po b/addons/base_vat/i18n/sv_SE.po index f5ae86c996e..cf2ef2c2209 100644 --- a/addons/base_vat/i18n/sv_SE.po +++ b/addons/base_vat/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sv_SV.po b/addons/base_vat/i18n/sv_SV.po index 0fdc17bd0a2..aae819e8fdd 100644 --- a/addons/base_vat/i18n/sv_SV.po +++ b/addons/base_vat/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/tr_TR.po b/addons/base_vat/i18n/tr_TR.po index d529f3bb281..a079935cf91 100644 --- a/addons/base_vat/i18n/tr_TR.po +++ b/addons/base_vat/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/uk_UK.po b/addons/base_vat/i18n/uk_UK.po index 7a8036fd303..c787c028cf3 100644 --- a/addons/base_vat/i18n/uk_UK.po +++ b/addons/base_vat/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 63e2b868e50..3a15615beee 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index 4aeb8686312..3e4a7ea3f16 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ar_AR.po b/addons/board/i18n/ar_AR.po index 6fc7be030e6..b7661b36633 100644 --- a/addons/board/i18n/ar_AR.po +++ b/addons/board/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/bg_BG.po b/addons/board/i18n/bg_BG.po index e0863744509..914ceabd9c9 100644 --- a/addons/board/i18n/bg_BG.po +++ b/addons/board/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 c850fede2fc..4d6b924dfba 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/bs_BS.po b/addons/board/i18n/bs_BS.po index 8812131a7f4..d4bb3d11571 100644 --- a/addons/board/i18n/bs_BS.po +++ b/addons/board/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ca_ES.po b/addons/board/i18n/ca_ES.po index f0c3def99e2..f5d54ef2c7e 100644 --- a/addons/board/i18n/ca_ES.po +++ b/addons/board/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/cs_CS.po b/addons/board/i18n/cs_CS.po index 547e7fea696..9cc471aaef6 100644 --- a/addons/board/i18n/cs_CS.po +++ b/addons/board/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,12 @@ msgstr "" msgid "Dashboard main module" msgstr "" +#. module: board +#: code:addons/board/wizard/board_wizard.py:0 +#, python-format +msgid "User Error!" +msgstr "" + #. module: board #: view:board.note:0 #: field:board.note,note:0 @@ -46,6 +52,11 @@ msgstr "" msgid "Width" msgstr "" +#. module: board +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board #: field:board.board.line,name:0 msgid "Title" @@ -113,6 +124,12 @@ msgstr "" msgid "Notes" msgstr "" +#. module: board +#: code:addons/board/wizard/board_wizard.py:0 +#, python-format +msgid "Please Insert Dashboard View(s) !" +msgstr "" + #. module: board #: model:ir.model,name:board.model_board_note_type msgid "board.note.type" diff --git a/addons/board/i18n/cs_CZ.po b/addons/board/i18n/cs_CZ.po index e335d687028..ffe1b16040c 100644 --- a/addons/board/i18n/cs_CZ.po +++ b/addons/board/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/de_DE.po b/addons/board/i18n/de_DE.po index c35b1d35d1b..6278b7103f3 100644 --- a/addons/board/i18n/de_DE.po +++ b/addons/board/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 39fe3d3d593..e42d2742cf8 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/es_ES.po b/addons/board/i18n/es_ES.po index 79ef4c9c3d1..bb77e695f88 100644 --- a/addons/board/i18n/es_ES.po +++ b/addons/board/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/et_EE.po b/addons/board/i18n/et_EE.po index 8ac8b49c0a4..a51a9f81848 100644 --- a/addons/board/i18n/et_EE.po +++ b/addons/board/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,13 +33,13 @@ msgstr "Autor" #. module: board #: model:ir.module.module,shortdesc:board.module_meta_information msgid "Dashboard main module" -msgstr "" +msgstr "Töölaua põhimoodul" #. module: board #: code:addons/board/wizard/board_wizard.py:0 #, python-format msgid "User Error!" -msgstr "" +msgstr "Kasutaja viga!" #. module: board #: view:board.note:0 @@ -55,7 +55,7 @@ msgstr "Laius" #. module: board #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board #: field:board.board.line,name:0 @@ -128,7 +128,7 @@ msgstr "Märkmed" #: code:addons/board/wizard/board_wizard.py:0 #, python-format msgid "Please Insert Dashboard View(s) !" -msgstr "" +msgstr "Palun sisesta töölaua vaade/vaated!" #. module: board #: model:ir.model,name:board.model_board_note_type @@ -145,7 +145,7 @@ msgstr "Teabetahvel" #. module: board #: model:ir.module.module,description:board.module_meta_information msgid "Base module for all dashboards." -msgstr "" +msgstr "Põhimoodul kõigile töölaudadele." #. module: board #: field:board.board.line,position:0 diff --git a/addons/board/i18n/fr_FR.po b/addons/board/i18n/fr_FR.po index 91025d920d5..82b8f8d6e23 100644 --- a/addons/board/i18n/fr_FR.po +++ b/addons/board/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/hr_HR.po b/addons/board/i18n/hr_HR.po index ceac2a0c95f..9ff9b8399a9 100644 --- a/addons/board/i18n/hr_HR.po +++ b/addons/board/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/hu_HU.po b/addons/board/i18n/hu_HU.po index 605ec7ad914..f90de0a084f 100644 --- a/addons/board/i18n/hu_HU.po +++ b/addons/board/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/it_IT.po b/addons/board/i18n/it_IT.po index 586709ba69e..d643460c2b5 100644 --- a/addons/board/i18n/it_IT.po +++ b/addons/board/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/lt_LT.po b/addons/board/i18n/lt_LT.po index 6bec5118c46..22cc5dab19e 100644 --- a/addons/board/i18n/lt_LT.po +++ b/addons/board/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index c9adae26af8..ee2656ebb44 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/nl_NL.po b/addons/board/i18n/nl_NL.po index 326adf2591e..88bb6d3d7a1 100644 --- a/addons/board/i18n/nl_NL.po +++ b/addons/board/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pl_PL.po b/addons/board/i18n/pl_PL.po index 3ab34771830..1fbf1a779b9 100644 --- a/addons/board/i18n/pl_PL.po +++ b/addons/board/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 2a063394a11..cb8e207cf5f 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pt_PT.po b/addons/board/i18n/pt_PT.po index 56ceaed5bd8..7af3b03b13f 100644 --- a/addons/board/i18n/pt_PT.po +++ b/addons/board/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ro_RO.po b/addons/board/i18n/ro_RO.po index 6129fa1effc..4bf80c6500c 100644 --- a/addons/board/i18n/ro_RO.po +++ b/addons/board/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ru_RU.po b/addons/board/i18n/ru_RU.po index be7fc1f674e..4deef42405f 100644 --- a/addons/board/i18n/ru_RU.po +++ b/addons/board/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/sl_SL.po b/addons/board/i18n/sl_SL.po index 82735d6c5eb..610d96bfc11 100644 --- a/addons/board/i18n/sl_SL.po +++ b/addons/board/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/sv_SE.po b/addons/board/i18n/sv_SE.po index ddf25051527..86e8b04b006 100644 --- a/addons/board/i18n/sv_SE.po +++ b/addons/board/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/sv_SV.po b/addons/board/i18n/sv_SV.po index 6ce7e30f101..255286a152a 100644 --- a/addons/board/i18n/sv_SV.po +++ b/addons/board/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,12 @@ msgstr "" msgid "Dashboard main module" msgstr "" +#. module: board +#: code:addons/board/wizard/board_wizard.py:0 +#, python-format +msgid "User Error!" +msgstr "" + #. module: board #: view:board.note:0 #: field:board.note,note:0 @@ -46,6 +52,11 @@ msgstr "" msgid "Width" msgstr "" +#. module: board +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board #: field:board.board.line,name:0 msgid "Title" @@ -113,6 +124,12 @@ msgstr "" msgid "Notes" msgstr "" +#. module: board +#: code:addons/board/wizard/board_wizard.py:0 +#, python-format +msgid "Please Insert Dashboard View(s) !" +msgstr "" + #. module: board #: model:ir.model,name:board.model_board_note_type msgid "board.note.type" diff --git a/addons/board/i18n/tr_TR.po b/addons/board/i18n/tr_TR.po index ce6508a085d..9bd4db3057a 100644 --- a/addons/board/i18n/tr_TR.po +++ b/addons/board/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/uk_UK.po b/addons/board/i18n/uk_UK.po index 1d833efb0f7..91dddfa16fc 100644 --- a/addons/board/i18n/uk_UK.po +++ b/addons/board/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index 5263192283d..5522f32d8f8 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 6b84bdbe957..7cdd677d583 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ar_AR.po b/addons/board_account/i18n/ar_AR.po index f2b2b398d3c..763d4f3be63 100644 --- a/addons/board_account/i18n/ar_AR.po +++ b/addons/board_account/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/bg_BG.po b/addons/board_account/i18n/bg_BG.po index e024ae2e4df..d954ad5f2a8 100644 --- a/addons/board_account/i18n/bg_BG.po +++ b/addons/board_account/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 741fd24cc81..03385a20ec6 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/bs_BS.po b/addons/board_account/i18n/bs_BS.po index dbff8a67bac..9a39e4464f2 100644 --- a/addons/board_account/i18n/bs_BS.po +++ b/addons/board_account/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ca_ES.po b/addons/board_account/i18n/ca_ES.po index 001176feef5..67049ce4a2d 100644 --- a/addons/board_account/i18n/ca_ES.po +++ b/addons/board_account/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/cs_CS.po b/addons/board_account/i18n/cs_CS.po index fa66e7a3a83..30bbc047d16 100644 --- a/addons/board_account/i18n/cs_CS.po +++ b/addons/board_account/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -73,6 +73,11 @@ msgstr "" msgid "My indicators" msgstr "" +#. module: board_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_account #: model:ir.ui.menu,name:board_account.next_id_68 msgid "Accounting" diff --git a/addons/board_account/i18n/cs_CZ.po b/addons/board_account/i18n/cs_CZ.po index 8a86405ae83..55ff5a7f307 100644 --- a/addons/board_account/i18n/cs_CZ.po +++ b/addons/board_account/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/de_DE.po b/addons/board_account/i18n/de_DE.po index 5aa110738a1..43f73648575 100644 --- a/addons/board_account/i18n/de_DE.po +++ b/addons/board_account/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/es_AR.po b/addons/board_account/i18n/es_AR.po index f05a476ef70..f5275317c1d 100644 --- a/addons/board_account/i18n/es_AR.po +++ b/addons/board_account/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/es_ES.po b/addons/board_account/i18n/es_ES.po index 0ca231e91db..6f6f1ee404a 100644 --- a/addons/board_account/i18n/es_ES.po +++ b/addons/board_account/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/et_EE.po b/addons/board_account/i18n/et_EE.po index 4ec63e4c202..5527f8cd225 100644 --- a/addons/board_account/i18n/et_EE.po +++ b/addons/board_account/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "Minu näiturid" #. module: board_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_account #: model:ir.ui.menu,name:board_account.next_id_68 diff --git a/addons/board_account/i18n/fr_FR.po b/addons/board_account/i18n/fr_FR.po index 6bf36059dc3..c3a38f6a301 100644 --- a/addons/board_account/i18n/fr_FR.po +++ b/addons/board_account/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/hr_HR.po b/addons/board_account/i18n/hr_HR.po index b3e58a36beb..e50ffc24934 100644 --- a/addons/board_account/i18n/hr_HR.po +++ b/addons/board_account/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/hu_HU.po b/addons/board_account/i18n/hu_HU.po index 3e7c9eccf97..8d1c972deae 100644 --- a/addons/board_account/i18n/hu_HU.po +++ b/addons/board_account/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/it_IT.po b/addons/board_account/i18n/it_IT.po index 2eb0b676038..141d6558a3f 100644 --- a/addons/board_account/i18n/it_IT.po +++ b/addons/board_account/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/lt_LT.po b/addons/board_account/i18n/lt_LT.po index 8ca34d85db6..214c2e761ad 100644 --- a/addons/board_account/i18n/lt_LT.po +++ b/addons/board_account/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/nl_BE.po b/addons/board_account/i18n/nl_BE.po index 5cbf9f98dd9..8c6d7346424 100644 --- a/addons/board_account/i18n/nl_BE.po +++ b/addons/board_account/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/nl_NL.po b/addons/board_account/i18n/nl_NL.po index f12cdb258aa..da35ecbe027 100644 --- a/addons/board_account/i18n/nl_NL.po +++ b/addons/board_account/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pl_PL.po b/addons/board_account/i18n/pl_PL.po index 34ae2c956e8..1c5fca9a310 100644 --- a/addons/board_account/i18n/pl_PL.po +++ b/addons/board_account/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pt_BR.po b/addons/board_account/i18n/pt_BR.po index 2d44c6d8666..8f788ac0652 100644 --- a/addons/board_account/i18n/pt_BR.po +++ b/addons/board_account/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pt_PT.po b/addons/board_account/i18n/pt_PT.po index 6f5f3b29fc3..8d537fd0d20 100644 --- a/addons/board_account/i18n/pt_PT.po +++ b/addons/board_account/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ro_RO.po b/addons/board_account/i18n/ro_RO.po index 8843e94865b..62508cf2774 100644 --- a/addons/board_account/i18n/ro_RO.po +++ b/addons/board_account/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ru_RU.po b/addons/board_account/i18n/ru_RU.po index cb3aaaf4ff1..62a59494bad 100644 --- a/addons/board_account/i18n/ru_RU.po +++ b/addons/board_account/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sl_SL.po b/addons/board_account/i18n/sl_SL.po index 3dfcf68cca6..33f20958a20 100644 --- a/addons/board_account/i18n/sl_SL.po +++ b/addons/board_account/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sv_SE.po b/addons/board_account/i18n/sv_SE.po index b5978e6b9b4..ccf07de42b5 100644 --- a/addons/board_account/i18n/sv_SE.po +++ b/addons/board_account/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sv_SV.po b/addons/board_account/i18n/sv_SV.po index d9780749cee..cf728d4e67a 100644 --- a/addons/board_account/i18n/sv_SV.po +++ b/addons/board_account/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -73,6 +73,11 @@ msgstr "" msgid "My indicators" msgstr "" +#. module: board_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_account #: model:ir.ui.menu,name:board_account.next_id_68 msgid "Accounting" diff --git a/addons/board_account/i18n/tr_TR.po b/addons/board_account/i18n/tr_TR.po index c3029cc61fb..fa7d707afac 100644 --- a/addons/board_account/i18n/tr_TR.po +++ b/addons/board_account/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/uk_UK.po b/addons/board_account/i18n/uk_UK.po index 3ac6978f790..c4e3ef1bfa5 100644 --- a/addons/board_account/i18n/uk_UK.po +++ b/addons/board_account/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/zh_CN.po b/addons/board_account/i18n/zh_CN.po index 53a146a4a70..1cf134d2c96 100644 --- a/addons/board_account/i18n/zh_CN.po +++ b/addons/board_account/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/zh_TW.po b/addons/board_account/i18n/zh_TW.po index 0bcc0a7b1b8..dc6724549e9 100644 --- a/addons/board_account/i18n/zh_TW.po +++ b/addons/board_account/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ar_AR.po b/addons/board_association/i18n/ar_AR.po index f82282dd1d7..1aa4a1cf9fc 100644 --- a/addons/board_association/i18n/ar_AR.po +++ b/addons/board_association/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/bg_BG.po b/addons/board_association/i18n/bg_BG.po index d288c1813dc..a6f3a765a18 100644 --- a/addons/board_association/i18n/bg_BG.po +++ b/addons/board_association/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 84d5954e346..d812a0787a1 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/bs_BS.po b/addons/board_association/i18n/bs_BS.po index 0d38d8537dc..ee0c0dc16bb 100644 --- a/addons/board_association/i18n/bs_BS.po +++ b/addons/board_association/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ca_ES.po b/addons/board_association/i18n/ca_ES.po index 49c103cb56c..b57cc3c9ce5 100644 --- a/addons/board_association/i18n/ca_ES.po +++ b/addons/board_association/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/cs_CS.po b/addons/board_association/i18n/cs_CS.po index 6372a5e1fc5..a9b3af7cc0f 100644 --- a/addons/board_association/i18n/cs_CS.po +++ b/addons/board_association/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Unpaid Invoices" msgstr "" +#. module: board_association +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_association #: view:board.board:0 msgid "Next Events" diff --git a/addons/board_association/i18n/cs_CZ.po b/addons/board_association/i18n/cs_CZ.po index a87cde0624d..8a7d2fa2d67 100644 --- a/addons/board_association/i18n/cs_CZ.po +++ b/addons/board_association/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/de_DE.po b/addons/board_association/i18n/de_DE.po index 2eb3820cf7a..e0ab8b7c1d3 100644 --- a/addons/board_association/i18n/de_DE.po +++ b/addons/board_association/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/es_AR.po b/addons/board_association/i18n/es_AR.po index 3eaa43013c3..5ccf583a97d 100644 --- a/addons/board_association/i18n/es_AR.po +++ b/addons/board_association/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/es_ES.po b/addons/board_association/i18n/es_ES.po index 2ef8c7e6198..012b1408c25 100644 --- a/addons/board_association/i18n/es_ES.po +++ b/addons/board_association/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/et_EE.po b/addons/board_association/i18n/et_EE.po index 613f07c7ab3..05e498a4862 100644 --- a/addons/board_association/i18n/et_EE.po +++ b/addons/board_association/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: board_association #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_association #: view:board.board:0 diff --git a/addons/board_association/i18n/fr_FR.po b/addons/board_association/i18n/fr_FR.po index 025cf67d22f..9fe8b89fb8e 100644 --- a/addons/board_association/i18n/fr_FR.po +++ b/addons/board_association/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/hr_HR.po b/addons/board_association/i18n/hr_HR.po index e5f2c9c9b85..99831707b43 100644 --- a/addons/board_association/i18n/hr_HR.po +++ b/addons/board_association/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/hu_HU.po b/addons/board_association/i18n/hu_HU.po index 4531d76faf6..8f11f0a702b 100644 --- a/addons/board_association/i18n/hu_HU.po +++ b/addons/board_association/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/it_IT.po b/addons/board_association/i18n/it_IT.po index 17a66ac4a71..ba072eb602b 100644 --- a/addons/board_association/i18n/it_IT.po +++ b/addons/board_association/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/lt_LT.po b/addons/board_association/i18n/lt_LT.po index 91541f99384..d7e2eab720b 100644 --- a/addons/board_association/i18n/lt_LT.po +++ b/addons/board_association/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/nl_BE.po b/addons/board_association/i18n/nl_BE.po index b4d1f7b7a73..91f86cb2ac0 100644 --- a/addons/board_association/i18n/nl_BE.po +++ b/addons/board_association/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/nl_NL.po b/addons/board_association/i18n/nl_NL.po index 4c41021ed06..70c7bcef2f3 100644 --- a/addons/board_association/i18n/nl_NL.po +++ b/addons/board_association/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pl_PL.po b/addons/board_association/i18n/pl_PL.po index 8837565a7d1..418ccaa88f9 100644 --- a/addons/board_association/i18n/pl_PL.po +++ b/addons/board_association/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pt_BR.po b/addons/board_association/i18n/pt_BR.po index d03f54e0aba..e9782799766 100644 --- a/addons/board_association/i18n/pt_BR.po +++ b/addons/board_association/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pt_PT.po b/addons/board_association/i18n/pt_PT.po index 0e3bd9636cb..3e1119664c8 100644 --- a/addons/board_association/i18n/pt_PT.po +++ b/addons/board_association/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ro_RO.po b/addons/board_association/i18n/ro_RO.po index 848ee9531c1..3f8ad9a6474 100644 --- a/addons/board_association/i18n/ro_RO.po +++ b/addons/board_association/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ru_RU.po b/addons/board_association/i18n/ru_RU.po index 0506adefaf8..e9780a87609 100644 --- a/addons/board_association/i18n/ru_RU.po +++ b/addons/board_association/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sl_SL.po b/addons/board_association/i18n/sl_SL.po index fb562e860dd..5b664037267 100644 --- a/addons/board_association/i18n/sl_SL.po +++ b/addons/board_association/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sv_SE.po b/addons/board_association/i18n/sv_SE.po index f987c1663c3..8b5883e4cc8 100644 --- a/addons/board_association/i18n/sv_SE.po +++ b/addons/board_association/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sv_SV.po b/addons/board_association/i18n/sv_SV.po index 1ad766c8cd2..01d948c93ce 100644 --- a/addons/board_association/i18n/sv_SV.po +++ b/addons/board_association/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Unpaid Invoices" msgstr "" +#. module: board_association +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_association #: view:board.board:0 msgid "Next Events" diff --git a/addons/board_association/i18n/tr_TR.po b/addons/board_association/i18n/tr_TR.po index efa438188c7..74857b50b02 100644 --- a/addons/board_association/i18n/tr_TR.po +++ b/addons/board_association/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/uk_UK.po b/addons/board_association/i18n/uk_UK.po index 506cafa8664..bee426c6955 100644 --- a/addons/board_association/i18n/uk_UK.po +++ b/addons/board_association/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/zh_CN.po b/addons/board_association/i18n/zh_CN.po index 61198f9947d..f002c80a547 100644 --- a/addons/board_association/i18n/zh_CN.po +++ b/addons/board_association/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/zh_TW.po b/addons/board_association/i18n/zh_TW.po index f07dc71b889..1f27da8e53a 100644 --- a/addons/board_association/i18n/zh_TW.po +++ b/addons/board_association/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ar_AR.po b/addons/board_auction/i18n/ar_AR.po index e58a3f3c62c..3434ff72658 100644 --- a/addons/board_auction/i18n/ar_AR.po +++ b/addons/board_auction/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/bg_BG.po b/addons/board_auction/i18n/bg_BG.po index cc5f1c5fece..b8cf59e1caf 100644 --- a/addons/board_auction/i18n/bg_BG.po +++ b/addons/board_auction/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 a4909471cfc..1faf8e8d5ef 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/bs_BS.po b/addons/board_auction/i18n/bs_BS.po index c6819483ceb..fc80a429c87 100644 --- a/addons/board_auction/i18n/bs_BS.po +++ b/addons/board_auction/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ca_ES.po b/addons/board_auction/i18n/ca_ES.po index 48447eec7f4..2a2d2efd8f0 100644 --- a/addons/board_auction/i18n/ca_ES.po +++ b/addons/board_auction/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/cs_CS.po b/addons/board_auction/i18n/cs_CS.po index d5ac319c196..ad9b2d0d6fa 100644 --- a/addons/board_auction/i18n/cs_CS.po +++ b/addons/board_auction/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -86,8 +86,8 @@ msgid "Latest deposits" msgstr "" #. module: board_auction -#: view:board.board:0 -msgid "Min/Adj/Max" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_auction @@ -110,6 +110,11 @@ msgstr "" msgid "Auction manager board" msgstr "" +#. module: board_auction +#: view:board.board:0 +msgid "Min/Adj/Max" +msgstr "" + #. module: board_auction #: view:board.board:0 msgid "My Latest Objects" diff --git a/addons/board_auction/i18n/cs_CZ.po b/addons/board_auction/i18n/cs_CZ.po index c5855ab4862..9833f0c878c 100644 --- a/addons/board_auction/i18n/cs_CZ.po +++ b/addons/board_auction/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/de_DE.po b/addons/board_auction/i18n/de_DE.po index d573d19cad8..06a1e989ec1 100644 --- a/addons/board_auction/i18n/de_DE.po +++ b/addons/board_auction/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/es_AR.po b/addons/board_auction/i18n/es_AR.po index 19735bdc73c..77880f779ec 100644 --- a/addons/board_auction/i18n/es_AR.po +++ b/addons/board_auction/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/es_ES.po b/addons/board_auction/i18n/es_ES.po index 45a5bc5be24..6adef8440e1 100644 --- a/addons/board_auction/i18n/es_ES.po +++ b/addons/board_auction/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/et_EE.po b/addons/board_auction/i18n/et_EE.po index 2e5fbd88f7c..69c7896f910 100644 --- a/addons/board_auction/i18n/et_EE.po +++ b/addons/board_auction/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "" #. module: board_auction #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_auction #: view:board.board:0 diff --git a/addons/board_auction/i18n/fr_FR.po b/addons/board_auction/i18n/fr_FR.po index 79cea162b9f..549fd590bf7 100644 --- a/addons/board_auction/i18n/fr_FR.po +++ b/addons/board_auction/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/hr_HR.po b/addons/board_auction/i18n/hr_HR.po index 52d1b283fa8..eae77ade239 100644 --- a/addons/board_auction/i18n/hr_HR.po +++ b/addons/board_auction/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/hu_HU.po b/addons/board_auction/i18n/hu_HU.po index 91564ab0578..d1c1ed2edab 100644 --- a/addons/board_auction/i18n/hu_HU.po +++ b/addons/board_auction/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/it_IT.po b/addons/board_auction/i18n/it_IT.po index 5b5a075368e..e69c38ea614 100644 --- a/addons/board_auction/i18n/it_IT.po +++ b/addons/board_auction/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/lt_LT.po b/addons/board_auction/i18n/lt_LT.po index 79e4e2c241a..e9aab71e7a0 100644 --- a/addons/board_auction/i18n/lt_LT.po +++ b/addons/board_auction/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/nl_BE.po b/addons/board_auction/i18n/nl_BE.po index f80d87a454b..b346ff18d57 100644 --- a/addons/board_auction/i18n/nl_BE.po +++ b/addons/board_auction/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/nl_NL.po b/addons/board_auction/i18n/nl_NL.po index 9e69c84f5f3..e1b15a9c316 100644 --- a/addons/board_auction/i18n/nl_NL.po +++ b/addons/board_auction/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pl_PL.po b/addons/board_auction/i18n/pl_PL.po index c3dfe6c072a..ab91a94b22b 100644 --- a/addons/board_auction/i18n/pl_PL.po +++ b/addons/board_auction/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pt_BR.po b/addons/board_auction/i18n/pt_BR.po index d1b86c2917e..574c9e613bc 100644 --- a/addons/board_auction/i18n/pt_BR.po +++ b/addons/board_auction/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pt_PT.po b/addons/board_auction/i18n/pt_PT.po index 378579e4253..82bf24c49f3 100644 --- a/addons/board_auction/i18n/pt_PT.po +++ b/addons/board_auction/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ro_RO.po b/addons/board_auction/i18n/ro_RO.po index 6d09ac4dde6..3a746d3c3dd 100644 --- a/addons/board_auction/i18n/ro_RO.po +++ b/addons/board_auction/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ru_RU.po b/addons/board_auction/i18n/ru_RU.po index efd4fd1b439..d3c8c0dee8c 100644 --- a/addons/board_auction/i18n/ru_RU.po +++ b/addons/board_auction/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sl_SL.po b/addons/board_auction/i18n/sl_SL.po index 8e6dec44a94..1290573da75 100644 --- a/addons/board_auction/i18n/sl_SL.po +++ b/addons/board_auction/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sv_SE.po b/addons/board_auction/i18n/sv_SE.po index 14e9d37a4cd..59930976460 100644 --- a/addons/board_auction/i18n/sv_SE.po +++ b/addons/board_auction/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sv_SV.po b/addons/board_auction/i18n/sv_SV.po index 805f75c3cac..78a5f850589 100644 --- a/addons/board_auction/i18n/sv_SV.po +++ b/addons/board_auction/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -86,8 +86,8 @@ msgid "Latest deposits" msgstr "" #. module: board_auction -#: view:board.board:0 -msgid "Min/Adj/Max" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_auction @@ -110,6 +110,11 @@ msgstr "" msgid "Auction manager board" msgstr "" +#. module: board_auction +#: view:board.board:0 +msgid "Min/Adj/Max" +msgstr "" + #. module: board_auction #: view:board.board:0 msgid "My Latest Objects" diff --git a/addons/board_auction/i18n/tr_TR.po b/addons/board_auction/i18n/tr_TR.po index c85c21bc2db..ce4013ed98c 100644 --- a/addons/board_auction/i18n/tr_TR.po +++ b/addons/board_auction/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/uk_UK.po b/addons/board_auction/i18n/uk_UK.po index c728f01b21e..9bf7a77a73a 100644 --- a/addons/board_auction/i18n/uk_UK.po +++ b/addons/board_auction/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/zh_CN.po b/addons/board_auction/i18n/zh_CN.po index fac91d42bfe..54257721351 100644 --- a/addons/board_auction/i18n/zh_CN.po +++ b/addons/board_auction/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/zh_TW.po b/addons/board_auction/i18n/zh_TW.po index 4d850dc940b..796bc102015 100644 --- a/addons/board_auction/i18n/zh_TW.po +++ b/addons/board_auction/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ar_AR.po b/addons/board_crm_configuration/i18n/ar_AR.po index ecd10512294..8dcd44fd7c8 100644 --- a/addons/board_crm_configuration/i18n/ar_AR.po +++ b/addons/board_crm_configuration/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/bg_BG.po b/addons/board_crm_configuration/i18n/bg_BG.po index 5e4aabcac7f..b17826ac60b 100644 --- a/addons/board_crm_configuration/i18n/bg_BG.po +++ b/addons/board_crm_configuration/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 9df21e29cb5..eedf729adda 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/bs_BS.po b/addons/board_crm_configuration/i18n/bs_BS.po index 0f59ded3c56..7a09b24bbb6 100644 --- a/addons/board_crm_configuration/i18n/bs_BS.po +++ b/addons/board_crm_configuration/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ca_ES.po b/addons/board_crm_configuration/i18n/ca_ES.po index d5360e1eec4..c765fe94063 100644 --- a/addons/board_crm_configuration/i18n/ca_ES.po +++ b/addons/board_crm_configuration/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/cs_CS.po b/addons/board_crm_configuration/i18n/cs_CS.po index 85b00eb3862..c26f4f3c763 100644 --- a/addons/board_crm_configuration/i18n/cs_CS.po +++ b/addons/board_crm_configuration/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,6 +82,11 @@ msgstr "" msgid "Jobs Requests Of The Month by Applied Job" msgstr "" +#. module: board_crm_configuration +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_crm_configuration #: view:board.board:0 msgid "My Sales Pipeline" diff --git a/addons/board_crm_configuration/i18n/cs_CZ.po b/addons/board_crm_configuration/i18n/cs_CZ.po index 7730600b179..b32ae4899de 100644 --- a/addons/board_crm_configuration/i18n/cs_CZ.po +++ b/addons/board_crm_configuration/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/de_DE.po b/addons/board_crm_configuration/i18n/de_DE.po index eb3710f704d..386a8d6eb13 100644 --- a/addons/board_crm_configuration/i18n/de_DE.po +++ b/addons/board_crm_configuration/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/es_AR.po b/addons/board_crm_configuration/i18n/es_AR.po index e0da710c3b5..91f9d1acc92 100644 --- a/addons/board_crm_configuration/i18n/es_AR.po +++ b/addons/board_crm_configuration/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/es_ES.po b/addons/board_crm_configuration/i18n/es_ES.po index 2d768becb1b..2cbd4dde2f4 100644 --- a/addons/board_crm_configuration/i18n/es_ES.po +++ b/addons/board_crm_configuration/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/et_EE.po b/addons/board_crm_configuration/i18n/et_EE.po index 1e2d1f9dfc3..7a1f5321b43 100644 --- a/addons/board_crm_configuration/i18n/et_EE.po +++ b/addons/board_crm_configuration/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "" #. module: board_crm_configuration #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_crm_configuration #: view:board.board:0 diff --git a/addons/board_crm_configuration/i18n/fr_FR.po b/addons/board_crm_configuration/i18n/fr_FR.po index 2e958d88a42..188e26a3562 100644 --- a/addons/board_crm_configuration/i18n/fr_FR.po +++ b/addons/board_crm_configuration/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/hr_HR.po b/addons/board_crm_configuration/i18n/hr_HR.po index 05af0f267aa..49962d17c88 100644 --- a/addons/board_crm_configuration/i18n/hr_HR.po +++ b/addons/board_crm_configuration/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/hu_HU.po b/addons/board_crm_configuration/i18n/hu_HU.po index a0166f77ac3..3b24275b4e6 100644 --- a/addons/board_crm_configuration/i18n/hu_HU.po +++ b/addons/board_crm_configuration/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/it_IT.po b/addons/board_crm_configuration/i18n/it_IT.po index 71fba290966..834438d6796 100644 --- a/addons/board_crm_configuration/i18n/it_IT.po +++ b/addons/board_crm_configuration/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/lt_LT.po b/addons/board_crm_configuration/i18n/lt_LT.po index ab8fa9bcd58..21a17c15247 100644 --- a/addons/board_crm_configuration/i18n/lt_LT.po +++ b/addons/board_crm_configuration/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/nl_BE.po b/addons/board_crm_configuration/i18n/nl_BE.po index 788fbfd20cb..35289a9da3c 100644 --- a/addons/board_crm_configuration/i18n/nl_BE.po +++ b/addons/board_crm_configuration/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/nl_NL.po b/addons/board_crm_configuration/i18n/nl_NL.po index 4298e8eb514..e9a9c4be4c5 100644 --- a/addons/board_crm_configuration/i18n/nl_NL.po +++ b/addons/board_crm_configuration/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pl_PL.po b/addons/board_crm_configuration/i18n/pl_PL.po index eb5ba12f059..1b0d21aedea 100644 --- a/addons/board_crm_configuration/i18n/pl_PL.po +++ b/addons/board_crm_configuration/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pt_BR.po b/addons/board_crm_configuration/i18n/pt_BR.po index abc9e7e0f0e..b8dc96f7bf1 100644 --- a/addons/board_crm_configuration/i18n/pt_BR.po +++ b/addons/board_crm_configuration/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pt_PT.po b/addons/board_crm_configuration/i18n/pt_PT.po index e0a6589f912..4194c43ed34 100644 --- a/addons/board_crm_configuration/i18n/pt_PT.po +++ b/addons/board_crm_configuration/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ro_RO.po b/addons/board_crm_configuration/i18n/ro_RO.po index efcd7e38892..920e953a959 100644 --- a/addons/board_crm_configuration/i18n/ro_RO.po +++ b/addons/board_crm_configuration/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ru_RU.po b/addons/board_crm_configuration/i18n/ru_RU.po index 7f67e6dca21..c0242838bfc 100644 --- a/addons/board_crm_configuration/i18n/ru_RU.po +++ b/addons/board_crm_configuration/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sl_SL.po b/addons/board_crm_configuration/i18n/sl_SL.po index c1e9ec6919c..523f4c59c73 100644 --- a/addons/board_crm_configuration/i18n/sl_SL.po +++ b/addons/board_crm_configuration/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sv_SE.po b/addons/board_crm_configuration/i18n/sv_SE.po index 8c2c29d40d9..d5b178b0ea7 100644 --- a/addons/board_crm_configuration/i18n/sv_SE.po +++ b/addons/board_crm_configuration/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sv_SV.po b/addons/board_crm_configuration/i18n/sv_SV.po index 4f90e50231c..5046212897c 100644 --- a/addons/board_crm_configuration/i18n/sv_SV.po +++ b/addons/board_crm_configuration/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,6 +82,11 @@ msgstr "" msgid "Jobs Requests Of The Month by Applied Job" msgstr "" +#. module: board_crm_configuration +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_crm_configuration #: view:board.board:0 msgid "My Sales Pipeline" diff --git a/addons/board_crm_configuration/i18n/tr_TR.po b/addons/board_crm_configuration/i18n/tr_TR.po index c1323d454a2..d693d36f041 100644 --- a/addons/board_crm_configuration/i18n/tr_TR.po +++ b/addons/board_crm_configuration/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/uk_UK.po b/addons/board_crm_configuration/i18n/uk_UK.po index dd2953d5a4f..15e31bbc820 100644 --- a/addons/board_crm_configuration/i18n/uk_UK.po +++ b/addons/board_crm_configuration/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/zh_CN.po b/addons/board_crm_configuration/i18n/zh_CN.po index 211e312875c..a7eebb0f075 100644 --- a/addons/board_crm_configuration/i18n/zh_CN.po +++ b/addons/board_crm_configuration/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/zh_TW.po b/addons/board_crm_configuration/i18n/zh_TW.po index 415b0e1e897..1eeacdf6cd1 100644 --- a/addons/board_crm_configuration/i18n/zh_TW.po +++ b/addons/board_crm_configuration/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ar_AR.po b/addons/board_document/i18n/ar_AR.po index 7ddf8f37a4b..121f6189e4e 100644 --- a/addons/board_document/i18n/ar_AR.po +++ b/addons/board_document/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/bg_BG.po b/addons/board_document/i18n/bg_BG.po index 205c20d9ac3..e44827db151 100644 --- a/addons/board_document/i18n/bg_BG.po +++ b/addons/board_document/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/board_document.pot b/addons/board_document/i18n/board_document.pot index 1f99bf0ae14..064b9b858bc 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/bs_BS.po b/addons/board_document/i18n/bs_BS.po index 3efbc5d4e89..41c60a3116b 100644 --- a/addons/board_document/i18n/bs_BS.po +++ b/addons/board_document/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ca_ES.po b/addons/board_document/i18n/ca_ES.po index 8cd56e58399..d51b5676834 100644 --- a/addons/board_document/i18n/ca_ES.po +++ b/addons/board_document/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/cs_CS.po b/addons/board_document/i18n/cs_CS.po index a1a8d207dc9..c13ce68fba3 100644 --- a/addons/board_document/i18n/cs_CS.po +++ b/addons/board_document/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,8 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: board_document -#: model:ir.actions.act_window,name:board_document.open_board_document_manager1 -#: model:ir.ui.menu,name:board_document.menu_board_document_manager1 -msgid "Statistics by User" +#: view:board.board:0 +msgid "New Files" msgstr "" #. module: board_document @@ -47,14 +46,20 @@ msgstr "" msgid "Files by Month" msgstr "" +#. module: board_document +#: model:ir.actions.act_window,name:board_document.open_board_document_manager1 +#: model:ir.ui.menu,name:board_document.menu_board_document_manager1 +msgid "Statistics by User" +msgstr "" + #. module: board_document #: view:board.board:0 msgid "Files by Resource Type" msgstr "" #. module: board_document -#: view:board.board:0 -msgid "New Files" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_document diff --git a/addons/board_document/i18n/cs_CZ.po b/addons/board_document/i18n/cs_CZ.po index 64de1fba4d9..2a4ec092781 100644 --- a/addons/board_document/i18n/cs_CZ.po +++ b/addons/board_document/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/de_DE.po b/addons/board_document/i18n/de_DE.po index be43f4034f1..4d8da1afde9 100644 --- a/addons/board_document/i18n/de_DE.po +++ b/addons/board_document/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/es_AR.po b/addons/board_document/i18n/es_AR.po index 737d5821723..7386366ae0f 100644 --- a/addons/board_document/i18n/es_AR.po +++ b/addons/board_document/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/es_ES.po b/addons/board_document/i18n/es_ES.po index 0c52ca019da..ab2f8d9e46a 100644 --- a/addons/board_document/i18n/es_ES.po +++ b/addons/board_document/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/et_EE.po b/addons/board_document/i18n/et_EE.po index 292e09a52ed..29b2caa182c 100644 --- a/addons/board_document/i18n/et_EE.po +++ b/addons/board_document/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "" #. module: board_document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_document #: model:ir.module.module,shortdesc:board_document.module_meta_information diff --git a/addons/board_document/i18n/fr_FR.po b/addons/board_document/i18n/fr_FR.po index cb74be70969..ae979558d09 100644 --- a/addons/board_document/i18n/fr_FR.po +++ b/addons/board_document/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/hr_HR.po b/addons/board_document/i18n/hr_HR.po index 039b9dd3d4e..84516f6aec5 100644 --- a/addons/board_document/i18n/hr_HR.po +++ b/addons/board_document/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/hu_HU.po b/addons/board_document/i18n/hu_HU.po index 002d59324ed..f4210fe9754 100644 --- a/addons/board_document/i18n/hu_HU.po +++ b/addons/board_document/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/it_IT.po b/addons/board_document/i18n/it_IT.po index 01f26fe98e0..cc96c5d9268 100644 --- a/addons/board_document/i18n/it_IT.po +++ b/addons/board_document/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/lt_LT.po b/addons/board_document/i18n/lt_LT.po index 6988a02c173..a73b74656a7 100644 --- a/addons/board_document/i18n/lt_LT.po +++ b/addons/board_document/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/nl_BE.po b/addons/board_document/i18n/nl_BE.po index 6e23e5a7d8c..00a26ef816b 100644 --- a/addons/board_document/i18n/nl_BE.po +++ b/addons/board_document/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/nl_NL.po b/addons/board_document/i18n/nl_NL.po index 19cf0252b9b..6ceb8e4ba80 100644 --- a/addons/board_document/i18n/nl_NL.po +++ b/addons/board_document/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pl_PL.po b/addons/board_document/i18n/pl_PL.po index 4632ebf50aa..7e40e9f5987 100644 --- a/addons/board_document/i18n/pl_PL.po +++ b/addons/board_document/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pt_BR.po b/addons/board_document/i18n/pt_BR.po index a726d09ceec..e8d847b26d8 100644 --- a/addons/board_document/i18n/pt_BR.po +++ b/addons/board_document/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pt_PT.po b/addons/board_document/i18n/pt_PT.po index 8d71fe81a58..c083014daae 100644 --- a/addons/board_document/i18n/pt_PT.po +++ b/addons/board_document/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ro_RO.po b/addons/board_document/i18n/ro_RO.po index 636de1bf609..22300978a32 100644 --- a/addons/board_document/i18n/ro_RO.po +++ b/addons/board_document/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ru_RU.po b/addons/board_document/i18n/ru_RU.po index e7206ccad9b..e38644603f2 100644 --- a/addons/board_document/i18n/ru_RU.po +++ b/addons/board_document/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sl_SL.po b/addons/board_document/i18n/sl_SL.po index 8ec57b31207..a84cdea14e2 100644 --- a/addons/board_document/i18n/sl_SL.po +++ b/addons/board_document/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sv_SE.po b/addons/board_document/i18n/sv_SE.po index b59c15df114..74a62a855ca 100644 --- a/addons/board_document/i18n/sv_SE.po +++ b/addons/board_document/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sv_SV.po b/addons/board_document/i18n/sv_SV.po index 3634df39d56..c6c616541a3 100644 --- a/addons/board_document/i18n/sv_SV.po +++ b/addons/board_document/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,8 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: board_document -#: model:ir.actions.act_window,name:board_document.open_board_document_manager1 -#: model:ir.ui.menu,name:board_document.menu_board_document_manager1 -msgid "Statistics by User" +#: view:board.board:0 +msgid "New Files" msgstr "" #. module: board_document @@ -47,14 +46,20 @@ msgstr "" msgid "Files by Month" msgstr "" +#. module: board_document +#: model:ir.actions.act_window,name:board_document.open_board_document_manager1 +#: model:ir.ui.menu,name:board_document.menu_board_document_manager1 +msgid "Statistics by User" +msgstr "" + #. module: board_document #: view:board.board:0 msgid "Files by Resource Type" msgstr "" #. module: board_document -#: view:board.board:0 -msgid "New Files" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_document diff --git a/addons/board_document/i18n/tr_TR.po b/addons/board_document/i18n/tr_TR.po index 0ca9ac6f020..fb87c9f8267 100644 --- a/addons/board_document/i18n/tr_TR.po +++ b/addons/board_document/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/uk_UK.po b/addons/board_document/i18n/uk_UK.po index 89f92ba89e4..5849cdf03db 100644 --- a/addons/board_document/i18n/uk_UK.po +++ b/addons/board_document/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/zh_CN.po b/addons/board_document/i18n/zh_CN.po index 2a05a7bad40..ad85ea1f8f7 100644 --- a/addons/board_document/i18n/zh_CN.po +++ b/addons/board_document/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/zh_TW.po b/addons/board_document/i18n/zh_TW.po index 1ca9ee4a3ba..961a447d8ce 100644 --- a/addons/board_document/i18n/zh_TW.po +++ b/addons/board_document/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ar_AR.po b/addons/board_manufacturing/i18n/ar_AR.po index d3d40a2fab0..75586f06547 100644 --- a/addons/board_manufacturing/i18n/ar_AR.po +++ b/addons/board_manufacturing/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/bg_BG.po b/addons/board_manufacturing/i18n/bg_BG.po index 3a7e85fb7be..12a2f56653f 100644 --- a/addons/board_manufacturing/i18n/bg_BG.po +++ b/addons/board_manufacturing/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 1040c3841e8..41b357075f4 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/bs_BS.po b/addons/board_manufacturing/i18n/bs_BS.po index 937874002e3..acefa4eb396 100644 --- a/addons/board_manufacturing/i18n/bs_BS.po +++ b/addons/board_manufacturing/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ca_ES.po b/addons/board_manufacturing/i18n/ca_ES.po index 20f563bfc18..822c1170a84 100644 --- a/addons/board_manufacturing/i18n/ca_ES.po +++ b/addons/board_manufacturing/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/cs_CS.po b/addons/board_manufacturing/i18n/cs_CS.po index beb2cb921b3..acf90d6cc58 100644 --- a/addons/board_manufacturing/i18n/cs_CS.po +++ b/addons/board_manufacturing/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" +#. module: board_manufacturing +#: view:board.board:0 +msgid "Deliveries (Out packing)" +msgstr "" + #. module: board_manufacturing #: view:board.board:0 msgid "Manufacturing board" @@ -41,8 +46,8 @@ msgid "Production" msgstr "" #. module: board_manufacturing -#: view:board.board:0 -msgid "Deliveries (Out packing)" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_manufacturing diff --git a/addons/board_manufacturing/i18n/cs_CZ.po b/addons/board_manufacturing/i18n/cs_CZ.po index 84c7f1a9ccf..45cc78ffcc9 100644 --- a/addons/board_manufacturing/i18n/cs_CZ.po +++ b/addons/board_manufacturing/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/de_DE.po b/addons/board_manufacturing/i18n/de_DE.po index 1e1278c6e88..d2ccf8813bc 100644 --- a/addons/board_manufacturing/i18n/de_DE.po +++ b/addons/board_manufacturing/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/es_AR.po b/addons/board_manufacturing/i18n/es_AR.po index d85aa0013df..8d8323cc3ff 100644 --- a/addons/board_manufacturing/i18n/es_AR.po +++ b/addons/board_manufacturing/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/es_ES.po b/addons/board_manufacturing/i18n/es_ES.po index d0de7cd5906..565a8e540cb 100644 --- a/addons/board_manufacturing/i18n/es_ES.po +++ b/addons/board_manufacturing/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/et_EE.po b/addons/board_manufacturing/i18n/et_EE.po index 77cad48ef33..108645bc349 100644 --- a/addons/board_manufacturing/i18n/et_EE.po +++ b/addons/board_manufacturing/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Tootmine" #. module: board_manufacturing #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_manufacturing #: model:ir.actions.act_window,name:board_manufacturing.open_board_manufacturing diff --git a/addons/board_manufacturing/i18n/fr_FR.po b/addons/board_manufacturing/i18n/fr_FR.po index 88f30716a13..a6ddcc65a10 100644 --- a/addons/board_manufacturing/i18n/fr_FR.po +++ b/addons/board_manufacturing/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/hr_HR.po b/addons/board_manufacturing/i18n/hr_HR.po index 849656f8c4c..302326df221 100644 --- a/addons/board_manufacturing/i18n/hr_HR.po +++ b/addons/board_manufacturing/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/hu_HU.po b/addons/board_manufacturing/i18n/hu_HU.po index 02233522b59..e03d2422931 100644 --- a/addons/board_manufacturing/i18n/hu_HU.po +++ b/addons/board_manufacturing/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/it_IT.po b/addons/board_manufacturing/i18n/it_IT.po index 6ba019556fa..987513fe255 100644 --- a/addons/board_manufacturing/i18n/it_IT.po +++ b/addons/board_manufacturing/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/lt_LT.po b/addons/board_manufacturing/i18n/lt_LT.po index 0706306c9cd..ad89a116c74 100644 --- a/addons/board_manufacturing/i18n/lt_LT.po +++ b/addons/board_manufacturing/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/nl_BE.po b/addons/board_manufacturing/i18n/nl_BE.po index 610398b300c..257cbfefd93 100644 --- a/addons/board_manufacturing/i18n/nl_BE.po +++ b/addons/board_manufacturing/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/nl_NL.po b/addons/board_manufacturing/i18n/nl_NL.po index b5e1da4b999..32b171765a8 100644 --- a/addons/board_manufacturing/i18n/nl_NL.po +++ b/addons/board_manufacturing/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pl_PL.po b/addons/board_manufacturing/i18n/pl_PL.po index d78180129ba..3e934aac3fc 100644 --- a/addons/board_manufacturing/i18n/pl_PL.po +++ b/addons/board_manufacturing/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pt_BR.po b/addons/board_manufacturing/i18n/pt_BR.po index 739a0b971c3..9c75e8f9b5b 100644 --- a/addons/board_manufacturing/i18n/pt_BR.po +++ b/addons/board_manufacturing/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pt_PT.po b/addons/board_manufacturing/i18n/pt_PT.po index 10dbf3effc5..b47ec40dfd4 100644 --- a/addons/board_manufacturing/i18n/pt_PT.po +++ b/addons/board_manufacturing/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ro_RO.po b/addons/board_manufacturing/i18n/ro_RO.po index fac2b0b4128..5fb1a942c7e 100644 --- a/addons/board_manufacturing/i18n/ro_RO.po +++ b/addons/board_manufacturing/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ru_RU.po b/addons/board_manufacturing/i18n/ru_RU.po index 88d7b6734cf..8fb066ee185 100644 --- a/addons/board_manufacturing/i18n/ru_RU.po +++ b/addons/board_manufacturing/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sl_SL.po b/addons/board_manufacturing/i18n/sl_SL.po index 7a84fa3428e..463f872af03 100644 --- a/addons/board_manufacturing/i18n/sl_SL.po +++ b/addons/board_manufacturing/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sv_SE.po b/addons/board_manufacturing/i18n/sv_SE.po index 892041d568f..c6bc487c98c 100644 --- a/addons/board_manufacturing/i18n/sv_SE.po +++ b/addons/board_manufacturing/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sv_SV.po b/addons/board_manufacturing/i18n/sv_SV.po index be00369be25..76704720daf 100644 --- a/addons/board_manufacturing/i18n/sv_SV.po +++ b/addons/board_manufacturing/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" +#. module: board_manufacturing +#: view:board.board:0 +msgid "Deliveries (Out packing)" +msgstr "" + #. module: board_manufacturing #: view:board.board:0 msgid "Manufacturing board" @@ -41,8 +46,8 @@ msgid "Production" msgstr "Produktion" #. module: board_manufacturing -#: view:board.board:0 -msgid "Deliveries (Out packing)" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: board_manufacturing diff --git a/addons/board_manufacturing/i18n/tr_TR.po b/addons/board_manufacturing/i18n/tr_TR.po index 8b5b886e57a..570d0702bfb 100644 --- a/addons/board_manufacturing/i18n/tr_TR.po +++ b/addons/board_manufacturing/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/uk_UK.po b/addons/board_manufacturing/i18n/uk_UK.po index 69785995e65..8a7531f8809 100644 --- a/addons/board_manufacturing/i18n/uk_UK.po +++ b/addons/board_manufacturing/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/zh_CN.po b/addons/board_manufacturing/i18n/zh_CN.po index b5e0f48d6ed..7fe8dddf600 100644 --- a/addons/board_manufacturing/i18n/zh_CN.po +++ b/addons/board_manufacturing/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/zh_TW.po b/addons/board_manufacturing/i18n/zh_TW.po index 273978fda00..912e0558c9b 100644 --- a/addons/board_manufacturing/i18n/zh_TW.po +++ b/addons/board_manufacturing/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ar_AR.po b/addons/board_project/i18n/ar_AR.po index a651940b56c..1f811d5b903 100644 --- a/addons/board_project/i18n/ar_AR.po +++ b/addons/board_project/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/bg_BG.po b/addons/board_project/i18n/bg_BG.po index acb1404c1c2..51b79b1c61d 100644 --- a/addons/board_project/i18n/bg_BG.po +++ b/addons/board_project/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 afebb4ec5d4..00091e37b45 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/bs_BS.po b/addons/board_project/i18n/bs_BS.po index 823061cc601..0340d35e87f 100644 --- a/addons/board_project/i18n/bs_BS.po +++ b/addons/board_project/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ca_ES.po b/addons/board_project/i18n/ca_ES.po index 047c28ca3f4..7892ac07413 100644 --- a/addons/board_project/i18n/ca_ES.po +++ b/addons/board_project/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/cs_CS.po b/addons/board_project/i18n/cs_CS.po index 880747ee2a3..f1c656418ce 100644 --- a/addons/board_project/i18n/cs_CS.po +++ b/addons/board_project/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "Timesheets" msgstr "" +#. module: board_project +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_project #: view:board.board:0 #: model:ir.actions.act_window,name:board_project.act_my_project diff --git a/addons/board_project/i18n/cs_CZ.po b/addons/board_project/i18n/cs_CZ.po index 7a0ac3ecea6..338e3c7d396 100644 --- a/addons/board_project/i18n/cs_CZ.po +++ b/addons/board_project/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/de_DE.po b/addons/board_project/i18n/de_DE.po index 79f078b6158..af5c78aab34 100644 --- a/addons/board_project/i18n/de_DE.po +++ b/addons/board_project/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/es_AR.po b/addons/board_project/i18n/es_AR.po index e98822e7f20..1dfd8651c88 100644 --- a/addons/board_project/i18n/es_AR.po +++ b/addons/board_project/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/es_ES.po b/addons/board_project/i18n/es_ES.po index 367a23cdc8b..2cb2075f432 100644 --- a/addons/board_project/i18n/es_ES.po +++ b/addons/board_project/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/et_EE.po b/addons/board_project/i18n/et_EE.po index 017180b0935..61f2ed6c461 100644 --- a/addons/board_project/i18n/et_EE.po +++ b/addons/board_project/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Tööajalehed" #. module: board_project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_project #: view:board.board:0 @@ -115,7 +115,7 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:board_project.action_view_task_tree msgid "My Open Tasks" -msgstr "" +msgstr "Minu lahtised ülesanded" #. module: board_project #: view:board.board:0 diff --git a/addons/board_project/i18n/fr_FR.po b/addons/board_project/i18n/fr_FR.po index 47d66690837..387678e0357 100644 --- a/addons/board_project/i18n/fr_FR.po +++ b/addons/board_project/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/hr_HR.po b/addons/board_project/i18n/hr_HR.po index 5c1ffe6e3fa..663ad87bce8 100644 --- a/addons/board_project/i18n/hr_HR.po +++ b/addons/board_project/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/hu_HU.po b/addons/board_project/i18n/hu_HU.po index 844131054de..6c2822d7496 100644 --- a/addons/board_project/i18n/hu_HU.po +++ b/addons/board_project/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/it_IT.po b/addons/board_project/i18n/it_IT.po index 4a4b334a388..a1f1ce182ba 100644 --- a/addons/board_project/i18n/it_IT.po +++ b/addons/board_project/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/lt_LT.po b/addons/board_project/i18n/lt_LT.po index eedbc2355ca..fc88aca76bb 100644 --- a/addons/board_project/i18n/lt_LT.po +++ b/addons/board_project/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/nl_BE.po b/addons/board_project/i18n/nl_BE.po index c5886aab4db..5107821e67c 100644 --- a/addons/board_project/i18n/nl_BE.po +++ b/addons/board_project/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/nl_NL.po b/addons/board_project/i18n/nl_NL.po index 70411f3df92..7e294272e25 100644 --- a/addons/board_project/i18n/nl_NL.po +++ b/addons/board_project/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pl_PL.po b/addons/board_project/i18n/pl_PL.po index e8dc8c35ba1..379bd43d430 100644 --- a/addons/board_project/i18n/pl_PL.po +++ b/addons/board_project/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pt_BR.po b/addons/board_project/i18n/pt_BR.po index 274e96e8468..58654545e69 100644 --- a/addons/board_project/i18n/pt_BR.po +++ b/addons/board_project/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pt_PT.po b/addons/board_project/i18n/pt_PT.po index f75312c8f5c..db189609f7a 100644 --- a/addons/board_project/i18n/pt_PT.po +++ b/addons/board_project/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ro_RO.po b/addons/board_project/i18n/ro_RO.po index 34379a0861c..b9230b6a47c 100644 --- a/addons/board_project/i18n/ro_RO.po +++ b/addons/board_project/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ru_RU.po b/addons/board_project/i18n/ru_RU.po index 98789f69ccb..1b9109ce41f 100644 --- a/addons/board_project/i18n/ru_RU.po +++ b/addons/board_project/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sl_SL.po b/addons/board_project/i18n/sl_SL.po index 80d1602d6f8..1877258b61c 100644 --- a/addons/board_project/i18n/sl_SL.po +++ b/addons/board_project/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sv_SE.po b/addons/board_project/i18n/sv_SE.po index 4a239abe853..2ac51a6f3c4 100644 --- a/addons/board_project/i18n/sv_SE.po +++ b/addons/board_project/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sv_SV.po b/addons/board_project/i18n/sv_SV.po index f9772e1c521..33e48e7bd64 100644 --- a/addons/board_project/i18n/sv_SV.po +++ b/addons/board_project/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "Timesheets" msgstr "" +#. module: board_project +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_project #: view:board.board:0 #: model:ir.actions.act_window,name:board_project.act_my_project diff --git a/addons/board_project/i18n/tr_TR.po b/addons/board_project/i18n/tr_TR.po index d63678a0374..1162df802a5 100644 --- a/addons/board_project/i18n/tr_TR.po +++ b/addons/board_project/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/uk_UK.po b/addons/board_project/i18n/uk_UK.po index f17097c1e58..2ca4566c788 100644 --- a/addons/board_project/i18n/uk_UK.po +++ b/addons/board_project/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/zh_CN.po b/addons/board_project/i18n/zh_CN.po index eefeaa99014..0a843bf2fd0 100644 --- a/addons/board_project/i18n/zh_CN.po +++ b/addons/board_project/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/zh_TW.po b/addons/board_project/i18n/zh_TW.po index 0ec58933c0a..6c2658f52f5 100644 --- a/addons/board_project/i18n/zh_TW.po +++ b/addons/board_project/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ar_AR.po b/addons/board_sale/i18n/ar_AR.po index 46383c32cbe..ddc4bb3227e 100644 --- a/addons/board_sale/i18n/ar_AR.po +++ b/addons/board_sale/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/bg_BG.po b/addons/board_sale/i18n/bg_BG.po index 1654cb0fd26..a13906aba1c 100644 --- a/addons/board_sale/i18n/bg_BG.po +++ b/addons/board_sale/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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 91ac90499f6..a20ce15d1e2 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/bs_BS.po b/addons/board_sale/i18n/bs_BS.po index ab884c19d90..6cfd4d28f13 100644 --- a/addons/board_sale/i18n/bs_BS.po +++ b/addons/board_sale/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ca_ES.po b/addons/board_sale/i18n/ca_ES.po index 652eedad155..a08090adc04 100644 --- a/addons/board_sale/i18n/ca_ES.po +++ b/addons/board_sale/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/cs_CS.po b/addons/board_sale/i18n/cs_CS.po index 8e7d95b1816..b5931acd14c 100644 --- a/addons/board_sale/i18n/cs_CS.po +++ b/addons/board_sale/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "My open quotations" msgstr "" +#. module: board_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_sale #: model:ir.ui.menu,name:board_sale.next_id_88 msgid "Sales" diff --git a/addons/board_sale/i18n/cs_CZ.po b/addons/board_sale/i18n/cs_CZ.po index 25d425f76e6..991fe40f7a2 100644 --- a/addons/board_sale/i18n/cs_CZ.po +++ b/addons/board_sale/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/de_DE.po b/addons/board_sale/i18n/de_DE.po index 8c478a055d1..acb133db5f0 100644 --- a/addons/board_sale/i18n/de_DE.po +++ b/addons/board_sale/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/es_AR.po b/addons/board_sale/i18n/es_AR.po index 357c7ec2740..281cf1b363a 100644 --- a/addons/board_sale/i18n/es_AR.po +++ b/addons/board_sale/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/es_ES.po b/addons/board_sale/i18n/es_ES.po index 2da19b748e1..6872d643261 100644 --- a/addons/board_sale/i18n/es_ES.po +++ b/addons/board_sale/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/et_EE.po b/addons/board_sale/i18n/et_EE.po index 76aa90cbccd..fd21cf5ab01 100644 --- a/addons/board_sale/i18n/et_EE.po +++ b/addons/board_sale/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Minu avatud hinnapakkumised" #. module: board_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: board_sale #: model:ir.ui.menu,name:board_sale.next_id_88 diff --git a/addons/board_sale/i18n/fr_FR.po b/addons/board_sale/i18n/fr_FR.po index cbea2dccd99..6202b772b10 100644 --- a/addons/board_sale/i18n/fr_FR.po +++ b/addons/board_sale/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/hr_HR.po b/addons/board_sale/i18n/hr_HR.po index cd331f18f78..1bbd3cc64d3 100644 --- a/addons/board_sale/i18n/hr_HR.po +++ b/addons/board_sale/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/hu_HU.po b/addons/board_sale/i18n/hu_HU.po index a6a69ae47a0..3ce4b555565 100644 --- a/addons/board_sale/i18n/hu_HU.po +++ b/addons/board_sale/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/it_IT.po b/addons/board_sale/i18n/it_IT.po index dfef52ef5b1..8bc703b53cf 100644 --- a/addons/board_sale/i18n/it_IT.po +++ b/addons/board_sale/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/lt_LT.po b/addons/board_sale/i18n/lt_LT.po index 208ff6598ac..3a07ecb0397 100644 --- a/addons/board_sale/i18n/lt_LT.po +++ b/addons/board_sale/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/nl_BE.po b/addons/board_sale/i18n/nl_BE.po index 2728e041316..d1247efdd82 100644 --- a/addons/board_sale/i18n/nl_BE.po +++ b/addons/board_sale/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/nl_NL.po b/addons/board_sale/i18n/nl_NL.po index f5c710cf74c..68401cce342 100644 --- a/addons/board_sale/i18n/nl_NL.po +++ b/addons/board_sale/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pl_PL.po b/addons/board_sale/i18n/pl_PL.po index 14af7dc536b..51c3dbda1d5 100644 --- a/addons/board_sale/i18n/pl_PL.po +++ b/addons/board_sale/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pt_BR.po b/addons/board_sale/i18n/pt_BR.po index 4d8104306c5..ea44f55b5a0 100644 --- a/addons/board_sale/i18n/pt_BR.po +++ b/addons/board_sale/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pt_PT.po b/addons/board_sale/i18n/pt_PT.po index 2d39c8a036e..2390c42319d 100644 --- a/addons/board_sale/i18n/pt_PT.po +++ b/addons/board_sale/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ro_RO.po b/addons/board_sale/i18n/ro_RO.po index 3499ec84a77..e2c4d0f1351 100644 --- a/addons/board_sale/i18n/ro_RO.po +++ b/addons/board_sale/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ru_RU.po b/addons/board_sale/i18n/ru_RU.po index 872368099c7..b61a08e024c 100644 --- a/addons/board_sale/i18n/ru_RU.po +++ b/addons/board_sale/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sl_SL.po b/addons/board_sale/i18n/sl_SL.po index 2ba2f63ec83..48c1c13c6b6 100644 --- a/addons/board_sale/i18n/sl_SL.po +++ b/addons/board_sale/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sv_SE.po b/addons/board_sale/i18n/sv_SE.po index cd03d3e7d3d..bf36c661ce1 100644 --- a/addons/board_sale/i18n/sv_SE.po +++ b/addons/board_sale/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sv_SV.po b/addons/board_sale/i18n/sv_SV.po index 0c1f479177e..2c3e7674611 100644 --- a/addons/board_sale/i18n/sv_SV.po +++ b/addons/board_sale/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "My open quotations" msgstr "" +#. module: board_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: board_sale #: model:ir.ui.menu,name:board_sale.next_id_88 msgid "Sales" diff --git a/addons/board_sale/i18n/tr_TR.po b/addons/board_sale/i18n/tr_TR.po index e0660bfc4b0..a071c4c717b 100644 --- a/addons/board_sale/i18n/tr_TR.po +++ b/addons/board_sale/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/uk_UK.po b/addons/board_sale/i18n/uk_UK.po index f79a3b95430..4b89105e4f0 100644 --- a/addons/board_sale/i18n/uk_UK.po +++ b/addons/board_sale/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/zh_CN.po b/addons/board_sale/i18n/zh_CN.po index d42f5ae0e8c..11a5c4b9015 100644 --- a/addons/board_sale/i18n/zh_CN.po +++ b/addons/board_sale/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/zh_TW.po b/addons/board_sale/i18n/zh_TW.po index 511361a8b60..4f7a3868c5b 100644 --- a/addons/board_sale/i18n/zh_TW.po +++ b/addons/board_sale/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/ar_AR.po b/addons/crm/i18n/ar_AR.po index 84264d6c30b..a5f5365c783 100644 --- a/addons/crm/i18n/ar_AR.po +++ b/addons/crm/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/bg_BG.po b/addons/crm/i18n/bg_BG.po index 4f1be6c0667..fd488b318fe 100644 --- a/addons/crm/i18n/bg_BG.po +++ b/addons/crm/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/bs_BS.po b/addons/crm/i18n/bs_BS.po index 728894e02a5..a966ef18919 100644 --- a/addons/crm/i18n/bs_BS.po +++ b/addons/crm/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/ca_ES.po b/addons/crm/i18n/ca_ES.po index f2ed39d45fe..8b2cadd3297 100644 --- a/addons/crm/i18n/ca_ES.po +++ b/addons/crm/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Recorda empresa" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Actualitza els menús proposats per a ser creats" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Tots els oberts " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Grau de satisfacció per defecte per al període que precedeix el càlcul de 'Interval màx.'. Aquest és el grau de satisfacció inicial per defecte si la empresa no té cap esdeveniment." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "En procés" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Nota" msgid "Rule Name" msgstr "Nom de regla" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Un període és el número mig de dies entre els dos cicles de venda o compra per aquesta segmentació. Se sol utilitzar per detectar si una empresa no ha demanat o comprat durant un llarg temps, pel que suposem el grau de satisfacció ha disminuït perquè probablement compra productes a altres proveïdors. Utililtzeu aquesta funcionalitat per a negocis recurrents." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -705,6 +700,11 @@ msgstr "Comunicació" msgid "Max Partner ID processed" msgstr "Màx ID d'empresa processat" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -774,6 +774,18 @@ msgstr "Dies per període" msgid "Calendar" msgstr "Calendari" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -785,9 +797,9 @@ msgid "Reference 2" msgstr "Referència 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatori / Opcional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Compra vendes" #. module: crm #: field:crm.case,categ_id:0 @@ -935,9 +947,10 @@ msgid "Status" msgstr "Estat" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Recorda responsable" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -949,6 +962,11 @@ msgstr "Fixa secció a" msgid "Execution Status" msgstr "Estat execució" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -1011,9 +1029,10 @@ msgid "Active" msgstr "Actiu" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menús creats" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Tots els no assignats " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1111,10 +1130,9 @@ msgid "Date" msgstr "Data" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Tots els no assignats " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menús creats" #. module: crm #: field:crm.case.log,name:0 @@ -1136,6 +1154,12 @@ msgstr "Disminueix (0>1)" msgid "Partner Segmentation Lines" msgstr "Línies de segmentació d'empresa" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1152,6 +1176,11 @@ msgstr "Contacte empresa" msgid "All Unclosed " msgstr "Tots els no tancats " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Vista d'arbre" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1224,9 +1253,9 @@ msgid "Open" msgstr "Obert" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Vista d'arbre" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Recorda responsable" #. module: crm #: view:crm.case.rule:0 @@ -1312,6 +1341,11 @@ msgstr "Descripció" msgid "open" msgstr "obert" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1348,9 +1382,9 @@ msgid "Segmentations" msgstr "Segmentacions" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "En procés" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1368,6 +1402,11 @@ msgstr "L'adreça de correu electrònic que es posarà a 'Respondre A' a tots el msgid "Case Rule" msgstr "Regla del cas" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1568,9 +1607,9 @@ msgid "Conditions on States" msgstr "Condicions sobre els estats" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Compra vendes" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Actualitza els menús proposats per a ser creats" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/crm.pot b/addons/crm/i18n/crm.pot index e5ff1591519..9c3971a8fdb 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/cs_CS.po b/addons/crm/i18n/cs_CS.po index 314313ebb22..0f834c5b800 100644 --- a/addons/crm/i18n/cs_CS.po +++ b/addons/crm/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -44,13 +44,13 @@ msgid "All Cases" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_partner:0 -msgid "Remind Partner" +#: wizard_view:crm.case.section.menu,init:0 +msgid "this wizard will create all sub-menus, within the selected menu." msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" +#: field:crm.case.rule,act_remind_partner:0 +msgid "Remind Partner" msgstr "" #. module: crm @@ -64,6 +64,11 @@ msgstr "" msgid "Partner Category" msgstr "" +#. module: crm +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm #: field:crm.segmentation,sales_purchase_active:0 msgid "Use The Sales Purchase Rules" @@ -80,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -132,6 +142,11 @@ msgstr "" msgid "%(case_user)s = Responsible name" msgstr "" +#. module: crm +#: field:crm.case.section,allow_unlink:0 +msgid "Allow Delete" +msgstr "" + #. module: crm #: field:crm.case.rule,act_email_cc:0 msgid "Add watchers (Cc)" @@ -258,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -494,8 +504,8 @@ msgid "Fields to Change" msgstr "" #. module: crm -#: selection:crm.case.rule,trg_date_type:0 -msgid "Creation Date" +#: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main +msgid "Cases Histories" msgstr "" #. module: crm @@ -671,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -740,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -751,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -890,14 +917,20 @@ msgstr "" msgid "Pending" msgstr "" +#. module: crm +#: wizard_view:crm.case.section.menu,init:0 +msgid "You may want to create a new parent menu to put all the created menus in." +msgstr "" + #. module: crm #: field:crm.case,state:0 msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -910,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -972,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1029,8 +1068,8 @@ msgid "%(case_id)s = Case ID" msgstr "" #. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Months" +#: selection:crm.case.rule,trg_date_type:0 +msgid "Creation Date" msgstr "" #. module: crm @@ -1072,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1097,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1113,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1185,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1273,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1309,14 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree -#: model:ir.ui.menu,name:crm.menu_crm_case_section_act_tree -msgid "Cases by section" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1335,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1349,6 +1402,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: crm +#: selection:crm.case.rule,trg_date_range_type:0 +msgid "Months" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "Conditions on Priority Range" @@ -1417,6 +1475,11 @@ msgstr "" msgid "All Histories" msgstr "" +#. module: crm +#: help:crm.case.section,allow_unlink:0 +msgid "Allows to delete non draft cases" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu4:0 #: wizard_field:crm.case.section.menu,design_menu,menu4_option:0 @@ -1503,8 +1566,9 @@ msgid "Control Variable" msgstr "" #. module: crm -#: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main -msgid "Cases Histories" +#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree +#: model:ir.ui.menu,name:crm.menu_crm_case_section_act_tree +msgid "Cases by section" msgstr "" #. module: crm @@ -1524,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/cs_CZ.po b/addons/crm/i18n/cs_CZ.po index 9c161ec4126..64712431a66 100644 --- a/addons/crm/i18n/cs_CZ.po +++ b/addons/crm/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/de_DE.po b/addons/crm/i18n/de_DE.po index 08ba0c7d8a7..d256743b3f8 100644 --- a/addons/crm/i18n/de_DE.po +++ b/addons/crm/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Erinnere Partner" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Update des anzulegenden Menüvorschlags" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Alle offenen Verkaufschancen & Interessenten " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Standard Kundenzufriedenheit verändert sich durch die Max Interval Berechnung. Dieses ist die Standard Eingruppierung der Kundenzufriedenheit." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "In Weiterbearbeitung" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Bemerkung" msgid "Rule Name" msgstr "Regel Bezeichnung" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Eine Periode ist die durchschnittliche Anzahl an Tagen zwischen zwei Zyklen für diese Segmentierung. Hauptsächlich wird dieses genutzt zur Erkennung ob ein Partner Umsatz lange nicht mehr statt gefunden hat, woraufhin sein Zufriedenheitsstatus nach unten gegangen ist, weil er den Umsatz mit einem anderen Anbieter getätigt hat. Benutze dieses Vorgehen für eine Kundenreaktivierung." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -703,6 +698,11 @@ msgstr "Betreffzeile" msgid "Max Partner ID processed" msgstr "Max Partner ID verarbeitet" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -772,6 +772,18 @@ msgstr "Anzahl Tage pro Periode" msgid "Calendar" msgstr "Kalenderansicht" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -783,9 +795,9 @@ msgid "Reference 2" msgstr "Ref. 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Verbindlich / Optional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Verkauf, Einkauf" #. module: crm #: field:crm.case,categ_id:0 @@ -933,9 +945,10 @@ msgid "Status" msgstr "Status" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Verantwortlichen Erinnern" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -947,6 +960,11 @@ msgstr "Setze Sektion auf" msgid "Execution Status" msgstr "Status Durchführung" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -1009,9 +1027,10 @@ msgid "Active" msgstr "Aktiv" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Erzeugtes Menü" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Alle Fälle (Nicht Zugewiesen) " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1109,10 +1128,9 @@ msgid "Date" msgstr "Datum" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Alle Fälle (Nicht Zugewiesen) " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Erzeugtes Menü" #. module: crm #: field:crm.case.log,name:0 @@ -1134,6 +1152,12 @@ msgstr "Abschlagsfaktor (0.0 > 1.0)" msgid "Partner Segmentation Lines" msgstr "Partner Segmentierung Positionen" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1150,6 +1174,11 @@ msgstr "Partnerkontakt" msgid "All Unclosed " msgstr "Alle Fälle (nicht Beendet) " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Baumansicht" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1222,9 +1251,9 @@ msgid "Open" msgstr "Offen" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Baumansicht" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Verantwortlichen Erinnern" #. module: crm #: view:crm.case.rule:0 @@ -1310,6 +1339,11 @@ msgstr "Beschreibung" msgid "open" msgstr "offen" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1346,9 +1380,9 @@ msgid "Segmentations" msgstr "Segmentierung" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "In Weiterbearbeitung" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1366,6 +1400,11 @@ msgstr "Die EMail Adresse, die als \"Antworten an\" (Reply-To) in alle Emails ei msgid "Case Rule" msgstr "Fall Regel" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1566,9 +1605,9 @@ msgid "Conditions on States" msgstr "Bedingungen nach Status" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Verkauf, Einkauf" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Update des anzulegenden Menüvorschlags" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index 3c373298c82..d46a6fee10e 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "En ejecución" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Historial del Caso" msgid "Max Partner ID processed" msgstr "Límite de IDs de Partners procesadas" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Días por período" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatoria / Opcional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "Activo" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "Fecha" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "Disminución (0>1)" msgid "Partner Segmentation Lines" msgstr "Líneas de Segmentación de Partners" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "Descripción" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "En ejecución" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/es_ES.po b/addons/crm/i18n/es_ES.po index 350af11c6e5..4070ef2aee8 100644 --- a/addons/crm/i18n/es_ES.po +++ b/addons/crm/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Recordar empresa" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Actualizar los menús propuestos a crear" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Todos los abiertos " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Grado de satisfacción por defecto para el período que precede el cálculo de 'Intervalo máx.'. Este es el grado de satisfacción inicial por defecto si la empresa no tiene ningún evento." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "En proceso" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Nota" msgid "Rule Name" msgstr "Nombre de regla" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Un período es el número medio de días entre los dos ciclos de venta o compra para esta segmentación. Se suele usar para detectar si una empresa no ha pedido o comprado durante un largo tiempo, por lo que suponemos el grado de satisfacción ha descendido porque probablemente compra productos a otros proveedores. Utilice esta funcionalidad para negocios recurrentes." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -706,6 +701,11 @@ msgstr "Comunicación" msgid "Max Partner ID processed" msgstr "Máx ID de empresa procesado" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -775,6 +775,18 @@ msgstr "Días por período" msgid "Calendar" msgstr "Calendario" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -786,9 +798,9 @@ msgid "Reference 2" msgstr "Referencia 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatorio / Opcional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Compra Ventas" #. module: crm #: field:crm.case,categ_id:0 @@ -936,9 +948,10 @@ msgid "Status" msgstr "Posición" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Recordar responsable" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -950,6 +963,11 @@ msgstr "Establecer sección a" msgid "Execution Status" msgstr "Estado ejecución" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -1012,9 +1030,10 @@ msgid "Active" msgstr "Activo" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menús creados" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Todos los no asignados " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1112,10 +1131,9 @@ msgid "Date" msgstr "Fecha" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Todos los no asignados " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menús creados" #. module: crm #: field:crm.case.log,name:0 @@ -1137,6 +1155,12 @@ msgstr "Disminuir (0>1)" msgid "Partner Segmentation Lines" msgstr "Líneas de segmentación de empresa" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1153,6 +1177,11 @@ msgstr "Contacto empresa" msgid "All Unclosed " msgstr "Todos los no cerrados " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Vista de árbol" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1225,9 +1254,9 @@ msgid "Open" msgstr "Abierto" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Vista de árbol" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Recordar responsable" #. module: crm #: view:crm.case.rule:0 @@ -1313,6 +1342,11 @@ msgstr "Descripción" msgid "open" msgstr "abierto" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1349,9 +1383,9 @@ msgid "Segmentations" msgstr "Segmentaciones" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "En proceso" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1369,6 +1403,11 @@ msgstr "La dirección de correo electrónico que se pondrá en 'Responder A' en msgid "Case Rule" msgstr "Regla del caso" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1569,9 +1608,9 @@ msgid "Conditions on States" msgstr "Condiciones sobre los estados" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Compra Ventas" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Actualizar los menús propuestos a crear" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/et_EE.po b/addons/crm/i18n/et_EE.po index b0306449309..1f379244c45 100644 --- a/addons/crm/i18n/et_EE.po +++ b/addons/crm/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Uuenda Väljapakutud Menüüd Loomiseks" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -67,12 +62,12 @@ msgstr "" #: field:crm.case.rule,trg_partner_categ_id:0 #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Partneri Kategooria" +msgstr "Partneri kategooria" #. module: crm #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: crm #: field:crm.segmentation,sales_purchase_active:0 @@ -90,6 +85,11 @@ msgstr "Kõik Avatud " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Märkus" msgid "Rule Name" msgstr "Reegel Nimi" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Suhtlus" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Päevi Perioodis" msgid "Calendar" msgstr "Kalender" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "Viide 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "Staatus" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "Sea jaotis" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,9 +1010,10 @@ msgid "Active" msgstr "Aktiivne" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Loodud menüüd" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "" #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1092,10 +1111,9 @@ msgid "Date" msgstr "Kuupäev" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Loodud menüüd" #. module: crm #: field:crm.case.log,name:0 @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "Partneri Segmenteerimise Read" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Partneri Kontakt" msgid "All Unclosed " msgstr "Kõik Sulgematta " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "Ava" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "Kirjeldus" msgid "open" msgstr "ava" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "Segmenteerimised" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "Juhtumi Reegel" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,9 +1588,9 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Uuenda Väljapakutud Menüüd Loomiseks" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/fr_FR.po b/addons/crm/i18n/fr_FR.po index 42590c2d171..b60689f8a73 100644 --- a/addons/crm/i18n/fr_FR.po +++ b/addons/crm/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Rappeler le partenaire" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Mettre à jour les Menus Proposés pour qu'ils soient créés" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Tous les ouverts " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Etat d'esprit par défaut pour la période précédent le calcul de l'intervale maximale. C'est l'état d'esprit par défaut si le partenaire n'a pas d'évenement." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "En cours" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Note" msgid "Rule Name" msgstr "Nom de la règle" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Une période est le nombre de jours moyens entre deux cycles de vente ou d'achat pour cette segmentation. Elle est principalement utilisée pour vérifier si un partenaire n'a pas acheté ou vendu pour une période de temps trop longue, ainsi, nous supposons que son état d'esprit a changé parce qu'il a probablement acheté des biens chez un autre fournisseur. Utilisez cette fonctionalité pour les affaires récurentes." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Historique des cas" msgid "Max Partner ID processed" msgstr "Max ID partenaire traité" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Nb de jours par période" msgid "Calendar" msgstr "Calendrier" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "Référence 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatoire / Facultatif" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Ventes Achats" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "État" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Rappeler le responsable" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "Mettre la section à" msgid "Execution Status" msgstr "Statut d'exécution" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,9 +1010,10 @@ msgid "Active" msgstr "Actif" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menus Créés" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Tous les non assignés " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1092,10 +1111,9 @@ msgid "Date" msgstr "Date" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Tous les non assignés " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menus Créés" #. module: crm #: field:crm.case.log,name:0 @@ -1117,6 +1135,12 @@ msgstr "Fact. décrois. (0.0>1.0)" msgid "Partner Segmentation Lines" msgstr "Lignes de segmentation" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Contact partenaire" msgid "All Unclosed " msgstr "Tous les non fermés " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Vue en arbre" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "Ouvrir" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Vue en arbre" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Rappeler le responsable" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "Description" msgid "open" msgstr "ouvrir" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "Segmentations" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "En cours" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "Règle du cas" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,9 +1588,9 @@ msgid "Conditions on States" msgstr "Condition sur les états" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Ventes Achats" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Mettre à jour les Menus Proposés pour qu'ils soient créés" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/hr_HR.po b/addons/crm/i18n/hr_HR.po index 9ef3583ab6d..5ca1c5f9b08 100644 --- a/addons/crm/i18n/hr_HR.po +++ b/addons/crm/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/hu_HU.po b/addons/crm/i18n/hu_HU.po index 5fc788d8ef7..ed1abec1c47 100644 --- a/addons/crm/i18n/hu_HU.po +++ b/addons/crm/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Esettanulságok" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "Aktív" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "Dátum" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/it_IT.po b/addons/crm/i18n/it_IT.po index d73c2a48416..6ff7f841384 100644 --- a/addons/crm/i18n/it_IT.po +++ b/addons/crm/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Ricorda Partner" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Aggiorna i Menu proposti per la creazione" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Tutte Aperte " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Impressione predefinita per il periodo precedente al calcolo di Massimo Intervallo. Questa è l'impressione iniziale predefinita nel caso in cui il Partner non fosse titolare di Eventi" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "In esecuzione" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Note" msgid "Rule Name" msgstr "Nome Regola" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Un periodo è il numero medio di giorni tra due cicli di vendita o acquisto per questa segmentazione. Viene utilizzato soprattutto per verificare se il partner non ha acquistato per un lungo periodo. Così pensiamo che le sue impressioni nei nostri confronti siano peggiorate poichè probabilmente acquista beni da un altro fornitore. Utilizza questa funzionalità per ripristinare opportunità di affari" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -701,6 +696,11 @@ msgstr "Comunicazione" msgid "Max Partner ID processed" msgstr "Numero massimo di ID Partner processati" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -770,6 +770,18 @@ msgstr "Giorni per Periodo" msgid "Calendar" msgstr "Calendario" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -781,9 +793,9 @@ msgid "Reference 2" msgstr "Riferimento 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obbigatorio / Opzionale" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Vendite Acquisti" #. module: crm #: field:crm.case,categ_id:0 @@ -931,9 +943,10 @@ msgid "Status" msgstr "Stato" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Promemoria Responsabile" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -945,6 +958,11 @@ msgstr "Imposta Sezione" msgid "Execution Status" msgstr "Stato esecuzione" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -1007,9 +1025,10 @@ msgid "Active" msgstr "Attivo" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menu Creati" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Non Assegnati - Tutti i " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1107,10 +1126,9 @@ msgid "Date" msgstr "Data" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Non Assegnati - Tutti i " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menu Creati" #. module: crm #: field:crm.case.log,name:0 @@ -1132,6 +1150,12 @@ msgstr "Diminuisci (0>1)" msgid "Partner Segmentation Lines" msgstr "Righe Segmentazione Partner" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1148,6 +1172,11 @@ msgstr "Contatto Partner" msgid "All Unclosed " msgstr "Non Chiusi - Tutti i " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Vista Struttura" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1220,9 +1249,9 @@ msgid "Open" msgstr "Apri" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Vista Struttura" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Promemoria Responsabile" #. module: crm #: view:crm.case.rule:0 @@ -1308,6 +1337,11 @@ msgstr "Descrizione" msgid "open" msgstr "Apri" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1344,9 +1378,9 @@ msgid "Segmentations" msgstr "Segmentazioni" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "In esecuzione" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1364,6 +1398,11 @@ msgstr "L'indirizzo email inserito in 'Rispondi a ' di tutte le email spedite da msgid "Case Rule" msgstr "Regola Caso" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1564,9 +1603,9 @@ msgid "Conditions on States" msgstr "Condizioni sugli stati" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Vendite Acquisti" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Aggiorna i Menu proposti per la creazione" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/lt_LT.po b/addons/crm/i18n/lt_LT.po index f14ea79ff1d..b2922909ff2 100644 --- a/addons/crm/i18n/lt_LT.po +++ b/addons/crm/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Pastaba" msgid "Rule Name" msgstr "Taisyklės pavadinimas" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index f09f2a095be..344164e8722 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/nl_NL.po b/addons/crm/i18n/nl_NL.po index 8e0fcfcd4db..ef4b480abc9 100644 --- a/addons/crm/i18n/nl_NL.po +++ b/addons/crm/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Relatie herinneren" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Maak de voorgestelde menus aan" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Alle Openstaande " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Standaard humeur voor de periode die 'voorafgaat aan 'Maximum Interval' berekening. Dit is de beginwaarde van het humeur omdat er nog geen gebeurtenissen hebben plaatsgevonden." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "Running" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Opmerking" msgid "Rule Name" msgstr "Regelnaam" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Een periode is het gemiddelde aantal dagen tussen; de verkoop of aankoop van deze onderverdeling. Het wordt vooral gebruikt voor het signaleren wanneer een relatie niet heeft gekocht voor een te lange periode, dus wordt er veronderstelt dat zijn humeur is afgenomen omdat hij waarschijnlijk voor het kopen van goederen naar een andere leverancier is overgestapt. Gebruik deze functionnality voor terugkerende opdrachten." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -693,6 +688,11 @@ msgstr "Zaak Historie" msgid "Max Partner ID processed" msgstr "Max Relatie ID Bereikt" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -762,6 +762,18 @@ msgstr "Dagen per Periode" msgid "Calendar" msgstr "Agenda" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -773,9 +785,9 @@ msgid "Reference 2" msgstr "Referentie 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Verplicht/Optioneel" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Verkoop Inkoop" #. module: crm #: field:crm.case,categ_id:0 @@ -923,9 +935,10 @@ msgid "Status" msgstr "Status" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Herinner Verantwoordelijke" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -937,6 +950,11 @@ msgstr "Stel sectie in op" msgid "Execution Status" msgstr "Uitvoeringsstatus" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -999,9 +1017,10 @@ msgid "Active" msgstr "Actief" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Aangemaakte Menu's" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Alle Niet-toegewezen " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1099,10 +1118,9 @@ msgid "Date" msgstr "Datum" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Alle Niet-toegewezen " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Aangemaakte Menu's" #. module: crm #: field:crm.case.log,name:0 @@ -1124,6 +1142,12 @@ msgstr "Verminder (0>1)" msgid "Partner Segmentation Lines" msgstr "Partner Verdeelregels" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1140,6 +1164,11 @@ msgstr "Contactpersoon" msgid "All Unclosed " msgstr "Alle Openstaande " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Boomstructuur Weergave" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1212,9 +1241,9 @@ msgid "Open" msgstr "Openen" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Boomstructuur Weergave" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Herinner Verantwoordelijke" #. module: crm #: view:crm.case.rule:0 @@ -1300,6 +1329,11 @@ msgstr "Omschrijving" msgid "open" msgstr "openen" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1336,9 +1370,9 @@ msgid "Segmentations" msgstr "Onderverdelingen" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1356,6 +1390,11 @@ msgstr "Het email adres voor in het 'Antwoorden-Aan' veld van alle emails die ve msgid "Case Rule" msgstr "Dossier Regel" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1556,9 +1595,9 @@ msgid "Conditions on States" msgstr "Condities en statuscodes" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Verkoop Inkoop" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Maak de voorgestelde menus aan" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/pl_PL.po b/addons/crm/i18n/pl_PL.po index 35893eabf98..082cb44fd0a 100644 --- a/addons/crm/i18n/pl_PL.po +++ b/addons/crm/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "Nazwa reguły" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 52f88bf6384..74ef83d1f7a 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Relembre Parceiro" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Atualizar os menus propostos para serem criados" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Tudo aberto " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Estado emocional padrao para o período que antecede o 'Intervalo Máximo computacional. Este é o estado emocional padrão se o parceiro não tem nenhum evento." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "Executando" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Anotação" msgid "Rule Name" msgstr "Nome da Regra" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Um período é o número médio de dias entre o ciclo duas vendas ou da compras para esta segmentação. É usado principalmente para detectar se um parceiro não comprou ou compra por um tempo demasiado longo, assim supomos que seu estado de ânimo diminuiu porque comprou provavelmente bens de um outro fornecedor. Use este functionnality para negócios de recorrentes." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Comunicação" msgid "Max Partner ID processed" msgstr "ID do maior parceiro processado" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Dias por Período" msgid "Calendar" msgstr "Calendário" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "Referência 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obrigatório / Opcional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Propostas de vendas" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "Situação" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Lembrar o responsável" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "Definir seção para" msgid "Execution Status" msgstr "Estado da execução" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,9 +1010,10 @@ msgid "Active" msgstr "Ativo" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menus criados" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Tudo não atribuído " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1092,10 +1111,9 @@ msgid "Date" msgstr "Data" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Tudo não atribuído " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menus criados" #. module: crm #: field:crm.case.log,name:0 @@ -1117,6 +1135,12 @@ msgstr "Diminuir (0>1)" msgid "Partner Segmentation Lines" msgstr "Linhas da segmentação de parceiro" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Contato do Parceiro" msgid "All Unclosed " msgstr "Tudo aberto " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Visão em Árvore" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "Abrir" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Visão em Árvore" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Lembrar o responsável" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "Descrição" msgid "open" msgstr "Abrir" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "Segmentações" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "Executando" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "Regra do caso" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,9 +1588,9 @@ msgid "Conditions on States" msgstr "Condições em estados" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Propostas de vendas" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Atualizar os menus propostos para serem criados" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/pt_PT.po b/addons/crm/i18n/pt_PT.po index c14bec77dc1..3fbb35691cd 100644 --- a/addons/crm/i18n/pt_PT.po +++ b/addons/crm/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "Lebrar terceiro" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "Actualizar os menus propostos para serem criados" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "Todos abertos " msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Estado da mente pré-definido para o período precedente ao cálculo do \"Intervalo Máximo\". Este é o estado inicial pré-definido se o terceiro não tiver evento." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "Em execução" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "Nota" msgid "Rule Name" msgstr "Nome da regra" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Um período é o número médio de dias entre dois cíclos de compra ou venda para esta segmentação. É utilizado principalmente para detectar se um terceiro não adquiriu ou comprou por muito tempo, por isso supõe-se que este estado de mente diminuiu porque ele provavelmente comprou bens a outro fornecedor. Esta funcionalidade deve ser utilizada para negócios recorrentes." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Comunicação" msgid "Max Partner ID processed" msgstr "ID máximo de terceiros processados" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Dias por período" msgid "Calendar" msgstr "Calendário" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "Referência 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obrigatório / Opcional" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "Vendas adquiridas" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "Estados" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Lembrar o responsável" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "Definir secção para" msgid "Execution Status" msgstr "Status de execução" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,9 +1010,10 @@ msgid "Active" msgstr "Activo" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Menus criados" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Todos sem registos " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1092,10 +1111,9 @@ msgid "Date" msgstr "Data" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Todos sem registos " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Menus criados" #. module: crm #: field:crm.case.log,name:0 @@ -1117,6 +1135,12 @@ msgstr "Decrease (0>1)" msgid "Partner Segmentation Lines" msgstr "Linhas de segmentação do terceiro" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Contacto do terceiro" msgid "All Unclosed " msgstr "Todos não fechados " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "Vista em Árvore" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "Abrir" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "Vista em Árvore" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Lembrar o responsável" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "Descrição" msgid "open" msgstr "abrir" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "Segmentações" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "Em execução" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "Regra do processo" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,9 +1588,9 @@ msgid "Conditions on States" msgstr "Condições em estados" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Vendas adquiridas" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" +msgstr "Actualizar os menus propostos para serem criados" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/ro_RO.po b/addons/crm/i18n/ro_RO.po index daf67c3bcf6..de320db0b0d 100644 --- a/addons/crm/i18n/ro_RO.po +++ b/addons/crm/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Istoric de incidente" msgid "Max Partner ID processed" msgstr "Max ID partener procesat" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Nr. de zile per perioada" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatoire / Facultativ" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "Activ" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "Data" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "Factor de descrestere (0.0>1.0)" msgid "Partner Segmentation Lines" msgstr "Linii de segmentare" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "Descriere" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/ru_RU.po b/addons/crm/i18n/ru_RU.po index 4a076ff86ff..072cdb5a03f 100644 --- a/addons/crm/i18n/ru_RU.po +++ b/addons/crm/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "Выполняется" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "Название правила" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Дней в периоде" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "Ссылка 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Обязательный / необязательный" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "Статус" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Напомнить отвественному" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "Установить раздел в" msgid "Execution Status" msgstr "Статус выполнения" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,9 +1010,10 @@ msgid "Active" msgstr "Активен" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "Созданные меню" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " +msgstr "Все неназначенные " #. module: crm #: help:crm.case.rule,act_remind_attach:0 @@ -1092,10 +1111,9 @@ msgid "Date" msgstr "Дата" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "Все неназначенные " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" +msgstr "Созданные меню" #. module: crm #: field:crm.case.log,name:0 @@ -1117,6 +1135,12 @@ msgstr "Уменьшить (0>1)" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Контакт партнера" msgid "All Unclosed " msgstr "Все незакрытые " +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "Открыть" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Напомнить отвественному" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "Описание" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "Классификации" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "Выполняется" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/sl_SL.po b/addons/crm/i18n/sl_SL.po index 494cbc18d84..0dc7caa5503 100644 --- a/addons/crm/i18n/sl_SL.po +++ b/addons/crm/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/sv_SE.po b/addons/crm/i18n/sv_SE.po index 8ea80263515..d9f5c47e838 100644 --- a/addons/crm/i18n/sv_SE.po +++ b/addons/crm/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatorisk / Valfri" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "Aktiv" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "Datum" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "Beskrivning" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/sv_SV.po b/addons/crm/i18n/sv_SV.po index cf1d1c4afd7..4929fb44538 100644 --- a/addons/crm/i18n/sv_SV.po +++ b/addons/crm/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -44,13 +44,13 @@ msgid "All Cases" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_partner:0 -msgid "Remind Partner" +#: wizard_view:crm.case.section.menu,init:0 +msgid "this wizard will create all sub-menus, within the selected menu." msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" +#: field:crm.case.rule,act_remind_partner:0 +msgid "Remind Partner" msgstr "" #. module: crm @@ -64,6 +64,11 @@ msgstr "" msgid "Partner Category" msgstr "" +#. module: crm +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm #: field:crm.segmentation,sales_purchase_active:0 msgid "Use The Sales Purchase Rules" @@ -80,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -132,6 +142,11 @@ msgstr "" msgid "%(case_user)s = Responsible name" msgstr "" +#. module: crm +#: field:crm.case.section,allow_unlink:0 +msgid "Allow Delete" +msgstr "" + #. module: crm #: field:crm.case.rule,act_email_cc:0 msgid "Add watchers (Cc)" @@ -258,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -494,8 +504,8 @@ msgid "Fields to Change" msgstr "" #. module: crm -#: selection:crm.case.rule,trg_date_type:0 -msgid "Creation Date" +#: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main +msgid "Cases Histories" msgstr "" #. module: crm @@ -671,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -740,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -751,9 +778,9 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Obligatorisk / Valfri" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -890,14 +917,20 @@ msgstr "" msgid "Pending" msgstr "" +#. module: crm +#: wizard_view:crm.case.section.menu,init:0 +msgid "You may want to create a new parent menu to put all the created menus in." +msgstr "" + #. module: crm #: field:crm.case,state:0 msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -910,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -972,8 +1010,9 @@ msgid "Active" msgstr "Aktiv" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1029,8 +1068,8 @@ msgid "%(case_id)s = Case ID" msgstr "" #. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Months" +#: selection:crm.case.rule,trg_date_type:0 +msgid "Creation Date" msgstr "" #. module: crm @@ -1072,9 +1111,8 @@ msgid "Date" msgstr "Datum" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1097,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1113,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1185,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1273,6 +1322,11 @@ msgstr "Beskrivning" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1309,14 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree -#: model:ir.ui.menu,name:crm.menu_crm_case_section_act_tree -msgid "Cases by section" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1335,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1349,6 +1402,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: crm +#: selection:crm.case.rule,trg_date_range_type:0 +msgid "Months" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "Conditions on Priority Range" @@ -1417,6 +1475,11 @@ msgstr "" msgid "All Histories" msgstr "" +#. module: crm +#: help:crm.case.section,allow_unlink:0 +msgid "Allows to delete non draft cases" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu4:0 #: wizard_field:crm.case.section.menu,design_menu,menu4_option:0 @@ -1503,8 +1566,9 @@ msgid "Control Variable" msgstr "" #. module: crm -#: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main -msgid "Cases Histories" +#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree +#: model:ir.ui.menu,name:crm.menu_crm_case_section_act_tree +msgid "Cases by section" msgstr "" #. module: crm @@ -1524,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/tr_TR.po b/addons/crm/i18n/tr_TR.po index 5213e73fc1b..e9071e7c570 100644 --- a/addons/crm/i18n/tr_TR.po +++ b/addons/crm/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "" msgid "Max Partner ID processed" msgstr "" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,8 +778,8 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" +#: view:crm.segmentation:0 +msgid "Sales Purchase" msgstr "" #. module: crm @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "" msgid "Partner Segmentation Lines" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/uk_UK.po b/addons/crm/i18n/uk_UK.po index 16db5db3994..13edb71f272 100644 --- a/addons/crm/i18n/uk_UK.po +++ b/addons/crm/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "Типовий стан настрою для періоду перед розрахунком 'Макс. інтервал'. Це початковий типовий стан настрою, якщо в партнера немає подій." +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "Діючий" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "Назва правила" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "Період - це середня кількість днів між двома циклами продажу чи придбання для цієї сегментації. Головним чином це використовується для виявлення того, що партнер довгий час нічого не продавав і не купував. Тому ми вважаємо, що його стан настрою зменшено, тому що він, ймовірно, купував товари в іншого постачальника. Використовуйте цю функцію для повернення партнерів." - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "Зв'язок" msgid "Max Partner ID processed" msgstr "Оброблено макс. ІД партнера" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "Днів у періоді" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "Зв'язок 2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "Обов'язковий / Додатковий" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "Нагадати відп-ному" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "Секція" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "Активний" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "Дата" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "Зменшити (0>1)" msgid "Partner Segmentation Lines" msgstr "Рядки сегментації партнерів" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "Контакт партнера" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "Відкритий" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "Нагадати відп-ному" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "Опис" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "Сегментації" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "Діючий" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "Правило випадку" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index 55dd2babc70..a67f09ca760 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "运行中" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "规则名称" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "该期间表示在此分类内采购或销售的间隔的平均天数。主要用于检测一个业务伙伴是否在较长的期间内没有采购或销售行为,从而有可能由于对公司的满意度下降而向第三方采购或销售。该功能用于跟踪维护重复发生的业务。" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "交互联络" msgid "Max Partner ID processed" msgstr "已处理最大伙伴ID" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "计算间隔天数" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "参考2" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "强制的/可选的" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,9 +928,10 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "提醒负责人" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" #. module: crm #: field:crm.case.rule,act_section_id:0 @@ -930,6 +943,11 @@ msgstr "设置属性为" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "有效" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "日期" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "下降因子(0.0>1.0)" msgid "Partner Segmentation Lines" msgstr "业务伙伴分类明细" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "业务伙伴联系人" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,9 +1234,9 @@ msgid "Open" msgstr "未结" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" +msgstr "提醒负责人" #. module: crm #: view:crm.case.rule:0 @@ -1293,6 +1322,11 @@ msgstr "说明" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,9 +1363,9 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "运行中" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "事务规则" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index 4458a0b6a77..088ab8f8820 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,11 +53,6 @@ msgstr "" msgid "Remind Partner" msgstr "" -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" @@ -90,6 +85,11 @@ msgstr "" msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." msgstr "" +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + #. module: crm #: field:crm.case.history,email:0 msgid "Email" @@ -273,11 +273,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - #. module: crm #: help:crm.case.rule,act_remind_partner:0 msgid "Check this if you want the rule to send a reminder by email to the partner." @@ -686,6 +681,11 @@ msgstr "个案历史" msgid "Max Partner ID processed" msgstr "已处理最大伙伴ID" +#. module: crm +#: view:crm.case.rule:0 +msgid "Condition on Communication History" +msgstr "" + #. module: crm #: view:crm.case.rule:0 msgid "%(email_from)s = Partner email" @@ -755,6 +755,18 @@ msgstr "期间日编号" msgid "Calendar" msgstr "" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address or missing reply address in section!" +msgstr "" + #. module: crm #: field:crm.case,ref:0 msgid "Reference" @@ -766,9 +778,9 @@ msgid "Reference 2" msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "强制的/可选的" +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: field:crm.case,categ_id:0 @@ -916,8 +928,9 @@ msgid "Status" msgstr "" #. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" +#: code:addons/crm/crm.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" msgstr "" #. module: crm @@ -930,6 +943,11 @@ msgstr "" msgid "Execution Status" msgstr "" +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." +msgstr "" + #. module: crm #: selection:crm.case,priority:0 #: selection:crm.case.rule,act_priority:0 @@ -992,8 +1010,9 @@ msgid "Active" msgstr "活动的" #. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" +#: wizard_field:crm.case.section.menu,design_menu,menu9:0 +#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 +msgid "All Unassigned " msgstr "" #. module: crm @@ -1092,9 +1111,8 @@ msgid "Date" msgstr "日期" #. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Created Menus" msgstr "" #. module: crm @@ -1117,6 +1135,12 @@ msgstr "下降因子(0.0>1.0)" msgid "Partner Segmentation Lines" msgstr "伙伴分割行" +#. module: crm +#: code:addons/crm/crm.py:0 +#, python-format +msgid "You must define a responsible user for this case in order to use this action!" +msgstr "" + #. module: crm #: view:crm.case:0 msgid "History" @@ -1133,6 +1157,11 @@ msgstr "" msgid "All Unclosed " msgstr "" +#. module: crm +#: wizard_field:crm.case.section.menu,init,view_tree:0 +msgid "Tree View" +msgstr "" + #. module: crm #: field:crm.case.rule,sequence:0 #: field:crm.case.section,sequence:0 @@ -1205,8 +1234,8 @@ msgid "Open" msgstr "" #. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" +#: field:crm.case.rule,act_remind_user:0 +msgid "Remind responsible" msgstr "" #. module: crm @@ -1293,6 +1322,11 @@ msgstr "说明" msgid "open" msgstr "" +#. module: crm +#: field:crm.case.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 #: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 @@ -1329,8 +1363,8 @@ msgid "Segmentations" msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" msgstr "" #. module: crm @@ -1349,6 +1383,11 @@ msgstr "" msgid "Case Rule" msgstr "" +#. module: crm +#: help:crm.case,date_deadline:0 +msgid "Deadline Date is automatically computed from Start Date + Duration" +msgstr "" + #. module: crm #: selection:crm.segmentation.line,expr_operator:0 msgid "=" @@ -1549,8 +1588,8 @@ msgid "Conditions on States" msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" +#: wizard_view:crm.case.section.menu,design_menu:0 +msgid "Update The Proposed Menus To Be Created" msgstr "" #. module: crm diff --git a/addons/crm_configuration/i18n/ar_AR.po b/addons/crm_configuration/i18n/ar_AR.po index c16d9db50b7..aeb01edb8d0 100644 --- a/addons/crm_configuration/i18n/ar_AR.po +++ b/addons/crm_configuration/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/bg_BG.po b/addons/crm_configuration/i18n/bg_BG.po index 83c9587a95b..7844460da51 100644 --- a/addons/crm_configuration/i18n/bg_BG.po +++ b/addons/crm_configuration/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/bs_BS.po b/addons/crm_configuration/i18n/bs_BS.po index 16362049e90..c360ac805c1 100644 --- a/addons/crm_configuration/i18n/bs_BS.po +++ b/addons/crm_configuration/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/ca_ES.po b/addons/crm_configuration/i18n/ca_ES.po index f422f10349f..16a276a5019 100644 --- a/addons/crm_configuration/i18n/ca_ES.po +++ b/addons/crm_configuration/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Gestiona un servei d'assistència/ajuda." msgid "Stage Name" msgstr "Nom de fase" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Categoria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Oportunitats de negoci" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Següent" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Casos per secció, categoria i categoria2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Casos per secció i categoria2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Iniciativa d'empresa" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Oportunitats de negoci" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# de casos" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Dates límit" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# de casos" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "Correu electrònic" @@ -1820,11 +1829,6 @@ msgstr "Salari esperat" msgid "Very first contact with new prospect" msgstr "Primer contacte amb nova prospecció" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Nom prospecció" msgid "User" msgstr "Usuari" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.assistent_config" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/crm_configuration.pot b/addons/crm_configuration/i18n/crm_configuration.pot index b40d3135898..dd8043cccf4 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/cs_CS.po b/addons/crm_configuration/i18n/cs_CS.po index 5d156660463..7260501b1ad 100644 --- a/addons/crm_configuration/i18n/cs_CS.po +++ b/addons/crm_configuration/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Close Lead" msgstr "" +#. module: crm_configuration +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all3 @@ -52,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -69,6 +79,13 @@ msgstr "" msgid "Fixed" msgstr "" +#. module: crm_configuration +#: code:addons/crm_configuration/wizard/wizard_opportunity_set.py:0 +#: code:addons/crm_configuration/wizard/wizard_partner_create.py:0 +#, python-format +msgid "Warning !" +msgstr "" + #. module: crm_configuration #: model:crm.case.categ,name:crm_configuration.categ_oppor5 msgid "Campaign" @@ -246,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -314,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -330,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -404,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -436,11 +452,6 @@ msgstr "" msgid "Bugs With Patches Waiting Approval" msgstr "" -#. module: crm_configuration -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." -msgstr "" - #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_job5 msgid "Contract Signed" @@ -594,11 +605,6 @@ msgstr "" msgid "Meetings" msgstr "" -#. module: crm_configuration -#: view:crm.case:0 -msgid "Reset to Unconfirmed" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all4 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all4 @@ -621,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -756,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1031,6 +1031,11 @@ msgstr "" msgid "Inbound" msgstr "" +#. module: crm_configuration +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + #. module: crm_configuration #: help:crm.menu.config_wizard,document_ics:0 msgid " Will allow you to synchronise your Open ERP calendars with your phone, outlook, Sunbird, ical, ..." @@ -1074,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1310,9 +1318,8 @@ msgid "All Feature Request" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act11 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act11 -msgid "My Jobs Requests" +#: view:crm.case:0 +msgid "Reset to Unconfirmed" msgstr "" #. module: crm_configuration @@ -1479,6 +1486,12 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_configuration +#: code:addons/crm_configuration/wizard/wizard_partner_create.py:0 +#, python-format +msgid "A partner is already existing with the same name." +msgstr "" + #. module: crm_configuration #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -1581,6 +1594,12 @@ msgstr "" msgid "Demand Draft" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act11 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act11 +msgid "My Jobs Requests" +msgstr "" + #. module: crm_configuration #: wizard_field:crm.case.opportunity_set,init,name:0 msgid "Opportunity Summary" @@ -1641,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1682,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1732,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1763,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1802,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -1988,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2153,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/cs_CZ.po b/addons/crm_configuration/i18n/cs_CZ.po index 4fdc8edadd1..319fa662b09 100644 --- a/addons/crm_configuration/i18n/cs_CZ.po +++ b/addons/crm_configuration/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/de_DE.po b/addons/crm_configuration/i18n/de_DE.po index f5689a2c740..de4645cb11b 100644 --- a/addons/crm_configuration/i18n/de_DE.po +++ b/addons/crm_configuration/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Managt einen Anwendersupport." msgid "Stage Name" msgstr "Stufe Bezeichnung" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Kategorie" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Verkaufschancen" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Weiter" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Fälle nach Sektion, Kategorie und Kategorie2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Fälle nach Sektionen und Kategorien" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Partner Interessent" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Verkaufschancen" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# Fälle" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Deadlines" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# Fälle" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "E-Mail:" @@ -1820,11 +1829,6 @@ msgstr "Erwartetes Einkommen" msgid "Very first contact with new prospect" msgstr "Erstkontakt mit Kaufinteressent" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Name Interessent" msgid "User" msgstr "Benutzer" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.config_wizard" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/es_AR.po b/addons/crm_configuration/i18n/es_AR.po index f4d9292e96a..455db87fabd 100644 --- a/addons/crm_configuration/i18n/es_AR.po +++ b/addons/crm_configuration/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/es_ES.po b/addons/crm_configuration/i18n/es_ES.po index 0ff8d825cf8..ee0707df490 100644 --- a/addons/crm_configuration/i18n/es_ES.po +++ b/addons/crm_configuration/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Gestiona un servicio de asistencia/ayuda." msgid "Stage Name" msgstr "Nombre de fase" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Categoría" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Oportunidades de negocio" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Siguiente" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Casos por sección, categoría y categoría2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Casos por sección y categoría2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Iniciativa de empresa" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Oportunidades de negocio" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# de casos" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Fechas límite" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# de casos" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "Email" @@ -1820,11 +1829,6 @@ msgstr "Salario esperado" msgid "Very first contact with new prospect" msgstr "Primer contacto con nueva prospección" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Nombre prospección" msgid "User" msgstr "Usuario" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.asistente_config" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/et_EE.po b/addons/crm_configuration/i18n/et_EE.po index 2184eb060fe..431fc39b463 100644 --- a/addons/crm_configuration/i18n/et_EE.po +++ b/addons/crm_configuration/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #. module: crm_configuration #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all3 @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "Staatuse Nimi" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Kategooria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,13 +627,9 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Juhtumid Jaotise, Kategooria ja Staatusejärgi2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Juhtumid Jaotise ja Kategooriajärgi2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# Juhtumid" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# Juhtumid" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "Väga esimene kontakt koos uue perspektiiviga" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Perspektiivi Nimi" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/fr_FR.po b/addons/crm_configuration/i18n/fr_FR.po index 28989a88112..7ff94e213af 100644 --- a/addons/crm_configuration/i18n/fr_FR.po +++ b/addons/crm_configuration/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Diriger un service d'assistance" msgid "Stage Name" msgstr "Nom de l'étape" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Catégorie" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Opportunités d'affaire" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Suivant" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Cas par section, catégorie et catégorie2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Cas par section et catégorie2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Affaire du partenaire" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Opportunités d'affaire" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# de cas" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Dates Limites" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# de cas" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "Email" @@ -1820,11 +1829,6 @@ msgstr "Salaire demandé" msgid "Very first contact with new prospect" msgstr "Tout premier contact avec un nouveau prospect" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Nom du prospect" msgid "User" msgstr "Utilisateur" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.config_wizard" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/hr_HR.po b/addons/crm_configuration/i18n/hr_HR.po index ddbd41bc450..a8ec1bb90c0 100644 --- a/addons/crm_configuration/i18n/hr_HR.po +++ b/addons/crm_configuration/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/hu_HU.po b/addons/crm_configuration/i18n/hu_HU.po index d44c825cce0..23ddc0016a6 100644 --- a/addons/crm_configuration/i18n/hu_HU.po +++ b/addons/crm_configuration/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/it_IT.po b/addons/crm_configuration/i18n/it_IT.po index dcc1d5d7bd5..e9c9713df9b 100644 --- a/addons/crm_configuration/i18n/it_IT.po +++ b/addons/crm_configuration/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Gestisci un servizio di Helpdesk" msgid "Stage Name" msgstr "Nome Scenario" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Categoria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Opportunità" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Successivo" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Casi per Sezione, Categoria e Categoria2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Casi per Sezione e Categoria2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Contatto privilegiato Partner" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Opportunità" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "Numero di Casi" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Scadenze" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "Numero di Casi" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "Email" @@ -1820,11 +1829,6 @@ msgstr "Stipendio Previsto" msgid "Very first contact with new prospect" msgstr "Primo contatto il nuovo candidato" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Nome candidato" msgid "User" msgstr "Utente" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.config_wizard" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/lt_LT.po b/addons/crm_configuration/i18n/lt_LT.po index 0ccf2805a8e..cea7433683f 100644 --- a/addons/crm_configuration/i18n/lt_LT.po +++ b/addons/crm_configuration/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/nl_BE.po b/addons/crm_configuration/i18n/nl_BE.po index ff69f2b5dcc..d9e214d7979 100644 --- a/addons/crm_configuration/i18n/nl_BE.po +++ b/addons/crm_configuration/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/nl_NL.po b/addons/crm_configuration/i18n/nl_NL.po index e6444f1fff4..6b9916a8a79 100644 --- a/addons/crm_configuration/i18n/nl_NL.po +++ b/addons/crm_configuration/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/pl_PL.po b/addons/crm_configuration/i18n/pl_PL.po index 99ec2d04687..07b1137f868 100644 --- a/addons/crm_configuration/i18n/pl_PL.po +++ b/addons/crm_configuration/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Kategoria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "Następny" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "E-mail" @@ -1820,11 +1829,6 @@ msgstr "Oczekiwane wynagrodzenie" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/pt_BR.po b/addons/crm_configuration/i18n/pt_BR.po index fe9bf2dfbb8..14026ecd300 100644 --- a/addons/crm_configuration/i18n/pt_BR.po +++ b/addons/crm_configuration/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Administrar um serviço de helpdesk" msgid "Stage Name" msgstr "Nome do estágio" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Categoria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,10 +421,9 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "Oportunidades de negócios" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim @@ -623,13 +627,9 @@ msgid "Next" msgstr "Próxima" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Casos por seção, categoria e categoria2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "Casos por seção e categoria2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "Parceiro de ligações" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "Oportunidades de negócios" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "# de casos" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Prazos finais" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "# de casos" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "E-mail" @@ -1820,11 +1829,6 @@ msgstr "Salário esperado" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "Nome do prospecto" msgid "User" msgstr "Usuário" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "crm.menu.config_wizard" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/pt_PT.po b/addons/crm_configuration/i18n/pt_PT.po index e0cf18004ca..15a4e7ef5a1 100644 --- a/addons/crm_configuration/i18n/pt_PT.po +++ b/addons/crm_configuration/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "Nome de estado" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Categoria" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,13 +627,9 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "Casos por secção, categoria e categoria2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "processo por seccção e categoria2" @@ -1081,9 +1079,12 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" +msgstr "Numero de casos" #. module: crm_configuration #: field:report.crm.case.section.categ2,amount_revenue:0 @@ -1659,12 +1660,9 @@ msgid "Deadlines" msgstr "Prazos" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "Numero de casos" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "E-mail" @@ -1820,11 +1829,6 @@ msgstr "Salário esperado" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "Utilizador" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/ro_RO.po b/addons/crm_configuration/i18n/ro_RO.po index e103907a884..0f01bfd43d3 100644 --- a/addons/crm_configuration/i18n/ro_RO.po +++ b/addons/crm_configuration/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/ru_RU.po b/addons/crm_configuration/i18n/ru_RU.po index 9043cec095b..4ac93a573aa 100644 --- a/addons/crm_configuration/i18n/ru_RU.po +++ b/addons/crm_configuration/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "Название стадии" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "Категория" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "Сроки" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "Эл. почта" @@ -1820,11 +1829,6 @@ msgstr "Ожидаемая зарплата" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "Пользователь" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/sl_SL.po b/addons/crm_configuration/i18n/sl_SL.po index 18a2dfd5a94..3c4758a6d78 100644 --- a/addons/crm_configuration/i18n/sl_SL.po +++ b/addons/crm_configuration/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/sv_SE.po b/addons/crm_configuration/i18n/sv_SE.po index 40b4ed2d664..0c8f631003d 100644 --- a/addons/crm_configuration/i18n/sv_SE.po +++ b/addons/crm_configuration/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/sv_SV.po b/addons/crm_configuration/i18n/sv_SV.po index 8a0f6588ef8..a8a8ed7988b 100644 --- a/addons/crm_configuration/i18n/sv_SV.po +++ b/addons/crm_configuration/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Close Lead" msgstr "" +#. module: crm_configuration +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all3 @@ -52,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -69,6 +79,13 @@ msgstr "" msgid "Fixed" msgstr "" +#. module: crm_configuration +#: code:addons/crm_configuration/wizard/wizard_opportunity_set.py:0 +#: code:addons/crm_configuration/wizard/wizard_partner_create.py:0 +#, python-format +msgid "Warning !" +msgstr "" + #. module: crm_configuration #: model:crm.case.categ,name:crm_configuration.categ_oppor5 msgid "Campaign" @@ -246,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -314,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -330,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -404,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -436,11 +452,6 @@ msgstr "" msgid "Bugs With Patches Waiting Approval" msgstr "" -#. module: crm_configuration -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." -msgstr "" - #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_job5 msgid "Contract Signed" @@ -594,11 +605,6 @@ msgstr "" msgid "Meetings" msgstr "" -#. module: crm_configuration -#: view:crm.case:0 -msgid "Reset to Unconfirmed" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all4 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all4 @@ -621,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -756,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1002,7 +1002,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_hr msgid "Human Resources" -msgstr "Human Resources" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job1 @@ -1031,6 +1031,11 @@ msgstr "" msgid "Inbound" msgstr "" +#. module: crm_configuration +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + #. module: crm_configuration #: help:crm.menu.config_wizard,document_ics:0 msgid " Will allow you to synchronise your Open ERP calendars with your phone, outlook, Sunbird, ical, ..." @@ -1074,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1310,9 +1318,8 @@ msgid "All Feature Request" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act11 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act11 -msgid "My Jobs Requests" +#: view:crm.case:0 +msgid "Reset to Unconfirmed" msgstr "" #. module: crm_configuration @@ -1479,6 +1486,12 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_configuration +#: code:addons/crm_configuration/wizard/wizard_partner_create.py:0 +#, python-format +msgid "A partner is already existing with the same name." +msgstr "" + #. module: crm_configuration #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -1581,6 +1594,12 @@ msgstr "" msgid "Demand Draft" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act11 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act11 +msgid "My Jobs Requests" +msgstr "" + #. module: crm_configuration #: wizard_field:crm.case.opportunity_set,init,name:0 msgid "Opportunity Summary" @@ -1641,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1682,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1732,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1763,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1802,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -1988,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2153,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/tr_TR.po b/addons/crm_configuration/i18n/tr_TR.po index 98c13f1f212..4d7e28c1f66 100644 --- a/addons/crm_configuration/i18n/tr_TR.po +++ b/addons/crm_configuration/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/uk_UK.po b/addons/crm_configuration/i18n/uk_UK.po index bf9980006f9..c5b44b0d549 100644 --- a/addons/crm_configuration/i18n/uk_UK.po +++ b/addons/crm_configuration/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/zh_CN.po b/addons/crm_configuration/i18n/zh_CN.po index e50f02bb696..af16da40c4c 100644 --- a/addons/crm_configuration/i18n/zh_CN.po +++ b/addons/crm_configuration/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_configuration/i18n/zh_TW.po b/addons/crm_configuration/i18n/zh_TW.po index 731f9cd1333..79946226a8b 100644 --- a/addons/crm_configuration/i18n/zh_TW.po +++ b/addons/crm_configuration/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Stage Name" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 +msgid "Cases by Opportunities, Category and Type" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" @@ -258,7 +263,6 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month #: view:report.crm.case.section.categ.stage:0 @@ -326,6 +330,12 @@ msgstr "" msgid "HelpDesk" msgstr "" +#. module: crm_configuration +#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 +msgid "Calls Not Held" +msgstr "" + #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage6 msgid "Works For Me" @@ -342,11 +352,6 @@ msgstr "" msgid "All Unassigned Opportunities" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - #. module: crm_configuration #: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 msgid "Lead Opportunity" @@ -416,9 +421,8 @@ msgid "Negotiation/Review" msgstr "" #. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" +#: field:crm.menu.config_wizard,opportunity:0 +msgid "Business Opportunities" msgstr "" #. module: crm_configuration @@ -623,12 +627,8 @@ msgid "Next" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage +msgid "Cases by Opportunities, Category and Stage" msgstr "" #. module: crm_configuration @@ -758,8 +758,6 @@ msgid "My Funds Waiting Validation" msgstr "" #. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Category2" msgstr "" @@ -1081,8 +1079,11 @@ msgid "Lead Partner" msgstr "" #. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" +#: field:report.crm.case.section.categ.categ2,nbr:0 +#: field:report.crm.case.section.categ.stage,nbr:0 +#: field:report.crm.case.section.categ2,nbr:0 +#: field:report.crm.case.section.stage,nbr:0 +msgid "# of Cases" msgstr "" #. module: crm_configuration @@ -1659,11 +1660,8 @@ msgid "Deadlines" msgstr "" #. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ +msgid "Cases by Leads and Type" msgstr "" #. module: crm_configuration @@ -1700,6 +1698,13 @@ msgstr "" msgid "Unassigned Leads" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month +#: view:report.crm.case.section.categ2:0 +msgid "Cases by Section and Type" +msgstr "" + #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale msgid "After-Sale Services" @@ -1750,6 +1755,11 @@ msgstr "" msgid "All Open Opportunities" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ +msgid "Cases by Opportunities and Type" +msgstr "" + #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 #: field:report.crm.case.section.categ.stage,section_id:0 @@ -1781,7 +1791,6 @@ msgid "New" msgstr "" #. module: crm_configuration -#: view:crm.case:0 #: model:crm.case.category2,name:crm_configuration.category_lead3 msgid "Email" msgstr "" @@ -1820,11 +1829,6 @@ msgstr "" msgid "Very first contact with new prospect" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 @@ -2006,6 +2010,14 @@ msgstr "" msgid "User" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree +#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month +#: view:report.crm.case.section.categ.categ2:0 +msgid "Cases by Section, Category and Type" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 msgid "Licenced" @@ -2171,6 +2183,11 @@ msgstr "" msgid "crm.menu.config_wizard" msgstr "" +#. module: crm_configuration +#: field:crm.case.stage,sequence:0 +msgid "Sequence" +msgstr "" + #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" diff --git a/addons/crm_profiling/i18n/ar_AR.po b/addons/crm_profiling/i18n/ar_AR.po index fefe95976c7..f9611afd074 100644 --- a/addons/crm_profiling/i18n/ar_AR.po +++ b/addons/crm_profiling/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/bg_BG.po b/addons/crm_profiling/i18n/bg_BG.po index 4eb62babaa3..4f693908151 100644 --- a/addons/crm_profiling/i18n/bg_BG.po +++ b/addons/crm_profiling/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/bs_BS.po b/addons/crm_profiling/i18n/bs_BS.po index 7a7debc1e60..457e52cda21 100644 --- a/addons/crm_profiling/i18n/bs_BS.po +++ b/addons/crm_profiling/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ca_ES.po b/addons/crm_profiling/i18n/ca_ES.po index 5e8622fa3da..86a89121307 100644 --- a/addons/crm_profiling/i18n/ca_ES.po +++ b/addons/crm_profiling/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/crm_profiling.pot b/addons/crm_profiling/i18n/crm_profiling.pot index a6c606e98ae..f1f94fd6ee9 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/cs_CS.po b/addons/crm_profiling/i18n/cs_CS.po index 776754f7794..b9ae2c416f8 100644 --- a/addons/crm_profiling/i18n/cs_CS.po +++ b/addons/crm_profiling/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "crm_profiling management" msgstr "" +#. module: crm_profiling +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm_profiling #: field:crm_profiling.answer,name:0 #: model:ir.model,name:crm_profiling.model_crm_profiling_answer diff --git a/addons/crm_profiling/i18n/cs_CZ.po b/addons/crm_profiling/i18n/cs_CZ.po index f70ef294204..308c6adc51f 100644 --- a/addons/crm_profiling/i18n/cs_CZ.po +++ b/addons/crm_profiling/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/de_DE.po b/addons/crm_profiling/i18n/de_DE.po index 1ac8a65035f..e035cb87c82 100644 --- a/addons/crm_profiling/i18n/de_DE.po +++ b/addons/crm_profiling/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 6f9e160073f..8968e16522e 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/es_ES.po b/addons/crm_profiling/i18n/es_ES.po index 330c33296bd..59c5590c7df 100644 --- a/addons/crm_profiling/i18n/es_ES.po +++ b/addons/crm_profiling/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/et_EE.po b/addons/crm_profiling/i18n/et_EE.po index 4d67911eb08..01ae97c9ac8 100644 --- a/addons/crm_profiling/i18n/et_EE.po +++ b/addons/crm_profiling/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "" #. module: crm_profiling #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: crm_profiling #: field:crm_profiling.answer,name:0 diff --git a/addons/crm_profiling/i18n/fr_FR.po b/addons/crm_profiling/i18n/fr_FR.po index e49fa15132f..d18f22dd131 100644 --- a/addons/crm_profiling/i18n/fr_FR.po +++ b/addons/crm_profiling/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/hr_HR.po b/addons/crm_profiling/i18n/hr_HR.po index e5cf42a2ac7..05d8582c6e5 100644 --- a/addons/crm_profiling/i18n/hr_HR.po +++ b/addons/crm_profiling/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/hu_HU.po b/addons/crm_profiling/i18n/hu_HU.po index f07675c23f7..edbcc3c2cb5 100644 --- a/addons/crm_profiling/i18n/hu_HU.po +++ b/addons/crm_profiling/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/it_IT.po b/addons/crm_profiling/i18n/it_IT.po index ca64bcbe007..c00fe9742e3 100644 --- a/addons/crm_profiling/i18n/it_IT.po +++ b/addons/crm_profiling/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/lt_LT.po b/addons/crm_profiling/i18n/lt_LT.po index 5978b7171b3..11430365465 100644 --- a/addons/crm_profiling/i18n/lt_LT.po +++ b/addons/crm_profiling/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 89ba41ff563..23133e8744b 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/nl_NL.po b/addons/crm_profiling/i18n/nl_NL.po index d918f381a5c..f8d4a0eca08 100644 --- a/addons/crm_profiling/i18n/nl_NL.po +++ b/addons/crm_profiling/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pl_PL.po b/addons/crm_profiling/i18n/pl_PL.po index 0e2f71ab0e2..dfc28a814d5 100644 --- a/addons/crm_profiling/i18n/pl_PL.po +++ b/addons/crm_profiling/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 029f2cdd214..749c475068b 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pt_PT.po b/addons/crm_profiling/i18n/pt_PT.po index 97340b29697..45b1ab30b0e 100644 --- a/addons/crm_profiling/i18n/pt_PT.po +++ b/addons/crm_profiling/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ro_RO.po b/addons/crm_profiling/i18n/ro_RO.po index 4208013490a..ec839ea19d9 100644 --- a/addons/crm_profiling/i18n/ro_RO.po +++ b/addons/crm_profiling/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ru_RU.po b/addons/crm_profiling/i18n/ru_RU.po index 9959644474e..9865d32794c 100644 --- a/addons/crm_profiling/i18n/ru_RU.po +++ b/addons/crm_profiling/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sl_SL.po b/addons/crm_profiling/i18n/sl_SL.po index da15ddb1dae..593e90b005f 100644 --- a/addons/crm_profiling/i18n/sl_SL.po +++ b/addons/crm_profiling/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sv_SE.po b/addons/crm_profiling/i18n/sv_SE.po index 23339451acd..00d81525504 100644 --- a/addons/crm_profiling/i18n/sv_SE.po +++ b/addons/crm_profiling/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sv_SV.po b/addons/crm_profiling/i18n/sv_SV.po index 25f4d47f8e4..a9ebc901eae 100644 --- a/addons/crm_profiling/i18n/sv_SV.po +++ b/addons/crm_profiling/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "crm_profiling management" msgstr "" +#. module: crm_profiling +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: crm_profiling #: field:crm_profiling.answer,name:0 #: model:ir.model,name:crm_profiling.model_crm_profiling_answer diff --git a/addons/crm_profiling/i18n/tr_TR.po b/addons/crm_profiling/i18n/tr_TR.po index 8f04f6c4601..48ec42ee8d0 100644 --- a/addons/crm_profiling/i18n/tr_TR.po +++ b/addons/crm_profiling/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/uk_UK.po b/addons/crm_profiling/i18n/uk_UK.po index 4af1e4bd8b3..ae96b55a011 100644 --- a/addons/crm_profiling/i18n/uk_UK.po +++ b/addons/crm_profiling/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 690548758fd..3005d43c078 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 222a32ba43f..1e7ee129922 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ar_AR.po b/addons/crm_vertical/i18n/ar_AR.po index 21336335735..f452c6f92dd 100644 --- a/addons/crm_vertical/i18n/ar_AR.po +++ b/addons/crm_vertical/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/bg_BG.po b/addons/crm_vertical/i18n/bg_BG.po index a139a80859a..68e4b3993f5 100644 --- a/addons/crm_vertical/i18n/bg_BG.po +++ b/addons/crm_vertical/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/bs_BS.po b/addons/crm_vertical/i18n/bs_BS.po index 8093209ea54..64413832b2f 100644 --- a/addons/crm_vertical/i18n/bs_BS.po +++ b/addons/crm_vertical/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ca_ES.po b/addons/crm_vertical/i18n/ca_ES.po index 8fafb4efdda..84238e54a56 100644 --- a/addons/crm_vertical/i18n/ca_ES.po +++ b/addons/crm_vertical/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/crm_vertical.pot b/addons/crm_vertical/i18n/crm_vertical.pot index 501011b02dc..897edcb81dd 100644 --- a/addons/crm_vertical/i18n/crm_vertical.pot +++ b/addons/crm_vertical/i18n/crm_vertical.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/cs_CS.po b/addons/crm_vertical/i18n/cs_CS.po index 5ab996a7e22..6dc3e27754e 100644 --- a/addons/crm_vertical/i18n/cs_CS.po +++ b/addons/crm_vertical/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: crm_vertical +#: code:addons/crm_vertical/crm_vertical.py:0 +#, python-format +msgid "Error !" +msgstr "" + #. module: crm_vertical #: model:ir.module.module,description:crm_vertical.module_meta_information msgid "Simplification of the interface for CRM." diff --git a/addons/crm_vertical/i18n/cs_CZ.po b/addons/crm_vertical/i18n/cs_CZ.po index 0d98d8626c2..37fdc8adc56 100644 --- a/addons/crm_vertical/i18n/cs_CZ.po +++ b/addons/crm_vertical/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/de_DE.po b/addons/crm_vertical/i18n/de_DE.po index f15470b8b70..916bb5d59b6 100644 --- a/addons/crm_vertical/i18n/de_DE.po +++ b/addons/crm_vertical/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/es_AR.po b/addons/crm_vertical/i18n/es_AR.po index 5075205d90b..6fa492edc6b 100644 --- a/addons/crm_vertical/i18n/es_AR.po +++ b/addons/crm_vertical/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/es_ES.po b/addons/crm_vertical/i18n/es_ES.po index c3b20195773..ce43a1cf742 100644 --- a/addons/crm_vertical/i18n/es_ES.po +++ b/addons/crm_vertical/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/et_EE.po b/addons/crm_vertical/i18n/et_EE.po index 1099f508728..b7d0d0fdf60 100644 --- a/addons/crm_vertical/i18n/et_EE.po +++ b/addons/crm_vertical/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/fr_FR.po b/addons/crm_vertical/i18n/fr_FR.po index 11b93665996..2f7f575cce6 100644 --- a/addons/crm_vertical/i18n/fr_FR.po +++ b/addons/crm_vertical/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/hr_HR.po b/addons/crm_vertical/i18n/hr_HR.po index 423dca727c5..4e12824e837 100644 --- a/addons/crm_vertical/i18n/hr_HR.po +++ b/addons/crm_vertical/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/hu_HU.po b/addons/crm_vertical/i18n/hu_HU.po index 6addbe331f2..0f2cc6f2762 100644 --- a/addons/crm_vertical/i18n/hu_HU.po +++ b/addons/crm_vertical/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/it_IT.po b/addons/crm_vertical/i18n/it_IT.po index fa385e05511..f722bb2ca1b 100644 --- a/addons/crm_vertical/i18n/it_IT.po +++ b/addons/crm_vertical/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/lt_LT.po b/addons/crm_vertical/i18n/lt_LT.po index 92bc790452e..71a449e33f3 100644 --- a/addons/crm_vertical/i18n/lt_LT.po +++ b/addons/crm_vertical/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/nl_BE.po b/addons/crm_vertical/i18n/nl_BE.po index d19a364620c..c9db0edd53c 100644 --- a/addons/crm_vertical/i18n/nl_BE.po +++ b/addons/crm_vertical/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/nl_NL.po b/addons/crm_vertical/i18n/nl_NL.po index 701d3b7636b..c720da28771 100644 --- a/addons/crm_vertical/i18n/nl_NL.po +++ b/addons/crm_vertical/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pl_PL.po b/addons/crm_vertical/i18n/pl_PL.po index 37eb612c6b8..f21c6b772ce 100644 --- a/addons/crm_vertical/i18n/pl_PL.po +++ b/addons/crm_vertical/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pt_BR.po b/addons/crm_vertical/i18n/pt_BR.po index f38161ee225..d7e9cdcddce 100644 --- a/addons/crm_vertical/i18n/pt_BR.po +++ b/addons/crm_vertical/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pt_PT.po b/addons/crm_vertical/i18n/pt_PT.po index 75f7e9b618f..b6023bddbfc 100644 --- a/addons/crm_vertical/i18n/pt_PT.po +++ b/addons/crm_vertical/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ro_RO.po b/addons/crm_vertical/i18n/ro_RO.po index bd5f88d1a80..95ae029bd18 100644 --- a/addons/crm_vertical/i18n/ro_RO.po +++ b/addons/crm_vertical/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ru_RU.po b/addons/crm_vertical/i18n/ru_RU.po index f36579f0cf1..8b7378b7787 100644 --- a/addons/crm_vertical/i18n/ru_RU.po +++ b/addons/crm_vertical/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sl_SL.po b/addons/crm_vertical/i18n/sl_SL.po index 561122e09e0..92fd9502823 100644 --- a/addons/crm_vertical/i18n/sl_SL.po +++ b/addons/crm_vertical/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sv_SE.po b/addons/crm_vertical/i18n/sv_SE.po index f4089bbd210..ed739028ef2 100644 --- a/addons/crm_vertical/i18n/sv_SE.po +++ b/addons/crm_vertical/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sv_SV.po b/addons/crm_vertical/i18n/sv_SV.po index 831bcdfd3f0..7926bd88fd3 100644 --- a/addons/crm_vertical/i18n/sv_SV.po +++ b/addons/crm_vertical/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: crm_vertical +#: code:addons/crm_vertical/crm_vertical.py:0 +#, python-format +msgid "Error !" +msgstr "" + #. module: crm_vertical #: model:ir.module.module,description:crm_vertical.module_meta_information msgid "Simplification of the interface for CRM." diff --git a/addons/crm_vertical/i18n/tr_TR.po b/addons/crm_vertical/i18n/tr_TR.po index 27d836ec46f..b8a90a1187f 100644 --- a/addons/crm_vertical/i18n/tr_TR.po +++ b/addons/crm_vertical/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/uk_UK.po b/addons/crm_vertical/i18n/uk_UK.po index f08ab0562f0..9f7f29da05f 100644 --- a/addons/crm_vertical/i18n/uk_UK.po +++ b/addons/crm_vertical/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/zh_CN.po b/addons/crm_vertical/i18n/zh_CN.po index 7775062f3b0..672e239b629 100644 --- a/addons/crm_vertical/i18n/zh_CN.po +++ b/addons/crm_vertical/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/zh_TW.po b/addons/crm_vertical/i18n/zh_TW.po index 4ac2c006851..fb3fbbc82f6 100644 --- a/addons/crm_vertical/i18n/zh_TW.po +++ b/addons/crm_vertical/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ar_AR.po b/addons/delivery/i18n/ar_AR.po index f2899154fc5..f2256187100 100644 --- a/addons/delivery/i18n/ar_AR.po +++ b/addons/delivery/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/bg_BG.po b/addons/delivery/i18n/bg_BG.po index 0b0146236f8..7fb02796370 100644 --- a/addons/delivery/i18n/bg_BG.po +++ b/addons/delivery/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/bs_BS.po b/addons/delivery/i18n/bs_BS.po index 7f3ae25d4f4..140f7425236 100644 --- a/addons/delivery/i18n/bs_BS.po +++ b/addons/delivery/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ca_ES.po b/addons/delivery/i18n/ca_ES.po index 7f0b1c3e158..6b0079109b4 100644 --- a/addons/delivery/i18n/ca_ES.po +++ b/addons/delivery/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/cs_CS.po b/addons/delivery/i18n/cs_CS.po index 9dae7c6ead7..802c2cdb4ae 100644 --- a/addons/delivery/i18n/cs_CS.po +++ b/addons/delivery/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "States" msgstr "" +#. module: delivery +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: delivery #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from packing." diff --git a/addons/delivery/i18n/cs_CZ.po b/addons/delivery/i18n/cs_CZ.po index 7ddc2152c80..3f52cca0e6f 100644 --- a/addons/delivery/i18n/cs_CZ.po +++ b/addons/delivery/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/de_DE.po b/addons/delivery/i18n/de_DE.po index 67b94a72069..16a5bcebb67 100644 --- a/addons/delivery/i18n/de_DE.po +++ b/addons/delivery/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+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 0428a8c6f7e..56a5584a271 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index fea3c70eb2b..81a127845cc 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/es_ES.po b/addons/delivery/i18n/es_ES.po index d70fa0b2c04..13e1228fb6c 100644 --- a/addons/delivery/i18n/es_ES.po +++ b/addons/delivery/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/et_EE.po b/addons/delivery/i18n/et_EE.po index b33ed1aa071..3b0493cb5fb 100644 --- a/addons/delivery/i18n/et_EE.po +++ b/addons/delivery/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: delivery #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Viga! Sa ei saa luua rekursiivseid seotud liikmeid." #. module: delivery #: field:delivery.grid,state_ids:0 @@ -58,7 +58,7 @@ msgstr "staatused" #. module: delivery #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: delivery #: help:res.partner,property_delivery_carrier:0 @@ -123,7 +123,7 @@ msgstr "" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery msgid "Delivery" -msgstr "Tarnimine" +msgstr "Kättetoimetamine" #. module: delivery #: view:delivery.grid.line:0 @@ -190,7 +190,7 @@ msgstr "Nimi" #. module: delivery #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: delivery #: field:delivery.grid,country_ids:0 @@ -345,7 +345,7 @@ msgstr "Müügihind" #. module: delivery #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: delivery #: view:delivery.grid:0 diff --git a/addons/delivery/i18n/fr_FR.po b/addons/delivery/i18n/fr_FR.po index 724407dffd0..725dcb766fa 100644 --- a/addons/delivery/i18n/fr_FR.po +++ b/addons/delivery/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/hr_HR.po b/addons/delivery/i18n/hr_HR.po index f886441416d..e0e727ec79c 100644 --- a/addons/delivery/i18n/hr_HR.po +++ b/addons/delivery/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/hu_HU.po b/addons/delivery/i18n/hu_HU.po index 2568b239ea0..7ff97983568 100644 --- a/addons/delivery/i18n/hu_HU.po +++ b/addons/delivery/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/it_IT.po b/addons/delivery/i18n/it_IT.po index 305f37bf1bb..b55f4e26375 100644 --- a/addons/delivery/i18n/it_IT.po +++ b/addons/delivery/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/lt_LT.po b/addons/delivery/i18n/lt_LT.po index 923182453e0..a6ae2989f3b 100644 --- a/addons/delivery/i18n/lt_LT.po +++ b/addons/delivery/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index a9c6ee01599..4642b1fa2d9 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/nl_NL.po b/addons/delivery/i18n/nl_NL.po index ca092b4d94e..7741f675bef 100644 --- a/addons/delivery/i18n/nl_NL.po +++ b/addons/delivery/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pl_PL.po b/addons/delivery/i18n/pl_PL.po index 7f6261115b7..0b24f6cbee2 100644 --- a/addons/delivery/i18n/pl_PL.po +++ b/addons/delivery/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index b14951baa08..4663ced7c14 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pt_PT.po b/addons/delivery/i18n/pt_PT.po index 970bd131c5f..0a1e3724387 100644 --- a/addons/delivery/i18n/pt_PT.po +++ b/addons/delivery/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ro_RO.po b/addons/delivery/i18n/ro_RO.po index c59e8ab197b..8c599254b91 100644 --- a/addons/delivery/i18n/ro_RO.po +++ b/addons/delivery/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ru_RU.po b/addons/delivery/i18n/ru_RU.po index 9644acb85af..049f2e4f15a 100644 --- a/addons/delivery/i18n/ru_RU.po +++ b/addons/delivery/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/sl_SL.po b/addons/delivery/i18n/sl_SL.po index 17befd49e0a..a30a86bfd50 100644 --- a/addons/delivery/i18n/sl_SL.po +++ b/addons/delivery/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/sv_SE.po b/addons/delivery/i18n/sv_SE.po index 57a0ace3d22..3295ebd760e 100644 --- a/addons/delivery/i18n/sv_SE.po +++ b/addons/delivery/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/sv_SV.po b/addons/delivery/i18n/sv_SV.po index afdcc411115..9633adcbf78 100644 --- a/addons/delivery/i18n/sv_SV.po +++ b/addons/delivery/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "States" msgstr "" +#. module: delivery +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: delivery #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from packing." diff --git a/addons/delivery/i18n/tr_TR.po b/addons/delivery/i18n/tr_TR.po index 5ba3dc9d19c..bec5c0839bb 100644 --- a/addons/delivery/i18n/tr_TR.po +++ b/addons/delivery/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/uk_UK.po b/addons/delivery/i18n/uk_UK.po index 5e9a308a056..2a11df09f59 100644 --- a/addons/delivery/i18n/uk_UK.po +++ b/addons/delivery/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index c8f32ba15c8..2c22c78a86e 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 9d7aaca655b..26f2a843fd2 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/ar_AR.po b/addons/document/i18n/ar_AR.po index 137cfbb9612..a51b7817089 100644 --- a/addons/document/i18n/ar_AR.po +++ b/addons/document/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/bg_BG.po b/addons/document/i18n/bg_BG.po index ace648e3ef6..3077a4c14b7 100644 --- a/addons/document/i18n/bg_BG.po +++ b/addons/document/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/bs_BS.po b/addons/document/i18n/bs_BS.po index 94c70755d50..a3709090f29 100644 --- a/addons/document/i18n/bs_BS.po +++ b/addons/document/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/ca_ES.po b/addons/document/i18n/ca_ES.po index 33e5ffdb1ea..4a1c39d600b 100644 --- a/addons/document/i18n/ca_ES.po +++ b/addons/document/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/cs_CS.po b/addons/document/i18n/cs_CS.po index 75927b054fb..469d6aeb575 100644 --- a/addons/document/i18n/cs_CS.po +++ b/addons/document/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,19 +16,114 @@ msgstr "" "Plural-Forms: \n" #. module: document -#: field:document.directory,create_date:0 -msgid "Date Created" +#: code:addons/document/document.py:0 +#, python-format +msgid "Directory name contains special characters!" msgstr "" #. module: document -#: field:document.directory,ressource_id:0 -msgid "Resource ID" +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Poznámky" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" msgstr "" #. module: document #: code:addons/document/document.py:0 #, python-format -msgid "Directory name contains special characters!" +msgid "Error!" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_configuration_wizard +msgid "document.configuration.wizard" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "ValidateError" msgstr "" #. module: document @@ -36,24 +131,26 @@ msgstr "" msgid "Include Record Name" msgstr "" -#. module: document -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: document #: constraint:document.directory:0 msgid "Error! You can not create recursive Directories." msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" +#: field:ir.attachment,file_size:0 +msgid "File Size" msgstr "" #. module: document -#: view:ir.attachment:0 -msgid "Preview" +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." msgstr "" #. module: document @@ -61,14 +158,264 @@ msgstr "" msgid "Storing Method" msgstr "" +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "Directory name must be unique!" +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Directory Type" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "You do not permissions to write on the server side." +msgstr "" + +#. module: document +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "Permission Denied !" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: document +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + +#. module: document +#: field:document.directory,create_date:0 +msgid "Date Created" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + #. module: document #: model:ir.actions.act_window,name:document.action_config_auto_directory msgid "Auto Configure Directory" msgstr "" #. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: field:document.directory,ressource_id:0 +msgid "Resource ID" +msgstr "" + +#. module: document +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: document @@ -86,164 +433,25 @@ msgstr "" msgid "Parent Model" msgstr "" -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - #. module: document #: view:document.directory:0 -msgid "Directory Type" +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" msgstr "" #. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Poznámky" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" msgstr "" #. module: document @@ -256,136 +464,8 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_configuration_wizard -msgid "document.configuration.wizard" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" +#: field:document.directory.content,sequence:0 +msgid "Sequence" msgstr "" #. module: document @@ -396,32 +476,12 @@ msgstr "" #. module: document #: code:addons/document/document.py:0 #, python-format -msgid "Directory name must be unique!" +msgid "File name must be unique!" msgstr "" #. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" msgstr "" #. module: document @@ -429,33 +489,8 @@ msgstr "" msgid "Auto Configure" msgstr "" -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - diff --git a/addons/document/i18n/cs_CZ.po b/addons/document/i18n/cs_CZ.po index 81d9d654ec3..d15be923345 100644 --- a/addons/document/i18n/cs_CZ.po +++ b/addons/document/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/de_DE.po b/addons/document/i18n/de_DE.po index 3beeabaf65a..510ebfbfa94 100644 --- a/addons/document/i18n/de_DE.po +++ b/addons/document/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+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 ef5ff057c10..d1c8940237b 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 185caa4e325..8f497ce6a3b 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/es_ES.po b/addons/document/i18n/es_ES.po index 70eb8949afb..e83bef0f19e 100644 --- a/addons/document/i18n/es_ES.po +++ b/addons/document/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/et_EE.po b/addons/document/i18n/et_EE.po index d5669a70582..964baf33a78 100644 --- a/addons/document/i18n/et_EE.po +++ b/addons/document/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: document #: model:ir.model,name:document.model_document_directory_content_type @@ -87,7 +87,7 @@ msgstr "Ressursi pealkiri" #: code:addons/document/document.py:0 #, python-format msgid "Error!" -msgstr "" +msgstr "Viga!" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard @@ -129,7 +129,7 @@ msgstr "" #. module: document #: field:document.directory.content,include_name:0 msgid "Include Record Name" -msgstr "" +msgstr "Kaasa kirje nimi" #. module: document #: constraint:document.directory:0 @@ -481,7 +481,7 @@ msgstr "Sisu nimi" #: code:addons/document/document.py:0 #, python-format msgid "File name must be unique!" -msgstr "" +msgstr "Faili nimi peab olema unikaalne" #. module: document #: field:document.directory,ressource_tree:0 diff --git a/addons/document/i18n/fr_FR.po b/addons/document/i18n/fr_FR.po index 1a8e31d19bd..70049cb6017 100644 --- a/addons/document/i18n/fr_FR.po +++ b/addons/document/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/hr_HR.po b/addons/document/i18n/hr_HR.po index 11e19097a80..d754a883cd7 100644 --- a/addons/document/i18n/hr_HR.po +++ b/addons/document/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/hu_HU.po b/addons/document/i18n/hu_HU.po index 659bec13abb..3764fe34e56 100644 --- a/addons/document/i18n/hu_HU.po +++ b/addons/document/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/it_IT.po b/addons/document/i18n/it_IT.po index d8c9371b2fe..050e726a6b6 100644 --- a/addons/document/i18n/it_IT.po +++ b/addons/document/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/lt_LT.po b/addons/document/i18n/lt_LT.po index bc819ea2a42..896b577be53 100644 --- a/addons/document/i18n/lt_LT.po +++ b/addons/document/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index a8ecf66191c..697b793d25f 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/nl_NL.po b/addons/document/i18n/nl_NL.po index f00015707fb..1291350facc 100644 --- a/addons/document/i18n/nl_NL.po +++ b/addons/document/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/pl_PL.po b/addons/document/i18n/pl_PL.po index 6ae9b6b25e9..8bf23603fba 100644 --- a/addons/document/i18n/pl_PL.po +++ b/addons/document/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 2a76baa0371..8df02470a60 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/pt_PT.po b/addons/document/i18n/pt_PT.po index a7b3f7c81bc..1efc05bcd65 100644 --- a/addons/document/i18n/pt_PT.po +++ b/addons/document/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/ro_RO.po b/addons/document/i18n/ro_RO.po index 2d060a0dc69..55e3c708d40 100644 --- a/addons/document/i18n/ro_RO.po +++ b/addons/document/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/ru_RU.po b/addons/document/i18n/ru_RU.po index 60f39eaf193..fe973ecfb02 100644 --- a/addons/document/i18n/ru_RU.po +++ b/addons/document/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/sl_SL.po b/addons/document/i18n/sl_SL.po index ecb63e41f92..d34117017c0 100644 --- a/addons/document/i18n/sl_SL.po +++ b/addons/document/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/sv_SE.po b/addons/document/i18n/sv_SE.po index 05e512786d6..2be362bda32 100644 --- a/addons/document/i18n/sv_SE.po +++ b/addons/document/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/sv_SV.po b/addons/document/i18n/sv_SV.po index 1641c7466e9..f0cfcd33fab 100644 --- a/addons/document/i18n/sv_SV.po +++ b/addons/document/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,19 +16,114 @@ msgstr "" "Plural-Forms: \n" #. module: document -#: field:document.directory,create_date:0 -msgid "Date Created" +#: code:addons/document/document.py:0 +#, python-format +msgid "Directory name contains special characters!" msgstr "" #. module: document -#: field:document.directory,ressource_id:0 -msgid "Resource ID" +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Anteckningar" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" msgstr "" #. module: document #: code:addons/document/document.py:0 #, python-format -msgid "Directory name contains special characters!" +msgid "Error!" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_configuration_wizard +msgid "document.configuration.wizard" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "ValidateError" msgstr "" #. module: document @@ -36,24 +131,26 @@ msgstr "" msgid "Include Record Name" msgstr "" -#. module: document -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - #. module: document #: constraint:document.directory:0 msgid "Error! You can not create recursive Directories." msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" +#: field:ir.attachment,file_size:0 +msgid "File Size" msgstr "" #. module: document -#: view:ir.attachment:0 -msgid "Preview" +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." msgstr "" #. module: document @@ -61,16 +158,266 @@ msgstr "" msgid "Storing Method" msgstr "" +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "Directory name must be unique!" +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Directory Type" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "You do not permissions to write on the server side." +msgstr "" + +#. module: document +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: code:addons/document/document.py:0 +#, python-format +msgid "Permission Denied !" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: document +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + +#. module: document +#: field:document.directory,create_date:0 +msgid "Date Created" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + #. module: document #: model:ir.actions.act_window,name:document.action_config_auto_directory msgid "Auto Configure Directory" msgstr "" #. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: field:document.directory,ressource_id:0 +msgid "Resource ID" +msgstr "" + +#. module: document +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -86,164 +433,25 @@ msgstr "" msgid "Parent Model" msgstr "" -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Dokumenthantering" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - #. module: document #: view:document.directory:0 -msgid "Directory Type" +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" msgstr "" #. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Anteckningar" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" msgstr "" #. module: document @@ -256,136 +464,8 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_configuration_wizard -msgid "document.configuration.wizard" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" +#: field:document.directory.content,sequence:0 +msgid "Sequence" msgstr "" #. module: document @@ -396,32 +476,12 @@ msgstr "" #. module: document #: code:addons/document/document.py:0 #, python-format -msgid "Directory name must be unique!" +msgid "File name must be unique!" msgstr "" #. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" msgstr "" #. module: document @@ -429,33 +489,8 @@ msgstr "" msgid "Auto Configure" msgstr "" -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - diff --git a/addons/document/i18n/tr_TR.po b/addons/document/i18n/tr_TR.po index 0783f6db320..6121cc1a25f 100644 --- a/addons/document/i18n/tr_TR.po +++ b/addons/document/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/uk_UK.po b/addons/document/i18n/uk_UK.po index 6c8bc2d1c42..27abdc9b242 100644 --- a/addons/document/i18n/uk_UK.po +++ b/addons/document/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 29272946f9f..0ff44ee24d4 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 62783aa1e71..297d276d360 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document_ics/i18n/ar_AR.po b/addons/document_ics/i18n/ar_AR.po index 140fda16d5c..34faa4655c6 100644 --- a/addons/document_ics/i18n/ar_AR.po +++ b/addons/document_ics/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/bg_BG.po b/addons/document_ics/i18n/bg_BG.po index c2f32627ed2..0e77a7fe1ed 100644 --- a/addons/document_ics/i18n/bg_BG.po +++ b/addons/document_ics/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Невалиден XML за преглед на архитектурата" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/bs_BS.po b/addons/document_ics/i18n/bs_BS.po index 5bfea4525eb..aa4be6f700e 100644 --- a/addons/document_ics/i18n/bs_BS.po +++ b/addons/document_ics/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neodgovarajući XML za arhitekturu prikaza!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/ca_ES.po b/addons/document_ics/i18n/ca_ES.po index 8e5dc9c7b69..089a8127558 100644 --- a/addons/document_ics/i18n/ca_ES.po +++ b/addons/document_ics/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "uid" msgid "Error! You can not create recursive Directories." msgstr "Error! No podeu crear directoris recursius." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "Camp OpenERP" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Contingut" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Reunions de calendari compartides" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "assistent" +msgid "url" +msgstr "URL" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "data-final" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "descripció" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,9 +153,9 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "data-impresa" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -85,19 +172,39 @@ msgstr "Calendari ICS" msgid "ICS Value" msgstr "Valor ICS" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML invàlid per a la definició de la vista!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "descripció" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domini" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "últim-modificat" msgid "ICS Mapping" msgstr "Mapa de relacions ICS" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "data-inici" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "Categories" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domini" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,10 +282,15 @@ msgstr "" msgid "summary" msgstr "resum" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "URL" +msgid "attendee" +msgstr "assistent" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -155,3 +302,18 @@ msgstr "document.directori.ics.camps" msgid "Fields Mapping" msgstr "Mapa de camps" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/cs_CS.po b/addons/document_ics/i18n/cs_CS.po index 54e6c2aea9c..b3d5a357da9 100644 --- a/addons/document_ics/i18n/cs_CS.po +++ b/addons/document_ics/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -56,8 +96,50 @@ msgid "dtend" msgstr "" #. module: document_ics -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" msgstr "" #. module: document_ics @@ -66,8 +148,13 @@ msgid "Object" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + +#. module: document_ics +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/cs_CZ.po b/addons/document_ics/i18n/cs_CZ.po index 4a4ebbaac45..247397bcb70 100644 --- a/addons/document_ics/i18n/cs_CZ.po +++ b/addons/document_ics/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/de_DE.po b/addons/document_ics/i18n/de_DE.po index d4e06d8e378..aca82fc3ac7 100644 --- a/addons/document_ics/i18n/de_DE.po +++ b/addons/document_ics/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "uid" msgid "Error! You can not create recursive Directories." msgstr "Fehler! Sie können keine rekursiven Ordner erzeugen." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "OpenERP Feld" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Inhalt" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Shared Calendar Meetings" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "Teilnehmer" +msgid "url" +msgstr "url" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "Enddatum" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "Beschreibung" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,9 +153,9 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "Zeitstempel" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -85,19 +172,39 @@ msgstr "ICS-Kalender" msgid "ICS Value" msgstr "ICS Wert" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "Beschreibung" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domain" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "zuletzt geändert" msgid "ICS Mapping" msgstr "ICS Zuordnung" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "Anfangsdatum" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "Kategorien" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,10 +282,15 @@ msgstr "" msgid "summary" msgstr "Zusammenfassung" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "url" +msgid "attendee" +msgstr "Teilnehmer" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -155,3 +302,18 @@ msgstr "document.directory.ics.fields" msgid "Fields Mapping" msgstr "Mapping Felder" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/document_ics.pot b/addons/document_ics/i18n/document_ics.pot index ba16c190196..cd2f1419638 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/es_AR.po b/addons/document_ics/i18n/es_AR.po index 093ce4dfa94..f3b51d8606d 100644 --- a/addons/document_ics/i18n/es_AR.po +++ b/addons/document_ics/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/es_ES.po b/addons/document_ics/i18n/es_ES.po index 40516484a72..97b74d142c7 100644 --- a/addons/document_ics/i18n/es_ES.po +++ b/addons/document_ics/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "uid" msgid "Error! You can not create recursive Directories." msgstr "¡Error! No puede crear directorios recursivos." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "Campo OpenERP" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Contenido" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Reuniones de calendario compartidas" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "asistente" +msgid "url" +msgstr "URL" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "fecha-final" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "descripción" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,9 +153,9 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "fecha-impresa" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -85,19 +172,39 @@ msgstr "Calendario ICS" msgid "ICS Value" msgstr "Valor ICS" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "¡XML inválido para la definición de la vista!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "descripción" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Dominio" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "último-modificado" msgid "ICS Mapping" msgstr "Mapeo ICS" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "fecha-inicio" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "categorías" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Dominio" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,10 +282,15 @@ msgstr "" msgid "summary" msgstr "resumen" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "URL" +msgid "attendee" +msgstr "asistente" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -155,3 +302,18 @@ msgstr "documento.directorio.ics.campos" msgid "Fields Mapping" msgstr "Mapeo de campos" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/et_EE.po b/addons/document_ics/i18n/et_EE.po index ae71ab7773e..188e952b8d0 100644 --- a/addons/document_ics/i18n/et_EE.po +++ b/addons/document_ics/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "Viga! Sa ei saa luua regrussiivseid kaustu." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "Open ERO väli" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Sisu" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Jagatud kalendri koosolekud" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "kohalviibija" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "kirjeldus" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Vigane XML vaate arhitektuurile!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "kirjeldus" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domeen" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "viimati-muudetud" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "kategooriad" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domeen" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -141,10 +283,15 @@ msgid "summary" msgstr "kokkuvõte" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "url" +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" msgstr "" +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "attendee" +msgstr "kohalviibija" + #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields msgid "document.directory.ics.fields" @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "Väljade seostamised" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/fr_FR.po b/addons/document_ics/i18n/fr_FR.po index 5c3cc8c10d4..b09f61d4c2c 100644 --- a/addons/document_ics/i18n/fr_FR.po +++ b/addons/document_ics/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "uid" msgid "Error! You can not create recursive Directories." msgstr "Erreur ! Vous ne pouvez pas créer de Répertoires récursivement." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "Champ Open ERP" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Contenu" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Calendrier partagé des rendez vous" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "Participant" +msgid "url" +msgstr "url" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "dtend" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "description" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,9 +153,9 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -85,19 +172,39 @@ msgstr "Calendrier ICS" msgid "ICS Value" msgstr "Valeur ICS" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domaine" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "dernière modification" msgid "ICS Mapping" msgstr "Correspondance ICS" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "dtstart" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "catégories" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domaine" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,10 +282,15 @@ msgstr "" msgid "summary" msgstr "résumé" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "url" +msgid "attendee" +msgstr "Participant" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -155,3 +302,18 @@ msgstr "document.directory.ics.fields" msgid "Fields Mapping" msgstr "Correspondance des champs" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/hr_HR.po b/addons/document_ics/i18n/hr_HR.po index 3d63e4d132c..9f1b2fc12b0 100644 --- a/addons/document_ics/i18n/hr_HR.po +++ b/addons/document_ics/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/hu_HU.po b/addons/document_ics/i18n/hu_HU.po index 24bdbc1c4f2..18197556318 100644 --- a/addons/document_ics/i18n/hu_HU.po +++ b/addons/document_ics/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/it_IT.po b/addons/document_ics/i18n/it_IT.po index 550f7e46fdc..e8e19b2e43d 100644 --- a/addons/document_ics/i18n/it_IT.po +++ b/addons/document_ics/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valido per Visualizzazione Architettura!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/lt_LT.po b/addons/document_ics/i18n/lt_LT.po index b123ef6d1a7..7120ccbdb50 100644 --- a/addons/document_ics/i18n/lt_LT.po +++ b/addons/document_ics/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/nl_BE.po b/addons/document_ics/i18n/nl_BE.po index 76f6d6574fe..f7e4b2b32ad 100644 --- a/addons/document_ics/i18n/nl_BE.po +++ b/addons/document_ics/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/nl_NL.po b/addons/document_ics/i18n/nl_NL.po index f3cb7195796..b7c3bb33a56 100644 --- a/addons/document_ics/i18n/nl_NL.po +++ b/addons/document_ics/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Ongeldige XML voor overzicht" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/pl_PL.po b/addons/document_ics/i18n/pl_PL.po index a53cca6993c..422032f1cfd 100644 --- a/addons/document_ics/i18n/pl_PL.po +++ b/addons/document_ics/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Zawartość" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "Kalendarz ICS" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML niewłaściwy dla tej architektury wyświetlania!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domena" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "Kategorie" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domena" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/pt_BR.po b/addons/document_ics/i18n/pt_BR.po index 60579907994..3b41dba1d9a 100644 --- a/addons/document_ics/i18n/pt_BR.po +++ b/addons/document_ics/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Invalido XML para Arquitetura da View" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/pt_PT.po b/addons/document_ics/i18n/pt_PT.po index b3e45c3aa9f..d1199ad5ea4 100644 --- a/addons/document_ics/i18n/pt_PT.po +++ b/addons/document_ics/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "uid" msgid "Error! You can not create recursive Directories." msgstr "Erro! Não é possível criar directorias recursivos." +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "Abrir campos Open ERP" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "Conteúdo" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,14 +72,76 @@ msgstr "Partilhar calendários de reuniões" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "participante" +msgid "url" +msgstr "url" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" msgstr "datafim" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "descrição" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,9 +153,9 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "carimbo-dt" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -85,19 +172,39 @@ msgstr "Calendário ICS" msgid "ICS Value" msgstr "Valor ICS" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML inválido para a arquitectura de vista" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "descrição" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." +msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "Domínio" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,20 +217,55 @@ msgstr "modificado ultima vez" msgid "ICS Mapping" msgstr "Mapeamento ICS" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "datainício" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "categorias" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "Domínio" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -140,10 +282,15 @@ msgstr "" msgid "summary" msgstr "resumo" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "url" +msgid "attendee" +msgstr "participante" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "Mapeamento de campos" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/ro_RO.po b/addons/document_ics/i18n/ro_RO.po index f26882f0bc4..91c28641c7c 100644 --- a/addons/document_ics/i18n/ro_RO.po +++ b/addons/document_ics/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/ru_RU.po b/addons/document_ics/i18n/ru_RU.po index 88e32488e7f..c490fbf9256 100644 --- a/addons/document_ics/i18n/ru_RU.po +++ b/addons/document_ics/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильный XML для просмотра архитектуры!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/sl_SL.po b/addons/document_ics/i18n/sl_SL.po index 251e10e05dd..8ea37c53a5e 100644 --- a/addons/document_ics/i18n/sl_SL.po +++ b/addons/document_ics/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neveljaven XML za arhitekturo pogleda." #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/sv_SE.po b/addons/document_ics/i18n/sv_SE.po index 0ef452c0cfb..906045bed0d 100644 --- a/addons/document_ics/i18n/sv_SE.po +++ b/addons/document_ics/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/sv_SV.po b/addons/document_ics/i18n/sv_SV.po index 071ef9ab2f2..3a14b4665df 100644 --- a/addons/document_ics/i18n/sv_SV.po +++ b/addons/document_ics/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -56,8 +96,50 @@ msgid "dtend" msgstr "" #. module: document_ics -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" msgstr "" #. module: document_ics @@ -66,8 +148,13 @@ msgid "Object" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + +#. module: document_ics +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/tr_TR.po b/addons/document_ics/i18n/tr_TR.po index 84fc17433ea..8ad160e7802 100644 --- a/addons/document_ics/i18n/tr_TR.po +++ b/addons/document_ics/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Görüntüleme mimarisi için Geçersiz XML" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/uk_UK.po b/addons/document_ics/i18n/uk_UK.po index 6e8685e643a..c80a6e3678b 100644 --- a/addons/document_ics/i18n/uk_UK.po +++ b/addons/document_ics/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильний XML для Архітектури Вигляду!" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/zh_CN.po b/addons/document_ics/i18n/zh_CN.po index 6b1091a0dd5..112560336e4 100644 --- a/addons/document_ics/i18n/zh_CN.po +++ b/addons/document_ics/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/document_ics/i18n/zh_TW.po b/addons/document_ics/i18n/zh_TW.po index 0be65e2814a..8c85ed83631 100644 --- a/addons/document_ics/i18n/zh_TW.po +++ b/addons/document_ics/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,16 +30,41 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,jobs:0 +msgid "Jobs Hiring Process" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Configure Calendars for CRM Sections" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,helpdesk:0 +msgid "Helpdesk" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,field_id:0 msgid "Open ERP Field" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Next" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,content_id:0 msgid "Content" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,meeting:0 +msgid "Calendar of Meetings" +msgstr "" + #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting msgid "Shared Calendar Meetings" @@ -47,7 +72,22 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "attendee" +msgid "url" +msgstr "" + +#. module: document_ics +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,bugs:0 +msgid "Used by companies to track bugs and support requests on softwares" +msgstr "" + +#. module: document_ics +#: model:ir.actions.todo,note:document_ics.config_wizard_step_case_section_menu +msgid "This Configuration step use to create Calendars in document for all Case Sections" msgstr "" #. module: document_ics @@ -55,6 +95,53 @@ msgstr "" msgid "dtend" msgstr "" +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "You can not set negative Duration." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,jobs:0 +msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." +msgstr "" + +#. module: document_ics +#: code:addons/document_ics/document.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: document_ics +#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories +msgid "Configure Calendars for Sections " +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,opportunity:0 +msgid "Tracks identified business opportunities for your sales pipeline." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,fund:0 +msgid "This may help associations in their fund raising process and tracking." +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,helpdesk:0 +msgid "Manages an Helpdesk service." +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,fund:0 +msgid "Fund Raising Operations" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "description" +msgstr "" + #. module: document_ics #: field:document.directory.content,ics_object_id:0 msgid "Object" @@ -66,8 +153,8 @@ msgid "Error ! You cannot create recursive sections." msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" +#: model:ir.module.module,shortdesc:document_ics.module_meta_information +msgid "Support for iCal based on Document Management System" msgstr "" #. module: document_ics @@ -85,19 +172,39 @@ msgstr "" msgid "ICS Value" msgstr "" +#. module: document_ics +#: model:ir.module.module,description:document_ics.module_meta_information +msgid "Allows to synchronise calendars with others applications." +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" +#: help:document.ics.crm.wizard,lead:0 +msgid "Allows you to track and manage prospects which are pre-sales requests or contacts, the very first contact with a customer request." msgstr "" #. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" +#: field:document.ics.crm.wizard,name:0 +msgid "Name" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,meeting:0 +msgid "Manages the calendar of meetings of the users." +msgstr "" + +#. module: document_ics +#: field:document.directory.content,ics_domain:0 +msgid "Domain" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,claims:0 +msgid "Manages the supplier and customers claims, including your corrective or preventive actions." msgstr "" #. module: document_ics @@ -110,19 +217,54 @@ msgstr "" msgid "ICS Mapping" msgstr "" +#. module: document_ics +#: view:crm.case:0 +msgid "Duration(In Hour)" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,document_ics:0 +msgid "Shared Calendar" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,claims:0 +msgid "Claims" +msgstr "" + +#. module: document_ics +#: help:document.ics.crm.wizard,phonecall:0 +msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" msgstr "" +#. module: document_ics +#: field:document.ics.crm.wizard,phonecall:0 +msgid "Phone Calls" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,bugs:0 +msgid "Bug Tracking" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "categories" msgstr "" #. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" +#: field:document.ics.crm.wizard,lead:0 +msgid "Prospect" +msgstr "" + +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Create Pre-Configured Calendars" msgstr "" #. module: document_ics @@ -140,9 +282,14 @@ msgstr "" msgid "summary" msgstr "" +#. module: document_ics +#: model:ir.model,name:document_ics.model_document_ics_crm_wizard +msgid "document.ics.crm.wizard" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 -msgid "url" +msgid "attendee" msgstr "" #. module: document_ics @@ -155,3 +302,18 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: document_ics +#: view:document.ics.crm.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document_ics +#: field:document.ics.crm.wizard,opportunity:0 +msgid "Business Opportunities" +msgstr "" + +#. module: document_ics +#: selection:document.directory.ics.fields,name:0 +msgid "dtstamp" +msgstr "" + diff --git a/addons/event/i18n/ar_AR.po b/addons/event/i18n/ar_AR.po index 59e833dc13f..ea4bccb4f06 100644 --- a/addons/event/i18n/ar_AR.po +++ b/addons/event/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/bg_BG.po b/addons/event/i18n/bg_BG.po index 72364438716..6f43464f5ff 100644 --- a/addons/event/i18n/bg_BG.po +++ b/addons/event/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/bs_BS.po b/addons/event/i18n/bs_BS.po index ee48e4c2ca7..466c1f3e109 100644 --- a/addons/event/i18n/bs_BS.po +++ b/addons/event/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/ca_ES.po b/addons/event/i18n/ca_ES.po index f95131ff8eb..4ba33bb5376 100644 --- a/addons/event/i18n/ca_ES.po +++ b/addons/event/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Data de finalització" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Registres mínims" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -34,17 +34,17 @@ msgstr "" #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" -msgstr "Email de registre" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_0_crm_case_section msgid "Concert of Bon Jovi" -msgstr "Concert de Lax'n'Busto" +msgstr "" #. module: event #: field:event.event,mail_confirm:0 msgid "Confirmation Email" -msgstr "Email de confirmació" +msgstr "" #. module: event #: constraint:crm.case.section:0 @@ -54,79 +54,79 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Registre esdeveniment" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Crea factura" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Registres esborrany" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Esdeveniment en el registre" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Accepta" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Correu auto confirmació" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Entrada per a l'òpera" +msgstr "" #. module: event #: code:addons/event/event.py:0 #, python-format msgid "Error!" -msgstr "Error!" +msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Confirma esdeveniment" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section msgid "Opera of Verdi" -msgstr "Òpera de Verdi" +msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Registre esborrany" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Crea factures" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Informació extra" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registre" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Tipus d'esdeveniment" +msgstr "" #. module: event #: view:event.event:0 @@ -134,54 +134,54 @@ msgstr "Tipus d'esdeveniment" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Esdeveniment" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Confirmada" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "Registration Confirmation" -msgstr "Confirmació del registre" +msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Dates" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Registres confirmats" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Correu auto registre" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Distintiu" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Secció del cas" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "Per ser facturat" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Tots els esdeveniments" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,34 +191,34 @@ msgstr "Informe" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Cancel·la registre" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Esdeveniments per categories" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "The event limit is reached. What do you want to do?" -msgstr "S'ha assolit el límit de l'esdeveniment. Què voleu fer?" +msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Confirma registres" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referències" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registre per tipus d'esdeveniment" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -229,7 +229,7 @@ msgstr "Configuració" #: code:addons/event/event.py:0 #, python-format msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "Heu de definir una direcció resposta per a poder enviar un correu al participant. Podeu fer això en la pestanya de Correu electrònic de l'esdeveniment. Fixeu-vos que aquest lloc és també on podeu configurar l'esdeveniment per a que no enviï correus electrònics automàtics mentre s'inscriuen" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -239,7 +239,7 @@ msgstr "XML invàlid per a la definició de la vista!" #. module: event #: wizard_button:event.confirm_registration,split,confirm:0 msgid "Confirm Anyway" -msgstr "Confirma de totes maneres" +msgstr "" #. module: event #: constraint:product.template:0 @@ -249,75 +249,75 @@ msgstr "Error: La UdV ha d'estar en una categoria diferent que la UdM" #. module: event #: view:event.event:0 msgid "Parent Category" -msgstr "Categoria pare" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Registre facturat" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Número d'esdeveniments" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Cancel·la esdeveniment" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Missatges d'error" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Enviament correu" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Entrada per a concert" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Registres sense confirmar" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 msgid "Partner Invoiced" -msgstr "Empresa facturada" +msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Historial de comunicació" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Cancel·lat" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Esdeveniment realitzat" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Nom del distintiu" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Esdeveniments en els registres" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Error: La UdM per defecte i la UdM de compra han d'estar en la mateixa c #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Factura creada" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Estadístiques" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Esborrany" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Descripció de l'esdeveniment" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Tipus d'esdeveniment en el registre" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Esdeveniment relacionat" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Esdeveniments" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Número de registres" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Posició" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Esdeveniments per secció" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,213 +403,213 @@ msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter e #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Tots els registres" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 msgid "Check this box if you want to use the automatic mailing for new registration" -msgstr "Marqueu aquesta opció si voleu utilitzar el correu automàtic per a nous registres" +msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Estableix en esborrany" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Confirmació registre" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Historial" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Tipus d'esdeveniments" +msgstr "" #. module: event #: field:event.registration,contact_id:0 msgid "Partner Contact" -msgstr "Contacte empresa" +msgstr "" #. module: event #: view:event.event:0 msgid "Auto Confirmation Email" -msgstr "Email de confirmació automàtic" +msgstr "" #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "General" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Envia notificació" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Realitzat" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Data inici" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Factura" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Esdeveniments en els registres" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Cancel·la" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Obert" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Títol del distintiu" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Nou esdeveniment" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Preu unitat" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section msgid "Conference on ERP Buisness" -msgstr "Conferència en negocis ERP" +msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Empresa distingida" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Esdeveniments confirmats" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Registres màxims" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Tipus" +msgstr "" #. module: event #: help:event.event,mail_registr:0 msgid "This email will be sent when someone subscribes to the event." -msgstr "Aquest correu electrònic serà enviat quan algú es subscrigui a l'esdeveniment." +msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Entrada per a conferència" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Cas" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Nom" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "Marqueu aquesta opció si voleu utilitzar el correu de confirmació automàtic o recordatori" +msgstr "" #. module: event #: help:event.event,mail_confirm:0 msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "Aquest correu electrònic serà enviat quan l'esdeveniment sigui confirmat o quan algú es subscrigui a un esdeveniment confirmat. Aquest és també el correu que serà enviat per a recordar a algú sobre l'esdeveniment." +msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Producte" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Etiqueta factura" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Pagaments" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Tipus d'esdeveniment" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registres" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Esdeveniments en esborrany" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Factura refusada" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Organització d'esdeveniments" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Accions" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Llista d'empreses registrades" +msgstr "" #. module: event #: constraint:product.product:0 @@ -619,5 +619,5 @@ msgstr "Error: Codi EAN erroni" #. module: event #: view:event.event:0 msgid "Auto Registration Email" -msgstr "Email de registre automàtic" +msgstr "" diff --git a/addons/event/i18n/cs_CS.po b/addons/event/i18n/cs_CS.po index 1e8331ce9cb..2243d976f32 100644 --- a/addons/event/i18n/cs_CS.po +++ b/addons/event/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "Minimum Registrations" msgstr "" +#. module: event +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" @@ -41,6 +46,11 @@ msgstr "" msgid "Confirmation Email" msgstr "" +#. module: event +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" @@ -137,8 +147,8 @@ msgid "Registration Confirmation" msgstr "" #. module: event -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: view:event.registration:0 +msgid "Dates" msgstr "" #. module: event @@ -222,8 +232,8 @@ msgid "You must define a reply-to address in order to mail the participant. You msgstr "" #. module: event -#: view:event.registration:0 -msgid "Dates" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: event @@ -507,8 +517,9 @@ msgid "Confirmed Events" msgstr "" #. module: event -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." +#: field:event.event,register_max:0 +#: field:report.event.registration,register_max:0 +msgid "Maximum Registrations" msgstr "" #. module: event @@ -580,12 +591,6 @@ msgstr "" msgid "Draft Events" msgstr "" -#. module: event -#: field:event.event,register_max:0 -#: field:report.event.registration,register_max:0 -msgid "Maximum Registrations" -msgstr "" - #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" diff --git a/addons/event/i18n/cs_CZ.po b/addons/event/i18n/cs_CZ.po index f3a5e547a0c..8c7e250f60f 100644 --- a/addons/event/i18n/cs_CZ.po +++ b/addons/event/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/de_DE.po b/addons/event/i18n/de_DE.po index 53cd6d41483..a042061bd24 100644 --- a/addons/event/i18n/de_DE.po +++ b/addons/event/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Ende Datum" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Minimum Anmeldungen" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -54,48 +54,48 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Veranstaltung" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Erzeuge Rechnung" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Entwurf Anmeldungen" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Veranstaltungen mit Anmeldungen" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "OK" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Mail Auto Benachrichtigung" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Ticket für Oper" +msgstr "" #. module: event #: code:addons/event/event.py:0 #, python-format msgid "Error!" -msgstr "Fehler!" +msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Bestätige Veranstaltung" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section @@ -105,28 +105,28 @@ msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Entwurf Anmeldung" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Erzeuge Rechnungen" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Extra Info" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Anmeldung" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Veranstaltungstyp" +msgstr "" #. module: event #: view:event.event:0 @@ -134,12 +134,12 @@ msgstr "Veranstaltungstyp" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Veranstaltung" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Bestätigt" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -149,29 +149,29 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Termine" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Bestätigte Anmeldungen" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Mail Automatische Anmeldungen" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Namensschild" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Fall Kategorie" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 @@ -181,7 +181,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Alle Veranstaltungen" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,12 +191,12 @@ msgstr "Berichtswesen" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Absagen Anmeldung" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Veranstaltungen nach Kategorien" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -206,19 +206,19 @@ msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Bestätige Anmeldung" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referenzen" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Anmeldungen nach Veranstaltungstyp" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -254,39 +254,39 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Anmeldungen (berechnet)" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Anzahl Veranstaltungen" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Abbrechen Veranstaltung" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Fehlermeldungen" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Nachricht" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Ticket für Konzert" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Nicht bestätigte Anmeldungen" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 @@ -296,17 +296,17 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Kommunikation Historie" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Abgebrochen" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Veranstaltung erledigt" +msgstr "" #. module: event #: field:event.registration,badge_name:0 @@ -317,7 +317,7 @@ msgstr "" #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Veranstaltungen nach Anmeldungen" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Fehler: Die Standard UOM sowie die Beschaffungs UOM muss in derselben Ka #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Rechnung erzeugt" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statistiken" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Entwurf" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Veranstaltung Beschreibung" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Veranstaltungstyp nach Anmeldungen" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "verbundene Veranstaltung" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Ereignisse" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Anzahl Anmeldungen" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Status" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Veranstaltungen nach Sektionen" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,7 +403,7 @@ msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen b #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Alle Anmeldungen" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 @@ -413,24 +413,24 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Setze auf Entwurf" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Bestätige Anmeldung" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Historie" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Veranstaltungstypen" +msgstr "" #. module: event #: field:event.registration,contact_id:0 @@ -446,33 +446,33 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Generell" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Sende Erinnerung" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Erledigt" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Anfangsdatum" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Rechnung" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Veranstaltung nach Anmeldungen" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 @@ -482,7 +482,7 @@ msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Offen" +msgstr "" #. module: event #: field:event.registration,badge_title:0 @@ -493,12 +493,12 @@ msgstr "" #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Neue Veranstaltung" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Preis der Einhiet" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section @@ -514,18 +514,18 @@ msgstr "" #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Bestätige Veranstaltungen" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Max. Anmeldungen" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: event #: help:event.event,mail_registr:0 @@ -535,81 +535,81 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Karten für Konferenz" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Fall" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Bezeichnung" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "Aktivieren für automatische EMail Bestätigung und Erinnerung" +msgstr "" #. module: event #: help:event.event,mail_confirm:0 msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "Dieses EMail wird versandt, wenn die Veranstaltung bestätigt wird oder jemand sich anmeldet oder für eine Erinnerung" +msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Produkt" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Etikett Rechnung" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Zahlungen" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Veranstaltungsart" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registrierungen" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Entfurf Veranstaltung" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Rechnung abgelehnt" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Veranstaltung Organisation" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Aktionen" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Liste rehistrierte Partner" +msgstr "" #. module: event #: constraint:product.product:0 @@ -619,5 +619,5 @@ msgstr "Fehler: Falscher EAN code" #. module: event #: view:event.event:0 msgid "Auto Registration Email" -msgstr "Autom. Registrierungs-EMail" +msgstr "" diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index 721cffb133f..2c508a4da59 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/es_ES.po b/addons/event/i18n/es_ES.po index 1057922e3a8..e58929953d2 100644 --- a/addons/event/i18n/es_ES.po +++ b/addons/event/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Fecha de finalización" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Registros mínimos" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -34,17 +34,17 @@ msgstr "" #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" -msgstr "Email de registro" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_0_crm_case_section msgid "Concert of Bon Jovi" -msgstr "Concierto de Bon Jovi" +msgstr "" #. module: event #: field:event.event,mail_confirm:0 msgid "Confirmation Email" -msgstr "Email de confirmación" +msgstr "" #. module: event #: constraint:crm.case.section:0 @@ -54,79 +54,79 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Registro evento" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Crear factura" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Registros borrador" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Evento en el registro" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Aceptar" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Envair correo auto confirmación" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Entrada para la ópera" +msgstr "" #. module: event #: code:addons/event/event.py:0 #, python-format msgid "Error!" -msgstr "¡Error!" +msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Confirmar evento" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section msgid "Opera of Verdi" -msgstr "Ópera de Verdi" +msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Registro borrador" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Crear facturas" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Información extra" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registro" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Tipo de evento" +msgstr "" #. module: event #: view:event.event:0 @@ -134,54 +134,54 @@ msgstr "Tipo de evento" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Evento" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Confirmado" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "Registration Confirmation" -msgstr "Confirmación del registro" +msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Fechas" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Registros confirmados" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Enviar correo auto registro" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Distintivo" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Sección del caso" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "Para ser facturado" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Todos los eventos" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,34 +191,34 @@ msgstr "Informe" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Cancelar registro" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Eventos por categorías" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "The event limit is reached. What do you want to do?" -msgstr "Se ha alcanzado el límite del evento. ¿Qué desea hacer?" +msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Confirmar registros" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referencias" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registro por tipos de evento" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -229,7 +229,7 @@ msgstr "Configuración" #: code:addons/event/event.py:0 #, python-format msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "Debe definir una dirección respuesta para poder enviar un correo al participante. Puede hacer esto en la pestaña de Correo electrónico de su evento. Fíjese en que éste es también el lugar donde puede configurar su evento para que no envíe correos electrónicos automáticos mientras se inscriban" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -239,7 +239,7 @@ msgstr "¡XML inválido para la definición de la vista!" #. module: event #: wizard_button:event.confirm_registration,split,confirm:0 msgid "Confirm Anyway" -msgstr "Confirmar de todos modos" +msgstr "" #. module: event #: constraint:product.template:0 @@ -249,75 +249,75 @@ msgstr "Error: La UdV debe estar en una categoría diferente que la UdM" #. module: event #: view:event.event:0 msgid "Parent Category" -msgstr "Categoría padre" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Registro facturado" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Número de eventos" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Cancelar evento" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Mensajes de error" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Envío correo" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Entrada para concierto" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Registros sin confirmar" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 msgid "Partner Invoiced" -msgstr "Empresa facturada" +msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Historial de comunicación" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Cancelado" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Evento realizado" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Nombre del distintivo" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Eventos en los registros" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Error: La UdM por defecto y la UdM de compra deben estar en la misma cat #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Factura creada" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Estadísticas" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Borrador" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Descripción del evento" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Tipo de evento en el registro" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Evento relacionado" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Eventos" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Número de registros" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Estado" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Eventos por sección" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,213 +403,213 @@ msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún caráct #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Todos los registros" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 msgid "Check this box if you want to use the automatic mailing for new registration" -msgstr "Marque esta opción si desea utilizar el correo automático para nuevos registros" +msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Establecer en borrador" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Confirmación registro" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Historial" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Tipos de eventos" +msgstr "" #. module: event #: field:event.registration,contact_id:0 msgid "Partner Contact" -msgstr "Contacto empresa" +msgstr "" #. module: event #: view:event.event:0 msgid "Auto Confirmation Email" -msgstr "Email de confirmación automático" +msgstr "" #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "General" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Enviar recordatorio" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Realizado" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Fecha inicio" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Factura" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Eventos en los registros" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Abierto" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Título del distintivo" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Nuevo evento" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Precio unidad" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section msgid "Conference on ERP Buisness" -msgstr "Conferencia en negocios ERP" +msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Empresa distinguida" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Eventos confirmados" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Registros máximos" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Tipo" +msgstr "" #. module: event #: help:event.event,mail_registr:0 msgid "This email will be sent when someone subscribes to the event." -msgstr "Este correo electrónico será enviado cuando alguien se suscriba al evento." +msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Entrada para conferencia" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Caso" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Nombre" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "Marque esta opción si desea utilizar el correo de confirmación automático o el recordatorio" +msgstr "" #. module: event #: help:event.event,mail_confirm:0 msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "Este correo electrónico será enviado cuando el evento sea confirmado o cuando alguien se suscriba a un evento confirmado. Éste es también el correo que será enviado para recordar a alguien sobre el evento." +msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Producto" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Etiqueta factura" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Pagos" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Tipo de evento" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registros" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Eventos en borrador" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Factura rechazada" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Organización de eventos" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Acciones" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Lista de empresas registradas" +msgstr "" #. module: event #: constraint:product.product:0 @@ -619,5 +619,5 @@ msgstr "Error: Código EAN erróneo" #. module: event #: view:event.event:0 msgid "Auto Registration Email" -msgstr "Email de registro automático" +msgstr "" diff --git a/addons/event/i18n/et_EE.po b/addons/event/i18n/et_EE.po index 9c4b02b873b..7005f25db04 100644 --- a/addons/event/i18n/et_EE.po +++ b/addons/event/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,32 +19,32 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Lõpu kuupäev" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Miinimum registreerimised" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" -msgstr "Registreerimise Email" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_0_crm_case_section msgid "Concert of Bon Jovi" -msgstr "Bon Jovi kontsert" +msgstr "" #. module: event #: field:event.event,mail_confirm:0 msgid "Confirmation Email" -msgstr "Kinnitus Email" +msgstr "" #. module: event #: constraint:crm.case.section:0 @@ -54,37 +54,37 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Sündmuse registreerimine" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Loo arve" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Registreerimiste mustand" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Registreerimise sündmus" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "OK" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Autokinnituse meil" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Ooperi pilet" +msgstr "" #. module: event #: code:addons/event/event.py:0 @@ -95,38 +95,38 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Kinnita sündmus" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section msgid "Opera of Verdi" -msgstr "Verdi ooper" +msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Registreerimise mustand" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Loo arved" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Täiendav info" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registreerimine" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Sündmuse liik" +msgstr "" #. module: event #: view:event.event:0 @@ -134,34 +134,34 @@ msgstr "Sündmuse liik" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Sündmus" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Kinnitatud" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "Registration Confirmation" -msgstr "Registreerimise kinnitus" +msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Kuupäevad" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Kinnitatud registreerimised" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Autoregistreerimise mail" +msgstr "" #. module: event #: view:event.registration:0 @@ -171,17 +171,17 @@ msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Juhtumi jaotis" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "Tehakse arve" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Kõik sündmused" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,34 +191,34 @@ msgstr "Aruandlus" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Loobu registreerimisest" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Sündmused kategooriajärgi" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "The event limit is reached. What do you want to do?" -msgstr "Saabus sündmuste limiit. Mida sa soovid teha?" +msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Kinnita registreerimised" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Viited" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registreerimine sündmuse liigijärgi" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -239,85 +239,85 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: event #: wizard_button:event.confirm_registration,split,confirm:0 msgid "Confirm Anyway" -msgstr "Kinnita siiski" +msgstr "" #. module: event #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: event #: view:event.event:0 msgid "Parent Category" -msgstr "Ülemkategooria" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Registreerimine arveks tehtud" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Sündmuste arve" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Loobu sündmusest" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Veateated" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Postitan" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Kontserdi pilet" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Kinnitamatta registreerimised" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 msgid "Partner Invoiced" -msgstr "Partnerile arve tehtud" +msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Kommunikatsiooni alalugu" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Tühistatud" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Sündmus valmis" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Embleemi nimi" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Registreerimiste sündmused" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Viga: vaikimisi mõõtühik ja ostu mõõtühik peavad olema samast kate #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Arve loodud" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statistika" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Mustand" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Sündmuse kirjeldus" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Registreerimise sündmuse liik" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Seotud sündmus" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Sündmused" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Registreerimiste arv" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Staatus" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Sündmused sektsioonijärgi" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -430,7 +430,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Sündmuste liigid" +msgstr "" #. module: event #: field:event.registration,contact_id:0 @@ -487,7 +487,7 @@ msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Embleemi pealkiri" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form @@ -508,7 +508,7 @@ msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Partneri embleem" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm @@ -525,7 +525,7 @@ msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Liik" +msgstr "" #. module: event #: help:event.event,mail_registr:0 @@ -576,7 +576,7 @@ msgstr "" #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Sündmuse liik" +msgstr "" #. module: event #: view:event.event:0 @@ -594,7 +594,7 @@ msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Arve väljapraagitud" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main @@ -614,7 +614,7 @@ msgstr "" #. module: event #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/event.pot b/addons/event/i18n/event.pot index 482beb8a04c..18e17e138c0 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/fr_FR.po b/addons/event/i18n/fr_FR.po index 1e84d56e763..8130a884627 100644 --- a/addons/event/i18n/fr_FR.po +++ b/addons/event/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Date de Fin" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Inscriptions Minimum" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -34,17 +34,17 @@ msgstr "" #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" -msgstr "Email d'inscription" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_0_crm_case_section msgid "Concert of Bon Jovi" -msgstr "Concert de Bon Jovi" +msgstr "" #. module: event #: field:event.event,mail_confirm:0 msgid "Confirmation Email" -msgstr "Confirmation par email" +msgstr "" #. module: event #: constraint:crm.case.section:0 @@ -54,79 +54,79 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Inscription de l'Évenement" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Créer facture" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Inscriptions Brouillon" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Évènement à l'Inscription" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Mail de confirmation automatique" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Ticket d'Opera" +msgstr "" #. module: event #: code:addons/event/event.py:0 #, python-format msgid "Error!" -msgstr "Erreur!" +msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Confirmez l'Évènement" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section msgid "Opera of Verdi" -msgstr "Opéra de Verdi" +msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Inscription Brouillon" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Créer les Factures" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Infos Complémentaires" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Inscription" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Type d'Évènement" +msgstr "" #. module: event #: view:event.event:0 @@ -134,54 +134,54 @@ msgstr "Type d'Évènement" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Évènement" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Confirmé" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "Registration Confirmation" -msgstr "Confirmation d'inscription" +msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Dates" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Inscriptions Confirmées" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Mail d'inscription automatique" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Badge" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Section de cas" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "À facturer" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Tous les évènements" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,34 +191,34 @@ msgstr "Reporting" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Annuler l'Inscription" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Évènements par Catégorie" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "The event limit is reached. What do you want to do?" -msgstr "Les limites de l'évènement sont atteintes. Que voulez vous faire ?" +msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Confirmez les Inscriptions" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Références" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Inscriptions par Types d'Évènements" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -229,7 +229,7 @@ msgstr "Configuration" #: code:addons/event/event.py:0 #, python-format msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "Vous devez définir une adresse de 'répondre à' afin d'envoyer un mail au participant. Vous pouvez le faire dans l'onglet envoi de votre évènement. Notes que ceci est également l'endroit ou vous pouvez configurer votre évènement pour ne pas envoyer d email automatiquement lors de l'inscription" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -239,7 +239,7 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: event #: wizard_button:event.confirm_registration,split,confirm:0 msgid "Confirm Anyway" -msgstr "Confirmer quoi qu'il en soit" +msgstr "" #. module: event #: constraint:product.template:0 @@ -249,75 +249,75 @@ msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente #. module: event #: view:event.event:0 msgid "Parent Category" -msgstr "Catégorie parent" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Inscriptions Facturées" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Nombre d'Évènements" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Annuler l'Évènement" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Messages d'erreur" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Envoi" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Ticket de Concert" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Inscriptions Non Confirmées" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 msgid "Partner Invoiced" -msgstr "Partenaire facturé" +msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Historique de la communication" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Annulé" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Évènement Effectué" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Nom du Badge" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Évènements à l'Inscription" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doi #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Facture créée" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statistiques" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Brouillon" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Description de l'Évènement" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Type d'Évènement à l'Inscription" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Évènement lié" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Évènements" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Nombre d'Inscription" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "État" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Évènements par section" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,213 +403,213 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Toutes les Inscriptions" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 msgid "Check this box if you want to use the automatic mailing for new registration" -msgstr "Cocher cette case si vous voulez utiliser un envoi automatique pour chaque nouvelle inscription" +msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Mettre à l'état Brouillon" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Confirmer l'Inscription" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Historique" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Types d'Évènements" +msgstr "" #. module: event #: field:event.registration,contact_id:0 msgid "Partner Contact" -msgstr "Contact du partenaire" +msgstr "" #. module: event #: view:event.event:0 msgid "Auto Confirmation Email" -msgstr "Mail de confirmation automatique" +msgstr "" #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Général" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Envoyer un rappel" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Terminé" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Date de début" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Facture" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Évènements à l'Inscription" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Annuler" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Ouvert" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Titre du Badge" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Nouvel évènement" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Prix unitaire" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section msgid "Conference on ERP Buisness" -msgstr "Conférence sur les marchés de l'ERP" +msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Badge partenaire" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Évènements Confirmés" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Inscriptions Maximum" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Type" +msgstr "" #. module: event #: help:event.event,mail_registr:0 msgid "This email will be sent when someone subscribes to the event." -msgstr "Cet email sera envoyé quand quelqu'un souscrira à un évènement." +msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Ticket de Conférence" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Cas" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Nom" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "Cocher cette case si vous voulez utiliser un envoi de confirmation automatique ou un rappel" +msgstr "" #. module: event #: help:event.event,mail_confirm:0 msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "Cet email sera envoyé lorsque l'évènement sera confirmé ou quand quelqu'un s'inscrira à un évènement confirmé. Également ceci enverra un email de rappel à propos de l'évènement." +msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Produit" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Libellé de la facture" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Paiements" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Type d'évènement" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Inscriptions" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Évènements Brouillon" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Facture Rejetée" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Organisation des Évènements" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Actions" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Lister les Partenaires Inscrits" +msgstr "" #. module: event #: constraint:product.product:0 @@ -619,5 +619,5 @@ msgstr "Erreur: code EAN invalide" #. module: event #: view:event.event:0 msgid "Auto Registration Email" -msgstr "Mail d'inscription automatique" +msgstr "" diff --git a/addons/event/i18n/hr_HR.po b/addons/event/i18n/hr_HR.po index b393de14448..900babb8e38 100644 --- a/addons/event/i18n/hr_HR.po +++ b/addons/event/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/hu_HU.po b/addons/event/i18n/hu_HU.po index 2d3c5292978..452c66d3468 100644 --- a/addons/event/i18n/hu_HU.po +++ b/addons/event/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/it_IT.po b/addons/event/i18n/it_IT.po index 5c15b2ffdc2..992f26cda1f 100644 --- a/addons/event/i18n/it_IT.po +++ b/addons/event/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Data di Fine" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Registrazioni minime" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -54,37 +54,37 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Registrazione Evento" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Crea Fattura" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Registazione Bozza" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Evento su Registrazione" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "OK" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Mail di Auto Conferma" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Biglietti per l'Opera" +msgstr "" #. module: event #: code:addons/event/event.py:0 @@ -95,7 +95,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Conferma Evento" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section @@ -105,28 +105,28 @@ msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Bozza Registrazione" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Crea Fattura" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Altri Informazioni" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registrazione" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Tipo Evento" +msgstr "" #. module: event #: view:event.event:0 @@ -134,12 +134,12 @@ msgstr "Tipo Evento" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Evento" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Confermato" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -149,29 +149,29 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Date" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Registrazioni Confermati" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Mail Registrazione Automatico" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Tesserino" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Sezione Caso" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 @@ -181,7 +181,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Tutti gli Eventi" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,12 +191,12 @@ msgstr "Reportistica" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Annulla Registrazione" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Eventi per Categoria" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -206,19 +206,19 @@ msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Conferma Registrazione" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referimenti" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registrazione per Tipo di Evento" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -254,39 +254,39 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Registrazione Fatturata" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Numero dei Eventi" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Annulla Eventi" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Messaggi di Errore" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Mailing" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Biglieeto per Concerto" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Registrazione non confermati" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 @@ -296,28 +296,28 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Storia Comunicazione" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Annullata" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Evento Finito" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Nome Tesserinno" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Eventi su Registrazione" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Errore: l'unità di misura predefinita e l'unità di misura d'acquisto d #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Fattura Creata" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statistiche" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Bozza" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Descrizione Evento" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Tipo di Evento su Rgistrazione" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Evento Collegato" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Eventi" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Numero di Registrazione" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Stato" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Eventi per Sezione" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,7 +403,7 @@ msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Tutte le Registrazioni" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 @@ -413,25 +413,24 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Imposta per Bozza" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Conferma Registrazione" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Eventi\r\n" -"Cronologia" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Tipo di Eventi" +msgstr "" #. module: event #: field:event.registration,contact_id:0 @@ -447,60 +446,59 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Generale" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Invia Promemoria" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Fatto" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Data di Inizio" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Fattura" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Eventi su Registrazione\r\n" -"Eventi nella Registrazione" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Annulla" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Apri" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Titolo Tesserino" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Nuovo Evento" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Prezzo Unitario" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section @@ -510,24 +508,24 @@ msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Tesserino Partner" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Eventi Confermati" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Registrazioni Massime" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Tipo" +msgstr "" #. module: event #: help:event.event,mail_registr:0 @@ -537,17 +535,17 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Biglietto per Conferenze" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Caso" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Nome" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 @@ -562,56 +560,56 @@ msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Prodotto" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Etichetta Fattura" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Pagamenti" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Tipo di Evento" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registrazioni" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Bozze dei Eventi" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Fattura Rifiutata" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Organizzazione dei Eventi" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Azioni" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Lista dei Registrazione Partner" +msgstr "" #. module: event #: constraint:product.product:0 diff --git a/addons/event/i18n/lt_LT.po b/addons/event/i18n/lt_LT.po index e39e7201da3..384114e587b 100644 --- a/addons/event/i18n/lt_LT.po +++ b/addons/event/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index 3da2ba6ec7c..1defe598582 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/nl_NL.po b/addons/event/i18n/nl_NL.po index fc407a516b0..a52e1713675 100644 --- a/addons/event/i18n/nl_NL.po +++ b/addons/event/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Einddatum" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Minimum Registraties" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -54,37 +54,37 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Gebeurtenis Registratie" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Maak factuur" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Concept Registraties" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Gebeurtenis voor Registratie" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Email Automatische Bevestiging" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Operakaartje" +msgstr "" #. module: event #: code:addons/event/event.py:0 @@ -95,7 +95,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Gebeurtenis Bevestigen" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section @@ -105,28 +105,28 @@ msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Concept Registratie" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Facturen aanmaken" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Extra info" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registratie" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Soort Gebeurtenis" +msgstr "" #. module: event #: view:event.event:0 @@ -134,12 +134,12 @@ msgstr "Soort Gebeurtenis" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Gebeurtenis" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Bevestigd" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -149,39 +149,39 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Data" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Bevestigde Registraties" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Automatische mail Registratie" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Badge" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Dossier Sectie" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "Te factureren" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Alle Gebeurtenissen" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,12 +191,12 @@ msgstr "Rapportering" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Registratie Annuleren" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Gebeurtenissen per Categorieën" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -206,19 +206,19 @@ msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Bevestig Registraties" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referenties" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registratie per Soort Gebeurtenis" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -254,39 +254,39 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Regitratie Gefactureerd" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Aantal Gebeurtenissen" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Annuleer Gebeurtenis" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Foutmeldingen" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Mailing" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Concertkaartje" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Onbevestigde Registraties" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 @@ -296,28 +296,28 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Communicatie Historie" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Geannuleerd" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Gebeurtenis Afgerond" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Badge Naam" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Gebeurtenissen bij Registraties" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Fout: de standaard meeteenheid en de inkoopeenheid moet in de zelfde cat #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Factuur gemaakt" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statistieken" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Concept" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Omschrijving Gebeurtenis" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Soort Gebeurtenis bij Registratie" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Gerelateerde Gebeurtenis" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Gebeurtenissen" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Aantal Registraties" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Status" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Gebeurtenissen per sectie" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,7 +403,7 @@ msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatt #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Alle Registraties" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 @@ -413,24 +413,24 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Zet in Concept" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Registratie Bevestigen" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Historie" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Soorten Gebeurtenissen" +msgstr "" #. module: event #: field:event.registration,contact_id:0 @@ -446,59 +446,59 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Algemeen" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Verzend Herinnering" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Voltooid" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Startdatum" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Factuur" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Gebeurtenissen per registraties" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Annuleren" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Openen" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Badge Titel" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Nieuwe Gebeurtenis" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Prijseenheid" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section @@ -508,24 +508,24 @@ msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Badge Relatie" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Bevestigde Relaties" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Maximum Registraties" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Soort" +msgstr "" #. module: event #: help:event.event,mail_registr:0 @@ -535,17 +535,17 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Conferentiekaartje" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Zaak" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Naam" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 @@ -560,56 +560,56 @@ msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Product" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Markeer Factuur" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Betalingen" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Soort Gebeurtenis" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registraties" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Concept Gebeurtenissen" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Factuur Geweigerd" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Gebeurtenissen Organistatie" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Acties" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Toon Geregistreerde Relaties" +msgstr "" #. module: event #: constraint:product.product:0 diff --git a/addons/event/i18n/pl_PL.po b/addons/event/i18n/pl_PL.po index ca6290c87b7..a21e65eafb2 100644 --- a/addons/event/i18n/pl_PL.po +++ b/addons/event/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Data zakończenia" +msgstr "" #. module: event #: field:event.event,register_min:0 @@ -54,7 +54,7 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Rejestracja wydarzenia" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice @@ -74,7 +74,7 @@ msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 @@ -95,7 +95,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Potwierdź wydarzenie" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section @@ -115,18 +115,18 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Dodatkowe informacje" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Rejestracja" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Typ zdarzenia" +msgstr "" #. module: event #: view:event.event:0 @@ -134,12 +134,12 @@ msgstr "Typ zdarzenia" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Zdarzenie" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Potwierdzone" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -149,7 +149,7 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Daty" +msgstr "" #. module: event #: field:event.event,register_current:0 @@ -181,7 +181,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Wszystkie zdarzenia" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,12 +191,12 @@ msgstr "Raportowanie" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Anuluj rejestrację" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Zdarzenia według kategorii" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -211,7 +211,7 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referencje" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration @@ -259,17 +259,17 @@ msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Liczba zdarzeń" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Anuluj zdarzenie" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Informacje o błędach" +msgstr "" #. module: event #: view:event.event:0 @@ -301,7 +301,7 @@ msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Anulowane" +msgstr "" #. module: event #: view:event.event:0 @@ -332,12 +332,12 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Statystyki" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Roboczy" +msgstr "" #. module: event #: view:event.event:0 @@ -388,7 +388,7 @@ msgstr "" #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Stan" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories @@ -525,7 +525,7 @@ msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: event #: help:event.event,mail_registr:0 diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index 9cce6c27d9b..fc82e10b92c 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/pt_PT.po b/addons/event/i18n/pt_PT.po index 3f9a4cb7a97..91f79679e35 100644 --- a/addons/event/i18n/pt_PT.po +++ b/addons/event/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Data de fim" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Registos mínimos" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -34,17 +34,17 @@ msgstr "" #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" -msgstr "Email de registação" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_0_crm_case_section msgid "Concert of Bon Jovi" -msgstr "Concerto do Bon Jovi" +msgstr "" #. module: event #: field:event.event,mail_confirm:0 msgid "Confirmation Email" -msgstr "Confirmação do email" +msgstr "" #. module: event #: constraint:crm.case.section:0 @@ -54,79 +54,79 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Registo de evento" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Criar factura" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Rascunho de registos" +msgstr "" #. module: event #: view:report.event.registration:0 msgid "Event on Registration" -msgstr "Evento sobre registos" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 msgid "Mail Auto Confirm" -msgstr "Auto confirmar correspondência" +msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Bilhetes para oprea" +msgstr "" #. module: event #: code:addons/event/event.py:0 #, python-format msgid "Error!" -msgstr "Erro!" +msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Confirmar evento" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section msgid "Opera of Verdi" -msgstr "Opera de Verdi" +msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Rascunho de registos" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Criar facturas" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Informação extra" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Registo" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Tipo de evento" +msgstr "" #. module: event #: view:event.event:0 @@ -134,54 +134,54 @@ msgstr "Tipo de evento" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Evento" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Confirmado" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "Registration Confirmation" -msgstr "Confirmação do registo" +msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Datas" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Registos confirmados" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 msgid "Mail Auto Register" -msgstr "Email de registo auto" +msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Cartão" +msgstr "" #. module: event #: field:event.event,section_id:0 msgid "Case section" -msgstr "Secção do processo" +msgstr "" #. module: event #: field:event.registration,tobe_invoiced:0 msgid "To be Invoiced" -msgstr "A ser facturado" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Todos os Eventos" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,34 +191,34 @@ msgstr "Relatório" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Cancelar registo" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "Eventos por categorias" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 msgid "The event limit is reached. What do you want to do?" -msgstr "O limite do evento foi alcançado. O que deseja fazer" +msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Confirmar registos" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Referências" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Registos por tipos de eventos" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -229,7 +229,7 @@ msgstr "Configuração" #: code:addons/event/event.py:0 #, python-format msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "Você deve definir o endereço a responder a fim de enviar email ao participante. Você pode fazer-o na aba de envio de email do seu evento. Note que este é igualmente o lugar onde você pode configurar seu evento para não emitir email automaticamente ao registar" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -239,7 +239,7 @@ msgstr "XML inválido para a arquitectura de vista" #. module: event #: wizard_button:event.confirm_registration,split,confirm:0 msgid "Confirm Anyway" -msgstr "Confirmar na mesma" +msgstr "" #. module: event #: constraint:product.template:0 @@ -249,75 +249,75 @@ msgstr "Erro: UOS deve estar em uma categoria diferente do que o UOM" #. module: event #: view:event.event:0 msgid "Parent Category" -msgstr "Categoria pai" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration Invoiced" -msgstr "Registo facturado" +msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Numero de eventos" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Cancelar evento" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Mensagens de Erro" +msgstr "" #. module: event #: view:event.event:0 msgid "Mailing" -msgstr "Envio" +msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Bilhete para concerto" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Registos não confirmados" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 msgid "Partner Invoiced" -msgstr "Terceiro facturado" +msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Histórico de comunicação" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Cancelado" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Evento terminado" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Nome do destintivo" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration #: model:ir.ui.menu,name:event.menu_report_event_registration msgid "Events On Registrations" -msgstr "Eventos Em Registos" +msgstr "" #. module: event #: constraint:product.template:0 @@ -327,27 +327,27 @@ msgstr "Erro: O UOM por defeito e o UOM de compra devem estar na mesma categori #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Factura criada" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Estatísticas" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Rascunho" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Descrição de evento" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration msgid "Event type on registration" -msgstr "Tipo de evento no registo" +msgstr "" #. module: event #: model:ir.module.module,description:event.module_meta_information @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Evento relacionado" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "Eventos" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Numero de registo" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Estado" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "Eventos por secção" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,213 +403,213 @@ msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter e #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Todos os registos" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 msgid "Check this box if you want to use the automatic mailing for new registration" -msgstr "Active esta caixa se você quer usar o envio automático para um novo registo" +msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Enviar como rascunho" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Confirmar registo" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Histórico" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Tipo de eventos" +msgstr "" #. module: event #: field:event.registration,contact_id:0 msgid "Partner Contact" -msgstr "Contacto do terceiro" +msgstr "" #. module: event #: view:event.event:0 msgid "Auto Confirmation Email" -msgstr "Email de confirmação auto" +msgstr "" #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Geral" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Enviar lembrete" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Concluído" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Data de início" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Factura" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration msgid "Events on registrations" -msgstr "Eventos em registos" +msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Abrir" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Tipo de destintivo" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Novo evento" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Preço de unidade" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section msgid "Conference on ERP Buisness" -msgstr "Conferência sobre o negócio do ERP" +msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Logo do terceiro" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "Eventos confirmados" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Número máximo de registos" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Tipo" +msgstr "" #. module: event #: help:event.event,mail_registr:0 msgid "This email will be sent when someone subscribes to the event." -msgstr "Este email será enviado quando alguém subscrever ao evento." +msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Bilhete para a conferecia" +msgstr "" #. module: event #: field:event.registration,case_id:0 msgid "Case" -msgstr "Processo" +msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Nome" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "Active esta caixa se você quiser asar a confirmação automática por correio electrónico ou o lembrete" +msgstr "" #. module: event #: help:event.event,mail_confirm:0 msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "Este email estará emitido quando o evento for confimedo ou quando alguém subscreve a um evento confirmado. Este é igualmente o email emitido para lembrar alguém sobre o evento." +msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Produto" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 msgid "Label Invoice" -msgstr "Rotular factura" +msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Pagamentos" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Tipo de Evento" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Registos" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft #: model:ir.ui.menu,name:event.menu_event_event_draft msgid "Draft Events" -msgstr "Eventos em rascunhos" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Factura rejeitada" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Organização de eventos" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Acções" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners msgid "List Register Partners" -msgstr "Listar terceiros registados" +msgstr "" #. module: event #: constraint:product.product:0 @@ -619,5 +619,5 @@ msgstr "Erro: Código ean inválido" #. module: event #: view:event.event:0 msgid "Auto Registration Email" -msgstr "Email de auto registação" +msgstr "" diff --git a/addons/event/i18n/ro_RO.po b/addons/event/i18n/ro_RO.po index e067025c489..5d68792bd11 100644 --- a/addons/event/i18n/ro_RO.po +++ b/addons/event/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/ru_RU.po b/addons/event/i18n/ru_RU.po index 90dd3c7be73..0e8ee977c66 100644 --- a/addons/event/i18n/ru_RU.po +++ b/addons/event/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" #: field:event.event,date_end:0 #: field:report.event.registration,date_end:0 msgid "Ending date" -msgstr "Дата окончания" +msgstr "" #. module: event #: field:event.event,register_min:0 msgid "Minimum Registrations" -msgstr "Мин. кол-во реристраций" +msgstr "" #. module: event #: constraint:ir.actions.act_window:0 @@ -54,17 +54,17 @@ msgstr "" #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Регистрация события" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.event_reg_invoice msgid "Make Invoice" -msgstr "Выпустить счет" +msgstr "" #. module: event #: field:report.event.type.registration,draft_state:0 msgid "Draft Registrations" -msgstr "Предварительные регистрации" +msgstr "" #. module: event #: view:report.event.registration:0 @@ -74,7 +74,7 @@ msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,end:0 msgid "Ok" -msgstr "ОК" +msgstr "" #. module: event #: field:event.event,mail_auto_confirm:0 @@ -84,7 +84,7 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_1_product_template msgid "Ticket for Opera" -msgstr "Билет в оперу" +msgstr "" #. module: event #: code:addons/event/event.py:0 @@ -95,7 +95,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Confirm Event" -msgstr "Подтвердить событие" +msgstr "" #. module: event #: model:crm.case.section,name:event.event_1_crm_case_section @@ -105,28 +105,28 @@ msgstr "" #. module: event #: field:report.event.registration,draft_state:0 msgid "Draft Registration" -msgstr "Предварительная регистрация" +msgstr "" #. module: event #: wizard_view:event.reg_make_invoice,init:0 msgid "Create Invoices" -msgstr "Создать счета" +msgstr "" #. module: event #: view:event.registration:0 msgid "Extra Info" -msgstr "Доп. информация" +msgstr "" #. module: event #: view:event.registration:0 msgid "Registration" -msgstr "Регистрация" +msgstr "" #. module: event #: field:event.type,name:0 #: model:ir.model,name:event.model_event_type msgid "Event type" -msgstr "Тип события" +msgstr "" #. module: event #: view:event.event:0 @@ -134,12 +134,12 @@ msgstr "Тип события" #: model:ir.module.module,shortdesc:event.module_meta_information #: field:report.event.registration,name:0 msgid "Event" -msgstr "Событие" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Confirmed" -msgstr "Подтверждено" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -149,14 +149,14 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Dates" -msgstr "Даты" +msgstr "" #. module: event #: field:event.event,register_current:0 #: model:ir.actions.act_window,name:event.action_registration_confirm #: model:ir.ui.menu,name:event.menu_action_registration_confirm msgid "Confirmed Registrations" -msgstr "Подтвержденные регистрации" +msgstr "" #. module: event #: field:event.event,mail_auto_registr:0 @@ -166,7 +166,7 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Badge" -msgstr "Бэдж" +msgstr "" #. module: event #: field:event.event,section_id:0 @@ -181,7 +181,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_event msgid "All Events" -msgstr "Все события" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event @@ -191,12 +191,12 @@ msgstr "Отчетность" #. module: event #: view:event.registration:0 msgid "Cancel Registration" -msgstr "Отменить регистрацию" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_action_event_categories msgid "Events by Categories" -msgstr "События по категориям" +msgstr "" #. module: event #: wizard_view:event.confirm_registration,split:0 @@ -206,19 +206,19 @@ msgstr "" #. module: event #: field:report.event.type.registration,confirm_state:0 msgid "Confirm Registrations" -msgstr "Подтвердить регистрации" +msgstr "" #. module: event #: view:event.registration:0 msgid "References" -msgstr "Ссылки" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_type_registration #: model:ir.ui.menu,name:event.menu_report_event_type_registration #: view:report.event.type.registration:0 msgid "Registration By Event Types" -msgstr "Ригистрация по типу событий" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config @@ -259,17 +259,17 @@ msgstr "" #. module: event #: field:report.event.type.registration,nbevent:0 msgid "Number Of Events" -msgstr "Кол-во событий" +msgstr "" #. module: event #: view:event.event:0 msgid "Cancel Event" -msgstr "Отменить событие" +msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 msgid "Error Messages" -msgstr "Сообщения об ошибках" +msgstr "" #. module: event #: view:event.event:0 @@ -279,14 +279,14 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_0_product_template msgid "Ticket for Concert" -msgstr "Билет на концерт" +msgstr "" #. module: event #: field:event.event,register_prospect:0 #: model:ir.actions.act_window,name:event.action_registration_draft #: model:ir.ui.menu,name:event.menu_action_registration_draft msgid "Unconfirmed Registrations" -msgstr "Неподтвержденные регистрации" +msgstr "" #. module: event #: field:event.registration,partner_invoice_id:0 @@ -296,22 +296,22 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Communication history" -msgstr "Журнал переписки" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Canceled" -msgstr "Отменено" +msgstr "" #. module: event #: view:event.event:0 msgid "Event Done" -msgstr "Событие завершено" +msgstr "" #. module: event #: field:event.registration,badge_name:0 msgid "Badge Name" -msgstr "Имя на бэдже" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_registration @@ -327,22 +327,22 @@ msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 msgid "Invoice Created" -msgstr "Счет создан" +msgstr "" #. module: event #: view:event.event:0 msgid "Statistics" -msgstr "Статистика" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Draft" -msgstr "Черновик" +msgstr "" #. module: event #: view:event.event:0 msgid "Event description" -msgstr "Описание события" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_type_registration @@ -369,7 +369,7 @@ msgstr "" #. module: event #: field:event.registration,event_id:0 msgid "Event Related" -msgstr "Относится к событию" +msgstr "" #. module: event #: model:crm.case.section,name:event.case_section_event @@ -381,19 +381,19 @@ msgstr "События" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Registration" -msgstr "Кол-во регистраций" +msgstr "" #. module: event #: view:event.event:0 #: field:event.event,state:0 #: view:event.registration:0 msgid "Status" -msgstr "Статус" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_categories msgid "Events by section" -msgstr "События по разделам" +msgstr "" #. module: event #: constraint:ir.model:0 @@ -403,7 +403,7 @@ msgstr "Название объекта должно начинаться с x_ #. module: event #: model:ir.ui.menu,name:event.menu_action_registration msgid "All Registrations" -msgstr "Все регистрации" +msgstr "" #. module: event #: help:event.event,mail_auto_registr:0 @@ -413,24 +413,24 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Set To Draft" -msgstr "Установть в 'Серновик'" +msgstr "" #. module: event #: view:event.registration:0 #: model:ir.actions.wizard,name:event.event_confirm_registration #: field:report.event.registration,confirm_state:0 msgid "Confirm Registration" -msgstr "Подтвердить регистрацию" +msgstr "" #. module: event #: view:event.registration:0 msgid "History" -msgstr "Журнал" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_type msgid "Types of Events" -msgstr "Типы событий" +msgstr "" #. module: event #: field:event.registration,contact_id:0 @@ -446,28 +446,28 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "General" -msgstr "Общее" +msgstr "" #. module: event #: view:event.registration:0 msgid "Send Reminder" -msgstr "Отправить напоминание" +msgstr "" #. module: event #: selection:event.event,state:0 msgid "Done" -msgstr "Выполнено" +msgstr "" #. module: event #: field:event.event,date_begin:0 #: field:report.event.registration,date_begin:0 msgid "Beginning date" -msgstr "Дата начала" +msgstr "" #. module: event #: field:event.registration,invoice_id:0 msgid "Invoice" -msgstr "Счет" +msgstr "" #. module: event #: model:ir.model,name:event.model_report_event_registration @@ -477,28 +477,28 @@ msgstr "" #. module: event #: wizard_button:event.confirm_registration,split,end:0 msgid "Cancel" -msgstr "Отмена" +msgstr "" #. module: event #: wizard_button:event.reg_make_invoice,init,open:0 msgid "Open" -msgstr "Открыть" +msgstr "" #. module: event #: field:event.registration,badge_title:0 msgid "Badge Title" -msgstr "Должность на бэдже" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_new_event_form #: model:ir.ui.menu,name:event.menu_event_new_event msgid "New event" -msgstr "Новое событие" +msgstr "" #. module: event #: field:event.registration,unit_price:0 msgid "Unit Price" -msgstr "Цена за ед." +msgstr "" #. module: event #: model:crm.case.section,name:event.event_2_crm_case_section @@ -508,24 +508,24 @@ msgstr "" #. module: event #: field:event.registration,badge_partner:0 msgid "Badge Partner" -msgstr "Бэдж партнера" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_confirm #: model:ir.ui.menu,name:event.menu_event_event_confirm msgid "Confirmed Events" -msgstr "подтвержденные события" +msgstr "" #. module: event #: field:event.event,register_max:0 #: field:report.event.registration,register_max:0 msgid "Maximum Registrations" -msgstr "Макс. кол-во регистраций" +msgstr "" #. module: event #: field:event.event,type:0 msgid "Type" -msgstr "Тип" +msgstr "" #. module: event #: help:event.event,mail_registr:0 @@ -535,7 +535,7 @@ msgstr "" #. module: event #: model:product.template,name:event.event_product_2_product_template msgid "Ticket for Conference" -msgstr "Билет на конференцию" +msgstr "" #. module: event #: field:event.registration,case_id:0 @@ -545,7 +545,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "Name" -msgstr "Название" +msgstr "" #. module: event #: help:event.event,mail_auto_confirm:0 @@ -560,7 +560,7 @@ msgstr "" #. module: event #: field:event.event,product_id:0 msgid "Product" -msgstr "Продукция" +msgstr "" #. module: event #: field:event.registration,invoice_label:0 @@ -570,20 +570,20 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Payments" -msgstr "Платежи" +msgstr "" #. module: event #: view:event.type:0 #: field:report.event.type.registration,name:0 msgid "Event Type" -msgstr "Тип события" +msgstr "" #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_registration #: model:ir.actions.wizard,name:event.wizard_event_registration msgid "Registrations" -msgstr "Регистрации" +msgstr "" #. module: event #: model:ir.actions.act_window,name:event.action_event_view_draft @@ -594,17 +594,17 @@ msgstr "" #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" -msgstr "Счет отклонен" +msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_main msgid "Events Organisation" -msgstr "Организация событий" +msgstr "" #. module: event #: view:event.registration:0 msgid "Actions" -msgstr "Действия" +msgstr "" #. module: event #: model:ir.actions.wizard,name:event.wizard_event_reg_partners diff --git a/addons/event/i18n/sl_SL.po b/addons/event/i18n/sl_SL.po index 9d1ef25c9e1..cd0459dfb94 100644 --- a/addons/event/i18n/sl_SL.po +++ b/addons/event/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/sv_SE.po b/addons/event/i18n/sv_SE.po index 4b7d4de3942..7189c9d1e6a 100644 --- a/addons/event/i18n/sv_SE.po +++ b/addons/event/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/sv_SV.po b/addons/event/i18n/sv_SV.po index ca666537dd2..af22a29537c 100644 --- a/addons/event/i18n/sv_SV.po +++ b/addons/event/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "Minimum Registrations" msgstr "" +#. module: event +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: event #: field:event.event,mail_registr:0 msgid "Registration Email" @@ -41,6 +46,11 @@ msgstr "" msgid "Confirmation Email" msgstr "" +#. module: event +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive sections." +msgstr "" + #. module: event #: model:ir.model,name:event.model_event_registration msgid "Event Registration" @@ -137,8 +147,8 @@ msgid "Registration Confirmation" msgstr "" #. module: event -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: view:event.registration:0 +msgid "Dates" msgstr "" #. module: event @@ -176,7 +186,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_report_event msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: event #: view:event.registration:0 @@ -222,8 +232,8 @@ msgid "You must define a reply-to address in order to mail the participant. You msgstr "" #. module: event -#: view:event.registration:0 -msgid "Dates" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: event @@ -507,8 +517,9 @@ msgid "Confirmed Events" msgstr "" #. module: event -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." +#: field:event.event,register_max:0 +#: field:report.event.registration,register_max:0 +msgid "Maximum Registrations" msgstr "" #. module: event @@ -580,12 +591,6 @@ msgstr "" msgid "Draft Events" msgstr "" -#. module: event -#: field:event.event,register_max:0 -#: field:report.event.registration,register_max:0 -msgid "Maximum Registrations" -msgstr "" - #. module: event #: wizard_field:event.reg_make_invoice,init,inv_rejected:0 msgid "Invoice Rejected" diff --git a/addons/event/i18n/tr_TR.po b/addons/event/i18n/tr_TR.po index eff19e1bdb5..9cc015f91c2 100644 --- a/addons/event/i18n/tr_TR.po +++ b/addons/event/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/uk_UK.po b/addons/event/i18n/uk_UK.po index f12edc20b44..4f4c87890ac 100644 --- a/addons/event/i18n/uk_UK.po +++ b/addons/event/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 27dd7efad18..28bbc901b5c 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index e14df0bb047..c86fe210251 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ar_AR.po b/addons/event_project/i18n/ar_AR.po index d349514748e..eb49d4e429f 100644 --- a/addons/event_project/i18n/ar_AR.po +++ b/addons/event_project/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/bg_BG.po b/addons/event_project/i18n/bg_BG.po index 4b29b99f63c..5f93e86e906 100644 --- a/addons/event_project/i18n/bg_BG.po +++ b/addons/event_project/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/bs_BS.po b/addons/event_project/i18n/bs_BS.po index 6ed3d608f40..798fd17c448 100644 --- a/addons/event_project/i18n/bs_BS.po +++ b/addons/event_project/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ca_ES.po b/addons/event_project/i18n/ca_ES.po index 567da300ce9..0fb3fc77603 100644 --- a/addons/event_project/i18n/ca_ES.po +++ b/addons/event_project/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/cs_CS.po b/addons/event_project/i18n/cs_CS.po index 9772fae0094..7cffae21d44 100644 --- a/addons/event_project/i18n/cs_CS.po +++ b/addons/event_project/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,8 +26,9 @@ msgid "Tasks" msgstr "" #. module: event_project -#: wizard_button:event.project,init,done:0 -msgid "Ok" +#: code:addons/event_project/wizard/event_task.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: event_project @@ -60,11 +61,22 @@ msgstr "" msgid "Project tasks" msgstr "" +#. module: event_project +#: code:addons/event_project/wizard/event_task.py:0 +#, python-format +msgid "No project defined for this event.\nYou can create one with the retro-planning button !" +msgstr "" + #. module: event_project #: wizard_button:event.project,init,end:0 msgid "Cancel" msgstr "" +#. module: event_project +#: wizard_button:event.project,init,done:0 +msgid "Ok" +msgstr "" + #. module: event_project #: view:event.event:0 msgid "Create Retro-Planning" diff --git a/addons/event_project/i18n/cs_CZ.po b/addons/event_project/i18n/cs_CZ.po index 02c1e99292e..2ce375dadc1 100644 --- a/addons/event_project/i18n/cs_CZ.po +++ b/addons/event_project/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/de_DE.po b/addons/event_project/i18n/de_DE.po index 678b79926bb..96b7718d50d 100644 --- a/addons/event_project/i18n/de_DE.po +++ b/addons/event_project/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/es_AR.po b/addons/event_project/i18n/es_AR.po index 0390c41721e..cdd7a4cd231 100644 --- a/addons/event_project/i18n/es_AR.po +++ b/addons/event_project/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/es_ES.po b/addons/event_project/i18n/es_ES.po index f8556352e7c..1d512116b97 100644 --- a/addons/event_project/i18n/es_ES.po +++ b/addons/event_project/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/et_EE.po b/addons/event_project/i18n/et_EE.po index accf2ed68a4..e92453ff8a9 100644 --- a/addons/event_project/i18n/et_EE.po +++ b/addons/event_project/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+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 5eef9fbbd5a..77a4c28a4ec 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/fr_FR.po b/addons/event_project/i18n/fr_FR.po index 22f6c4f4c2f..b87c94962d6 100644 --- a/addons/event_project/i18n/fr_FR.po +++ b/addons/event_project/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/hr_HR.po b/addons/event_project/i18n/hr_HR.po index 5105b368f25..ecca5921b7a 100644 --- a/addons/event_project/i18n/hr_HR.po +++ b/addons/event_project/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/hu_HU.po b/addons/event_project/i18n/hu_HU.po index 1910d29f91e..fe928f61493 100644 --- a/addons/event_project/i18n/hu_HU.po +++ b/addons/event_project/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/it_IT.po b/addons/event_project/i18n/it_IT.po index 6e3e4e04a16..298993e6970 100644 --- a/addons/event_project/i18n/it_IT.po +++ b/addons/event_project/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/lt_LT.po b/addons/event_project/i18n/lt_LT.po index 78efe207c56..c67bb7d2177 100644 --- a/addons/event_project/i18n/lt_LT.po +++ b/addons/event_project/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/nl_BE.po b/addons/event_project/i18n/nl_BE.po index b117a391303..646f0b4ca71 100644 --- a/addons/event_project/i18n/nl_BE.po +++ b/addons/event_project/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/nl_NL.po b/addons/event_project/i18n/nl_NL.po index 01a80c0be3a..1cb56d7e91d 100644 --- a/addons/event_project/i18n/nl_NL.po +++ b/addons/event_project/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pl_PL.po b/addons/event_project/i18n/pl_PL.po index 6f10cb0a37c..f854cba2101 100644 --- a/addons/event_project/i18n/pl_PL.po +++ b/addons/event_project/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pt_BR.po b/addons/event_project/i18n/pt_BR.po index d92595a87c9..68b9deb28c5 100644 --- a/addons/event_project/i18n/pt_BR.po +++ b/addons/event_project/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pt_PT.po b/addons/event_project/i18n/pt_PT.po index b8695a2d185..2322f475e53 100644 --- a/addons/event_project/i18n/pt_PT.po +++ b/addons/event_project/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ro_RO.po b/addons/event_project/i18n/ro_RO.po index dd8baba9770..a08c3d748d7 100644 --- a/addons/event_project/i18n/ro_RO.po +++ b/addons/event_project/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ru_RU.po b/addons/event_project/i18n/ru_RU.po index 864b8b389ed..ad6743f253b 100644 --- a/addons/event_project/i18n/ru_RU.po +++ b/addons/event_project/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sl_SL.po b/addons/event_project/i18n/sl_SL.po index 0c1b225335c..f872543039b 100644 --- a/addons/event_project/i18n/sl_SL.po +++ b/addons/event_project/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sv_SE.po b/addons/event_project/i18n/sv_SE.po index c7ddc045f06..35afc63919a 100644 --- a/addons/event_project/i18n/sv_SE.po +++ b/addons/event_project/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sv_SV.po b/addons/event_project/i18n/sv_SV.po index ab30d297c2d..3d03852c835 100644 --- a/addons/event_project/i18n/sv_SV.po +++ b/addons/event_project/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,8 +26,9 @@ msgid "Tasks" msgstr "" #. module: event_project -#: wizard_button:event.project,init,done:0 -msgid "Ok" +#: code:addons/event_project/wizard/event_task.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: event_project @@ -60,11 +61,22 @@ msgstr "" msgid "Project tasks" msgstr "" +#. module: event_project +#: code:addons/event_project/wizard/event_task.py:0 +#, python-format +msgid "No project defined for this event.\nYou can create one with the retro-planning button !" +msgstr "" + #. module: event_project #: wizard_button:event.project,init,end:0 msgid "Cancel" msgstr "" +#. module: event_project +#: wizard_button:event.project,init,done:0 +msgid "Ok" +msgstr "" + #. module: event_project #: view:event.event:0 msgid "Create Retro-Planning" diff --git a/addons/event_project/i18n/tr_TR.po b/addons/event_project/i18n/tr_TR.po index 098ecf4bf71..3c5bd107dbd 100644 --- a/addons/event_project/i18n/tr_TR.po +++ b/addons/event_project/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/uk_UK.po b/addons/event_project/i18n/uk_UK.po index 04335ef8195..142186d82c7 100644 --- a/addons/event_project/i18n/uk_UK.po +++ b/addons/event_project/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/zh_CN.po b/addons/event_project/i18n/zh_CN.po index 011f4c7dfe9..fbd90062329 100644 --- a/addons/event_project/i18n/zh_CN.po +++ b/addons/event_project/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/zh_TW.po b/addons/event_project/i18n/zh_TW.po index 98d14561e58..f817ecaaf00 100644 --- a/addons/event_project/i18n/zh_TW.po +++ b/addons/event_project/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/ar_AR.po b/addons/google_map/i18n/ar_AR.po index ecb0b402f2a..4783ad48e87 100644 --- a/addons/google_map/i18n/ar_AR.po +++ b/addons/google_map/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/bg_BG.po b/addons/google_map/i18n/bg_BG.po index 53169d2e9c3..466f71661cf 100644 --- a/addons/google_map/i18n/bg_BG.po +++ b/addons/google_map/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Невалиден XML за преглед на архитектурат msgid "Street2 : " msgstr "Улица2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/bs_BS.po b/addons/google_map/i18n/bs_BS.po index f42c0972bad..22d1cc37a82 100644 --- a/addons/google_map/i18n/bs_BS.po +++ b/addons/google_map/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Neodgovarajući XML za arhitekturu prikaza!" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/ca_ES.po b/addons/google_map/i18n/ca_ES.po index 69dae71b01f..0eb1f4f0d81 100644 --- a/addons/google_map/i18n/ca_ES.po +++ b/addons/google_map/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "XML invàlid per a la definició de la vista!" msgid "Street2 : " msgstr "Carrer2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/cs_CS.po b/addons/google_map/i18n/cs_CS.po index 097dc30ae13..8969324b7d6 100644 --- a/addons/google_map/i18n/cs_CS.po +++ b/addons/google_map/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/cs_CZ.po b/addons/google_map/i18n/cs_CZ.po index 3ff62738f12..d3183db1e87 100644 --- a/addons/google_map/i18n/cs_CZ.po +++ b/addons/google_map/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/de_DE.po b/addons/google_map/i18n/de_DE.po index 92267826cde..b66e2a07e48 100644 --- a/addons/google_map/i18n/de_DE.po +++ b/addons/google_map/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Fehlerhafter xml Code für diese Ansicht!" msgid "Street2 : " msgstr "Strasse2: " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/es_AR.po b/addons/google_map/i18n/es_AR.po index 9b891dda952..d948f7d868b 100644 --- a/addons/google_map/i18n/es_AR.po +++ b/addons/google_map/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/es_ES.po b/addons/google_map/i18n/es_ES.po index 76aab63877b..ecf66c2511d 100644 --- a/addons/google_map/i18n/es_ES.po +++ b/addons/google_map/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Street2 : " msgstr "Calle2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/et_EE.po b/addons/google_map/i18n/et_EE.po index 5a67379ff37..4efc5a64ad3 100644 --- a/addons/google_map/i18n/et_EE.po +++ b/addons/google_map/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,15 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "See moodul lisab google kaardi välja partneri\n" +"aadressile nii, et me saame otse avada google\n" +"kaardi url vidinast." + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +40,6 @@ msgstr "Vigane XML vaate arhitektuurile!" msgid "Street2 : " msgstr "Tänav2: " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/fr_FR.po b/addons/google_map/i18n/fr_FR.po index 6a268054f35..a8a37fbab4e 100644 --- a/addons/google_map/i18n/fr_FR.po +++ b/addons/google_map/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "XML non valide pour l'architecture de la vue" msgid "Street2 : " msgstr "Adresse suite " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/google_map.pot b/addons/google_map/i18n/google_map.pot index 9d7cb8664f6..bfefe52d8bb 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/hr_HR.po b/addons/google_map/i18n/hr_HR.po index dff7bbc74dd..c095b66aa11 100644 --- a/addons/google_map/i18n/hr_HR.po +++ b/addons/google_map/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/hu_HU.po b/addons/google_map/i18n/hu_HU.po index 6e7463c81e0..3e40cf01ebf 100644 --- a/addons/google_map/i18n/hu_HU.po +++ b/addons/google_map/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/it_IT.po b/addons/google_map/i18n/it_IT.po index e7dd917ba39..4c46e1e4e70 100644 --- a/addons/google_map/i18n/it_IT.po +++ b/addons/google_map/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "XML non valido per Visualizzazione Architettura!" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/lt_LT.po b/addons/google_map/i18n/lt_LT.po index ff06e039d84..1f60d8dea4b 100644 --- a/addons/google_map/i18n/lt_LT.po +++ b/addons/google_map/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/nl_BE.po b/addons/google_map/i18n/nl_BE.po index c3b085df3f0..490a494113a 100644 --- a/addons/google_map/i18n/nl_BE.po +++ b/addons/google_map/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/nl_NL.po b/addons/google_map/i18n/nl_NL.po index 3ec843e05dd..475eeb2bdde 100644 --- a/addons/google_map/i18n/nl_NL.po +++ b/addons/google_map/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Ongeldige XML voor overzicht" msgid "Street2 : " msgstr "Adres2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/pl_PL.po b/addons/google_map/i18n/pl_PL.po index 4c6b4903d5b..69dadaead9b 100644 --- a/addons/google_map/i18n/pl_PL.po +++ b/addons/google_map/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/pt_BR.po b/addons/google_map/i18n/pt_BR.po index 2b0e6bab969..984e1213b86 100644 --- a/addons/google_map/i18n/pt_BR.po +++ b/addons/google_map/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Invalido XML para Arquitetura da View" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/pt_PT.po b/addons/google_map/i18n/pt_PT.po index d901ef113be..73b51c85893 100644 --- a/addons/google_map/i18n/pt_PT.po +++ b/addons/google_map/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "XML inválido para a arquitectura de vista" msgid "Street2 : " msgstr "Rua2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/ro_RO.po b/addons/google_map/i18n/ro_RO.po index d63cd811049..4ba75159d8b 100644 --- a/addons/google_map/i18n/ro_RO.po +++ b/addons/google_map/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/ru_RU.po b/addons/google_map/i18n/ru_RU.po index ef45d1827d6..d6478a39813 100644 --- a/addons/google_map/i18n/ru_RU.po +++ b/addons/google_map/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Неправильный XML для просмотра архитект msgid "Street2 : " msgstr "Улица2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/sl_SL.po b/addons/google_map/i18n/sl_SL.po index 6143e195bd6..c246fb563a7 100644 --- a/addons/google_map/i18n/sl_SL.po +++ b/addons/google_map/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Neveljaven XML za arhitekturo pogleda." msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/sv_SE.po b/addons/google_map/i18n/sv_SE.po index 7fecb1d624b..3b093113bb7 100644 --- a/addons/google_map/i18n/sv_SE.po +++ b/addons/google_map/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/sv_SV.po b/addons/google_map/i18n/sv_SV.po index 473f6147328..6577b9f816e 100644 --- a/addons/google_map/i18n/sv_SV.po +++ b/addons/google_map/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/tr_TR.po b/addons/google_map/i18n/tr_TR.po index 4a3284db607..727c2b40f6d 100644 --- a/addons/google_map/i18n/tr_TR.po +++ b/addons/google_map/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Görüntüleme mimarisi için Geçersiz XML" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/uk_UK.po b/addons/google_map/i18n/uk_UK.po index 6ef5f9425e1..09c82111e98 100644 --- a/addons/google_map/i18n/uk_UK.po +++ b/addons/google_map/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "Неправильний XML для Архітектури Вигляд msgid "Street2 : " msgstr "Вулиця2 : " -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/zh_CN.po b/addons/google_map/i18n/zh_CN.po index e631ad292fb..c5766d5a283 100644 --- a/addons/google_map/i18n/zh_CN.po +++ b/addons/google_map/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/google_map/i18n/zh_TW.po b/addons/google_map/i18n/zh_TW.po index c0abd4d20c4..2035ea3fecb 100644 --- a/addons/google_map/i18n/zh_TW.po +++ b/addons/google_map/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: model:ir.module.module,description:google_map.module_meta_information +msgid "The module adds google map field in partner address\n" +"so that we can directly open google map from the\n" +"url widget." +msgstr "" + #. module: google_map #: model:ir.actions.wizard,name:google_map.wizard_google_map msgid "Launch Google Map" @@ -31,13 +38,6 @@ msgstr "" msgid "Street2 : " msgstr "" -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 diff --git a/addons/hr/i18n/ar_AR.po b/addons/hr/i18n/ar_AR.po index fa65631dffc..7235e7b3b7b 100644 --- a/addons/hr/i18n/ar_AR.po +++ b/addons/hr/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/bg_BG.po b/addons/hr/i18n/bg_BG.po index 87cc593f1b0..34224f2c4ba 100644 --- a/addons/hr/i18n/bg_BG.po +++ b/addons/hr/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/bs_BS.po b/addons/hr/i18n/bs_BS.po index 70c8d687811..f002bac75b3 100644 --- a/addons/hr/i18n/bs_BS.po +++ b/addons/hr/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/ca_ES.po b/addons/hr/i18n/ca_ES.po index 1d7e1de033d..23b3a354bf9 100644 --- a/addons/hr/i18n/ca_ES.po +++ b/addons/hr/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Recursos humans" msgid "Sunday" msgstr "Diumenge" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Categories d'empleat" msgid "Starting date" msgstr "Data d'inici" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/cs_CS.po b/addons/hr/i18n/cs_CS.po index b0f8df9200b..035fc59ae69 100644 --- a/addons/hr/i18n/cs_CS.po +++ b/addons/hr/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,16 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + +#. module: hr +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr #: view:hr.department:0 msgid "Department" @@ -342,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/cs_CZ.po b/addons/hr/i18n/cs_CZ.po index 913242ae03a..4041877d824 100644 --- a/addons/hr/i18n/cs_CZ.po +++ b/addons/hr/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/de_DE.po b/addons/hr/i18n/de_DE.po index 339f0966da2..553a98be1ae 100644 --- a/addons/hr/i18n/de_DE.po +++ b/addons/hr/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Personal" msgid "Sunday" msgstr "Sonntag" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Mitarbeiterkategorien" msgid "Starting date" msgstr "Beginn" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index fcdaedae1f3..e968b9d94c7 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "Domingo" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "Fecha de ingreso" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/es_ES.po b/addons/hr/i18n/es_ES.po index 7ce361e117e..2994391eddc 100644 --- a/addons/hr/i18n/es_ES.po +++ b/addons/hr/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Recursos humanos" msgid "Sunday" msgstr "domingo" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Categorías de empleado" msgid "Starting date" msgstr "Fecha Comienzo" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/et_EE.po b/addons/hr/i18n/et_EE.po index 5c3674d9d82..e8be89f2a96 100644 --- a/addons/hr/i18n/et_EE.po +++ b/addons/hr/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,10 +48,15 @@ msgstr "Inimressursid" msgid "Sunday" msgstr "Pühapäev" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr #: view:hr.department:0 @@ -347,6 +352,11 @@ msgstr "Töötajate kategooriad" msgid "Starting date" msgstr "Alustamise kuupäev" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/fr_FR.po b/addons/hr/i18n/fr_FR.po index c7e65454a7d..f43571c7b0a 100644 --- a/addons/hr/i18n/fr_FR.po +++ b/addons/hr/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Ressources humaines" msgid "Sunday" msgstr "Dimanche" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Catégories d'Employés" msgid "Starting date" msgstr "Date début" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/hr.pot b/addons/hr/i18n/hr.pot index d7aeb4d8ec8..1d575ff91d7 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/hr_HR.po b/addons/hr/i18n/hr_HR.po index a5235f0ef13..9a619b21719 100644 --- a/addons/hr/i18n/hr_HR.po +++ b/addons/hr/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/hu_HU.po b/addons/hr/i18n/hu_HU.po index 9377bc244bb..0010cb9a39a 100644 --- a/addons/hr/i18n/hu_HU.po +++ b/addons/hr/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/it_IT.po b/addons/hr/i18n/it_IT.po index 370a9af74bc..c4be15070f8 100644 --- a/addons/hr/i18n/it_IT.po +++ b/addons/hr/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Risorse Umane" msgid "Sunday" msgstr "Domenica" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Categorie Dipendente" msgid "Starting date" msgstr "Data Inizio" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/lt_LT.po b/addons/hr/i18n/lt_LT.po index a951198dee0..d39bc09a5db 100644 --- a/addons/hr/i18n/lt_LT.po +++ b/addons/hr/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index 346b94f7396..8641acfa14c 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/nl_NL.po b/addons/hr/i18n/nl_NL.po index 33782a370a3..6c46fe40b31 100644 --- a/addons/hr/i18n/nl_NL.po +++ b/addons/hr/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Personeelszaken" msgid "Sunday" msgstr "Zondag" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Mederwerkerscategorien" msgid "Starting date" msgstr "Startdatum" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/pl_PL.po b/addons/hr/i18n/pl_PL.po index 98a94e457ca..740e3502f61 100644 --- a/addons/hr/i18n/pl_PL.po +++ b/addons/hr/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "Niedziela" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index b258088fd7e..6ac8acfa207 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Recursos humanos" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/pt_PT.po b/addons/hr/i18n/pt_PT.po index 343c9dd068b..e5aca02a3a2 100644 --- a/addons/hr/i18n/pt_PT.po +++ b/addons/hr/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Recursos humanos" msgid "Sunday" msgstr "Domingo" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Categoria dos empregados" msgid "Starting date" msgstr "Data de inicio" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/ro_RO.po b/addons/hr/i18n/ro_RO.po index 710a2c2ca8e..b533a44aa7d 100644 --- a/addons/hr/i18n/ro_RO.po +++ b/addons/hr/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/ru_RU.po b/addons/hr/i18n/ru_RU.po index b111e528238..238cd697bac 100644 --- a/addons/hr/i18n/ru_RU.po +++ b/addons/hr/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Кадры" msgid "Sunday" msgstr "Воскресенье" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Категории сотрудника" msgid "Starting date" msgstr "Дата начала" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/sl_SL.po b/addons/hr/i18n/sl_SL.po index 6ea8a664ec5..f577923d5bb 100644 --- a/addons/hr/i18n/sl_SL.po +++ b/addons/hr/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "nedelja" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Kategorije zaposlenega" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/sv_SE.po b/addons/hr/i18n/sv_SE.po index 4c3365d991d..55ffeda7f8c 100644 --- a/addons/hr/i18n/sv_SE.po +++ b/addons/hr/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "Söndag" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/sv_SV.po b/addons/hr/i18n/sv_SV.po index eb2eba78f3e..c540e18b3b0 100644 --- a/addons/hr/i18n/sv_SV.po +++ b/addons/hr/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,12 +25,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr.edit_workgroup #: model:ir.ui.menu,name:hr.menu_edit_workgroup msgid "Working Time Categories" -msgstr "Arbetstidskategorier" +msgstr "" #. module: hr #: constraint:hr.department:0 msgid "Error! You can not create recursive departments." -msgstr "Fel! Du kan ej skapa rekursiva avdelningar." +msgstr "" #. module: hr #: field:hr.employee,sinid:0 @@ -41,17 +41,27 @@ msgstr "" #: model:ir.module.module,shortdesc:hr.module_meta_information #: model:ir.ui.menu,name:hr.menu_hr_root msgid "Human Resources" -msgstr "Human Resources" +msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Sunday" msgstr "Söndag" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + +#. module: hr +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr #: view:hr.department:0 msgid "Department" -msgstr "Avdelning" +msgstr "" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 @@ -61,7 +71,7 @@ msgstr "" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "E-post arbete" +msgstr "" #. module: hr #: field:hr.timesheet.group,name:0 @@ -72,7 +82,7 @@ msgstr "Gruppnamn" #: field:hr.department,company_id:0 #: field:hr.employee,company_id:0 msgid "Company" -msgstr "Företag" +msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 @@ -114,7 +124,7 @@ msgstr "" #. module: hr #: selection:hr.employee,gender:0 msgid "Female" -msgstr "Kvinna" +msgstr "" #. module: hr #: view:hr.timesheet.group:0 @@ -135,7 +145,7 @@ msgstr "" #. module: hr #: field:hr.employee,work_phone:0 msgid "Work Phone" -msgstr "Arbetstelefon" +msgstr "" #. module: hr #: field:hr.employee.category,child_ids:0 @@ -163,17 +173,17 @@ msgstr "" #. module: hr #: field:hr.employee,child_ids:0 msgid "Subordinates" -msgstr "Underordnade" +msgstr "" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: hr #: field:hr.department,member_ids:0 msgid "Members" -msgstr "Medlemmar" +msgstr "" #. module: hr #: field:hr.employee,ssnid:0 @@ -193,7 +203,7 @@ msgstr "" #. module: hr #: selection:hr.employee,marital:0 msgid "Divorced" -msgstr "Skild" +msgstr "" #. module: hr #: field:hr.employee.category,parent_id:0 @@ -206,7 +216,7 @@ msgstr "" #: model:ir.ui.menu,name:hr.menu_department_def #: model:ir.ui.menu,name:hr.menu_department_tree msgid "Departments" -msgstr "Avdelningar" +msgstr "" #. module: hr #: model:process.node,name:hr.process_node_employeecontact0 @@ -216,7 +226,7 @@ msgstr "" #. module: hr #: selection:hr.employee,marital:0 msgid "Maried" -msgstr "Gift" +msgstr "" #. module: hr #: field:hr.timesheet,tgroup_id:0 @@ -226,7 +236,7 @@ msgstr "" #. module: hr #: selection:hr.employee,gender:0 msgid "Male" -msgstr "Man" +msgstr "" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -324,7 +334,7 @@ msgstr "" #. module: hr #: view:hr.department:0 msgid "Companies" -msgstr "Företag" +msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 @@ -342,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/th_TH.po b/addons/hr/i18n/th_TH.po index 82a27205125..5794b6e3e0c 100644 --- a/addons/hr/i18n/th_TH.po +++ b/addons/hr/i18n/th_TH.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2009-01-30 15:04+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 08:30+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:30+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr @@ -50,6 +50,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr #: view:hr.department:0 msgid "Department" @@ -81,12 +86,6 @@ msgstr "" msgid "Friday" msgstr "" -#. module: hr -#: code:addons/hr/wizard/sign_in_out.py:0 -#, python-format -msgid "The sign-out date must be in the past" -msgstr "" - #. module: hr #: field:hr.department,parent_id:0 msgid "Parent Department" @@ -109,12 +108,6 @@ msgstr "" msgid "Employee Hierarchy" msgstr "" -#. module: hr -#: code:addons/hr/wizard/sign_in_out.py:0 -#, python-format -msgid "UserError" -msgstr "" - #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" @@ -130,23 +123,11 @@ msgstr "" msgid "Female" msgstr "" -#. module: hr -#: code:addons/hr/wizard/sign_in_out.py:0 -#, python-format -msgid "The Sign-in date must be in the past" -msgstr "" - #. module: hr #: view:hr.timesheet.group:0 msgid "Working Time Category" msgstr "" -#. module: hr -#: code:addons/hr/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-in must be right after a sign-out !" -msgstr "" - #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_tree #: model:ir.ui.menu,name:hr.menu_open_view_employee_tree @@ -312,12 +293,6 @@ msgstr "" msgid "Categories structure" msgstr "" -#. module: hr -#: code:addons/hr/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-out must be right after a sign-in !" -msgstr "" - #. module: hr #: field:hr.timesheet,dayofweek:0 msgid "Day of week" @@ -427,6 +402,11 @@ msgstr "" msgid "Employees Categories" msgstr "" +#. module: hr +#: field:hr.employee,address_home_id:0 +msgid "Home Address" +msgstr "" + #. module: hr #: view:hr.department:0 msgid "department" diff --git a/addons/hr/i18n/tr_TR.po b/addons/hr/i18n/tr_TR.po index 9d201310cb2..fd48ca6698b 100644 --- a/addons/hr/i18n/tr_TR.po +++ b/addons/hr/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/uk_UK.po b/addons/hr/i18n/uk_UK.po index b79f8706927..b41ef7765e3 100644 --- a/addons/hr/i18n/uk_UK.po +++ b/addons/hr/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "Кадри" msgid "Sunday" msgstr "Неділя" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "Категорії Працівників" msgid "Starting date" msgstr "Початкова дата" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index c16cdc26de7..6016f581d15 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "人事管理" msgid "Sunday" msgstr "周日" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "开始日期" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 0841bbf0e39..06e4f6942c8 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +48,11 @@ msgstr "" msgid "Sunday" msgstr "" +#. module: hr +#: view:res.users:0 +msgid "Parents" +msgstr "" + #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -347,6 +352,11 @@ msgstr "" msgid "Starting date" msgstr "" +#. module: hr +#: field:res.users,parent_id:0 +msgid "Parent Users" +msgstr "" + #. module: hr #: field:hr.employee,address_id:0 msgid "Working Address" diff --git a/addons/hr_attendance/i18n/ar_AR.po b/addons/hr_attendance/i18n/ar_AR.po index d6cf5ba16dd..82ade60d0a2 100644 --- a/addons/hr_attendance/i18n/ar_AR.po +++ b/addons/hr_attendance/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/bg_BG.po b/addons/hr_attendance/i18n/bg_BG.po index 7e9a54991b7..c9db8143aac 100644 --- a/addons/hr_attendance/i18n/bg_BG.po +++ b/addons/hr_attendance/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/bs_BS.po b/addons/hr_attendance/i18n/bs_BS.po index 4f782317d08..e0f0e681370 100644 --- a/addons/hr_attendance/i18n/bs_BS.po +++ b/addons/hr_attendance/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/ca_ES.po b/addons/hr_attendance/i18n/ca_ES.po index 1639c5a2296..99281e74b56 100644 --- a/addons/hr_attendance/i18n/ca_ES.po +++ b/addons/hr_attendance/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/cs_CS.po b/addons/hr_attendance/i18n/cs_CS.po index 09803640b8a..592d073d04b 100644 --- a/addons/hr_attendance/i18n/cs_CS.po +++ b/addons/hr_attendance/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -81,8 +81,8 @@ msgid "Employee's name" msgstr "Jméno zaměstnance(Employee's name)" #. module: hr_attendance -#: wizard_button:hr.print_month,init,print:0 -#: wizard_button:hr.print_week,init,print:0 +#: wizard_button:hr.attendance.print_month,init,print:0 +#: wizard_button:hr.attendance.print_week,init,print:0 msgid "Print Timesheet" msgstr "" @@ -91,6 +91,11 @@ msgstr "" msgid "Print Attendance Error Report" msgstr "" +#. module: hr_attendance +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_attendance #: model:ir.actions.wizard,name:hr_attendance.print_week msgid "Print Timesheet by week" @@ -102,8 +107,8 @@ msgid "Employee" msgstr "" #. module: hr_attendance -#: wizard_view:hr.print_week,init:0 -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.print_week,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Select a time span" msgstr "" @@ -136,17 +141,17 @@ msgid "Action reason" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "March" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "August" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "May" msgstr "" @@ -157,7 +162,7 @@ msgid "A sign-out must be right after a sign-in !" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "June" msgstr "" @@ -204,7 +209,7 @@ msgid "Date" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "July" msgstr "" @@ -219,10 +224,10 @@ msgid "Attendance reasons" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_week,init,init_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,init_date:0 +#: wizard_field:hr.attendance.print_week,init,init_date:0 +#: wizard_field:hr.attendance.report,init,init_date:0 msgid "Starting Date" -msgstr "Počáteční datum" +msgstr "" #. module: hr_attendance #: selection:hr.employee,state:0 @@ -235,12 +240,12 @@ msgid "Absent" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "February" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "October" msgstr "" @@ -256,7 +261,7 @@ msgid "The Sign-in date must be in the past" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_month,init,year:0 +#: wizard_field:hr.attendance.print_month,init,year:0 msgid "Year" msgstr "" @@ -283,7 +288,7 @@ msgid "Sign in" msgstr "Přihlásit se(Sign in)" #. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Analysis Information" msgstr "" @@ -293,12 +298,12 @@ msgid "Current state" msgstr "Současný stav(Current state)" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "January" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "April" msgstr "" @@ -321,7 +326,7 @@ msgid "Action" msgstr "" #. module: hr_attendance -#: wizard_button:hr.timesheet.attendance.report,init,print:0 +#: wizard_button:hr.attendance.report,init,print:0 msgid "Print Attendance Report" msgstr "" @@ -332,12 +337,12 @@ msgid "Attendance Reasons" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "November" msgstr "" #. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Bellow this delay, the error is considered to be voluntary" msgstr "" @@ -348,20 +353,32 @@ msgid "UserError" msgstr "" #. module: hr_attendance -#: wizard_field:hr.timesheet.attendance.report,init,max_delay:0 +#: wizard_field:hr.attendance.report,init,max_delay:0 msgid "Max. Delay (Min)" -msgstr "Max. zpoždění (minut)" +msgstr "" #. module: hr_attendance -#: wizard_view:hr.print_week,init:0 +#: wizard_view:hr.attendance.print_week,init:0 msgid "Select a starting and a end date" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_week,init,end_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,end_date:0 +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + +#. module: hr_attendance +#: wizard_field:hr.attendance.print_week,init,end_date:0 +#: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" -msgstr "Koncové datum" +msgstr "" + +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 @@ -369,7 +386,7 @@ msgid "You did not signed in the last time. Please enter the date and time you s msgstr "Minule jste se neodhlásil. Prosím zadejte datum a čas odhlášení" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "September" msgstr "" @@ -384,12 +401,12 @@ msgid "Employee attendance" msgstr "" #. module: hr_attendance -#: wizard_view:hr.print_month,init:0 +#: wizard_view:hr.attendance.print_month,init:0 msgid "Select a month" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_month,init,month:0 +#: wizard_field:hr.attendance.print_month,init,month:0 msgid "Month" msgstr "" @@ -405,17 +422,17 @@ msgid "Warning" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "December" msgstr "" #. module: hr_attendance -#: wizard_button:hr.print_month,init,end:0 -#: wizard_button:hr.print_week,init,end:0 +#: wizard_button:hr.attendance.print_month,init,end:0 +#: wizard_button:hr.attendance.print_week,init,end:0 +#: wizard_button:hr.attendance.report,init,end:0 #: wizard_button:hr.si_so,init,end:0 #: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.si_so,so_ask_si,end:0 -#: wizard_button:hr.timesheet.attendance.report,init,end:0 msgid "Cancel" msgstr "Storno" diff --git a/addons/hr_attendance/i18n/cs_CZ.po b/addons/hr_attendance/i18n/cs_CZ.po index 65070b5e7e6..53d783ad50a 100644 --- a/addons/hr_attendance/i18n/cs_CZ.po +++ b/addons/hr_attendance/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/de_DE.po b/addons/hr_attendance/i18n/de_DE.po index b38d80513bf..a829ee84abe 100644 --- a/addons/hr_attendance/i18n/de_DE.po +++ b/addons/hr_attendance/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index bd91feee39e..e87619a7d3a 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/es_ES.po b/addons/hr_attendance/i18n/es_ES.po index e2a8969777e..70c788a1328 100644 --- a/addons/hr_attendance/i18n/es_ES.po +++ b/addons/hr_attendance/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/et_EE.po b/addons/hr_attendance/i18n/et_EE.po index 0e75aec7d1e..76b6bf4d188 100644 --- a/addons/hr_attendance/i18n/et_EE.po +++ b/addons/hr_attendance/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" #. module: hr_attendance #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_attendance #: model:ir.actions.wizard,name:hr_attendance.print_week @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/fr_FR.po b/addons/hr_attendance/i18n/fr_FR.po index 28006424a59..e7301bae2db 100644 --- a/addons/hr_attendance/i18n/fr_FR.po +++ b/addons/hr_attendance/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/hr_HR.po b/addons/hr_attendance/i18n/hr_HR.po index f6edacc0bf9..5bbc8828efe 100644 --- a/addons/hr_attendance/i18n/hr_HR.po +++ b/addons/hr_attendance/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/hr_attendance.pot b/addons/hr_attendance/i18n/hr_attendance.pot index 6072b816601..cc628f56e29 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/hu_HU.po b/addons/hr_attendance/i18n/hu_HU.po index e3ff59c5379..425926fab9c 100644 --- a/addons/hr_attendance/i18n/hu_HU.po +++ b/addons/hr_attendance/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/it_IT.po b/addons/hr_attendance/i18n/it_IT.po index 45d35a554fe..182a247fa30 100644 --- a/addons/hr_attendance/i18n/it_IT.po +++ b/addons/hr_attendance/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/lt_LT.po b/addons/hr_attendance/i18n/lt_LT.po index c4a5746f338..cc6abb79ddc 100644 --- a/addons/hr_attendance/i18n/lt_LT.po +++ b/addons/hr_attendance/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index e44ef5d0889..ab17b17ddfb 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/nl_NL.po b/addons/hr_attendance/i18n/nl_NL.po index 64533ce844a..8ab0b5cce76 100644 --- a/addons/hr_attendance/i18n/nl_NL.po +++ b/addons/hr_attendance/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/pl_PL.po b/addons/hr_attendance/i18n/pl_PL.po index e457fab34a8..dcc33958b3e 100644 --- a/addons/hr_attendance/i18n/pl_PL.po +++ b/addons/hr_attendance/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index fe7e97d22cf..5be59a2572c 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/pt_PT.po b/addons/hr_attendance/i18n/pt_PT.po index 36dde83c3f1..41437866ee3 100644 --- a/addons/hr_attendance/i18n/pt_PT.po +++ b/addons/hr_attendance/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/ro_RO.po b/addons/hr_attendance/i18n/ro_RO.po index 1ad5ac60ab8..2a09e639466 100644 --- a/addons/hr_attendance/i18n/ro_RO.po +++ b/addons/hr_attendance/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/ru_RU.po b/addons/hr_attendance/i18n/ru_RU.po index 46c7f00d655..ff4e67d7dcf 100644 --- a/addons/hr_attendance/i18n/ru_RU.po +++ b/addons/hr_attendance/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/sl_SL.po b/addons/hr_attendance/i18n/sl_SL.po index 4316da17b29..dc89da83c71 100644 --- a/addons/hr_attendance/i18n/sl_SL.po +++ b/addons/hr_attendance/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/sv_SE.po b/addons/hr_attendance/i18n/sv_SE.po index e75bb9eca26..611abda865a 100644 --- a/addons/hr_attendance/i18n/sv_SE.po +++ b/addons/hr_attendance/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/sv_SV.po b/addons/hr_attendance/i18n/sv_SV.po index 7e65923266a..8624eef0dcf 100644 --- a/addons/hr_attendance/i18n/sv_SV.po +++ b/addons/hr_attendance/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -81,8 +81,8 @@ msgid "Employee's name" msgstr "" #. module: hr_attendance -#: wizard_button:hr.print_month,init,print:0 -#: wizard_button:hr.print_week,init,print:0 +#: wizard_button:hr.attendance.print_month,init,print:0 +#: wizard_button:hr.attendance.print_week,init,print:0 msgid "Print Timesheet" msgstr "" @@ -91,6 +91,11 @@ msgstr "" msgid "Print Attendance Error Report" msgstr "" +#. module: hr_attendance +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_attendance #: model:ir.actions.wizard,name:hr_attendance.print_week msgid "Print Timesheet by week" @@ -102,8 +107,8 @@ msgid "Employee" msgstr "Anställd" #. module: hr_attendance -#: wizard_view:hr.print_week,init:0 -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.print_week,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Select a time span" msgstr "" @@ -136,17 +141,17 @@ msgid "Action reason" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "March" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "August" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "May" msgstr "" @@ -157,7 +162,7 @@ msgid "A sign-out must be right after a sign-in !" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "June" msgstr "" @@ -204,7 +209,7 @@ msgid "Date" msgstr "Datum" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "July" msgstr "" @@ -219,8 +224,8 @@ msgid "Attendance reasons" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_week,init,init_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,init_date:0 +#: wizard_field:hr.attendance.print_week,init,init_date:0 +#: wizard_field:hr.attendance.report,init,init_date:0 msgid "Starting Date" msgstr "" @@ -235,12 +240,12 @@ msgid "Absent" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "February" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "October" msgstr "" @@ -256,7 +261,7 @@ msgid "The Sign-in date must be in the past" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_month,init,year:0 +#: wizard_field:hr.attendance.print_month,init,year:0 msgid "Year" msgstr "" @@ -283,7 +288,7 @@ msgid "Sign in" msgstr "" #. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Analysis Information" msgstr "" @@ -293,12 +298,12 @@ msgid "Current state" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "January" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "April" msgstr "" @@ -321,7 +326,7 @@ msgid "Action" msgstr "Åtgärd" #. module: hr_attendance -#: wizard_button:hr.timesheet.attendance.report,init,print:0 +#: wizard_button:hr.attendance.report,init,print:0 msgid "Print Attendance Report" msgstr "" @@ -332,12 +337,12 @@ msgid "Attendance Reasons" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "November" msgstr "" #. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 +#: wizard_view:hr.attendance.report,init:0 msgid "Bellow this delay, the error is considered to be voluntary" msgstr "" @@ -348,28 +353,40 @@ msgid "UserError" msgstr "" #. module: hr_attendance -#: wizard_field:hr.timesheet.attendance.report,init,max_delay:0 +#: wizard_field:hr.attendance.report,init,max_delay:0 msgid "Max. Delay (Min)" msgstr "" #. module: hr_attendance -#: wizard_view:hr.print_week,init:0 +#: wizard_view:hr.attendance.print_week,init:0 msgid "Select a starting and a end date" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_week,init,end_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,end_date:0 +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + +#. module: hr_attendance +#: wizard_field:hr.attendance.print_week,init,end_date:0 +#: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "September" msgstr "" @@ -384,12 +401,12 @@ msgid "Employee attendance" msgstr "" #. module: hr_attendance -#: wizard_view:hr.print_month,init:0 +#: wizard_view:hr.attendance.print_month,init:0 msgid "Select a month" msgstr "" #. module: hr_attendance -#: wizard_field:hr.print_month,init,month:0 +#: wizard_field:hr.attendance.print_month,init,month:0 msgid "Month" msgstr "" @@ -405,17 +422,17 @@ msgid "Warning" msgstr "" #. module: hr_attendance -#: selection:hr.print_month,init,month:0 +#: selection:hr.attendance.print_month,init,month:0 msgid "December" msgstr "" #. module: hr_attendance -#: wizard_button:hr.print_month,init,end:0 -#: wizard_button:hr.print_week,init,end:0 +#: wizard_button:hr.attendance.print_month,init,end:0 +#: wizard_button:hr.attendance.print_week,init,end:0 +#: wizard_button:hr.attendance.report,init,end:0 #: wizard_button:hr.si_so,init,end:0 #: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.si_so,so_ask_si,end:0 -#: wizard_button:hr.timesheet.attendance.report,init,end:0 msgid "Cancel" msgstr "" diff --git a/addons/hr_attendance/i18n/tr_TR.po b/addons/hr_attendance/i18n/tr_TR.po index 5d574b64351..1ed6b719f1a 100644 --- a/addons/hr_attendance/i18n/tr_TR.po +++ b/addons/hr_attendance/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/uk_UK.po b/addons/hr_attendance/i18n/uk_UK.po index bb7f7ca77f2..d4685b0e785 100644 --- a/addons/hr_attendance/i18n/uk_UK.po +++ b/addons/hr_attendance/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index 87e0ca49510..188f8dedd02 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index a1b6ad766a8..6012b2197ec 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -362,12 +362,24 @@ msgstr "" msgid "Select a starting and a end date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No Data Available" +msgstr "" + #. module: hr_attendance #: wizard_field:hr.attendance.print_week,init,end_date:0 #: wizard_field:hr.attendance.report,init,end_date:0 msgid "Ending Date" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/wizard/print_attendance_error.py:0 +#, python-format +msgid "No records found for your selection!" +msgstr "" + #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." diff --git a/addons/hr_contract/i18n/ar_AR.po b/addons/hr_contract/i18n/ar_AR.po index 47b9d8909c4..a44ba45cc00 100644 --- a/addons/hr_contract/i18n/ar_AR.po +++ b/addons/hr_contract/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/bg_BG.po b/addons/hr_contract/i18n/bg_BG.po index 0586955e12e..7065098e17b 100644 --- a/addons/hr_contract/i18n/bg_BG.po +++ b/addons/hr_contract/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/bs_BS.po b/addons/hr_contract/i18n/bs_BS.po index e3ada7ea203..e55dc64654d 100644 --- a/addons/hr_contract/i18n/bs_BS.po +++ b/addons/hr_contract/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ca_ES.po b/addons/hr_contract/i18n/ca_ES.po index 2275f742c15..8a4de1d6b9b 100644 --- a/addons/hr_contract/i18n/ca_ES.po +++ b/addons/hr_contract/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Funció" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Estat civil" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Tipus de salari" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nom contracte" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Tipus de salari" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Estat civil" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/cs_CS.po b/addons/hr_contract/i18n/cs_CS.po index 7f9e2f801c7..9b1615b03ec 100644 --- a/addons/hr_contract/i18n/cs_CS.po +++ b/addons/hr_contract/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -52,8 +52,8 @@ msgid "Wage Types" msgstr "" #. module: hr_contract -#: field:hr.employee,soc_security:0 -msgid "Social security number" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: hr_contract @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -182,11 +179,6 @@ msgstr "" msgid "Wage Period" msgstr "" -#. module: hr_contract -#: field:hr.employee,nationality:0 -msgid "Nationality" -msgstr "" - #. module: hr_contract #: field:hr.employee,audiens_num:0 msgid "AUDIENS Number" @@ -203,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract @@ -241,19 +236,14 @@ msgstr "" msgid "Start Date" msgstr "" -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -msgid "Contract Duration" -msgstr "" - #. module: hr_contract #: field:hr.employee.marital.status,description:0 msgid "Status Description" msgstr "" #. module: hr_contract -#: field:hr.employee,birth_date:0 -msgid "Birth Date" +#: view:hr.contract:0 +#: view:hr.employee:0 +msgid "Contract Duration" msgstr "" diff --git a/addons/hr_contract/i18n/cs_CZ.po b/addons/hr_contract/i18n/cs_CZ.po index bc27c5ac9d9..1bb311bda8f 100644 --- a/addons/hr_contract/i18n/cs_CZ.po +++ b/addons/hr_contract/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/de_DE.po b/addons/hr_contract/i18n/de_DE.po index 547ce06f6f1..c11060fcab9 100644 --- a/addons/hr_contract/i18n/de_DE.po +++ b/addons/hr_contract/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Funktion" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Familienstand" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Vertragliche Vergütung" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Vertragsbezeichnung" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Vertragliche Vergütung" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Familienstand" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 2f773542177..767bf4fe292 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_ES.po b/addons/hr_contract/i18n/es_ES.po index 48c2162f114..2feee2d29d4 100644 --- a/addons/hr_contract/i18n/es_ES.po +++ b/addons/hr_contract/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Función" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Estado civil" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Tipo de salario" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nombre contrato" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Tipo de salario" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Estado civil" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/et_EE.po b/addons/hr_contract/i18n/et_EE.po index ba3dd17d756..97a164340a9 100644 --- a/addons/hr_contract/i18n/et_EE.po +++ b/addons/hr_contract/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: hr_contract #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_contract #: field:hr.contract,employee_id:0 @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/fr_FR.po b/addons/hr_contract/i18n/fr_FR.po index 451d043af89..36795885eec 100644 --- a/addons/hr_contract/i18n/fr_FR.po +++ b/addons/hr_contract/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Fonction" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "État matrimonial" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Type de COntrat Salarial" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nom du Contrat" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Type de COntrat Salarial" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "État matrimonial" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/hr_HR.po b/addons/hr_contract/i18n/hr_HR.po index bc2ea01358f..360c39000e3 100644 --- a/addons/hr_contract/i18n/hr_HR.po +++ b/addons/hr_contract/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/hr_contract.pot b/addons/hr_contract/i18n/hr_contract.pot index 19fbad86c6e..43472ae9b3d 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/hu_HU.po b/addons/hr_contract/i18n/hu_HU.po index 7129d54ef44..0c8bf6e6c11 100644 --- a/addons/hr_contract/i18n/hu_HU.po +++ b/addons/hr_contract/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/it_IT.po b/addons/hr_contract/i18n/it_IT.po index f9d23e371e9..6b59d879027 100644 --- a/addons/hr_contract/i18n/it_IT.po +++ b/addons/hr_contract/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Funzione" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Stato civile" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Tipo Retribuzione Contratto" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nome contratto" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Tipo Retribuzione Contratto" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Stato civile" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/lt_LT.po b/addons/hr_contract/i18n/lt_LT.po index 05bbd174740..03f9feffc18 100644 --- a/addons/hr_contract/i18n/lt_LT.po +++ b/addons/hr_contract/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index 8a352ab5a97..4e87c33e7fa 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/nl_NL.po b/addons/hr_contract/i18n/nl_NL.po index 2117a37b714..6fd4c4ab94b 100644 --- a/addons/hr_contract/i18n/nl_NL.po +++ b/addons/hr_contract/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Functie" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Burgerlijke status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Contract type loon" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Contract naam" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Contract type loon" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Burgerlijke status" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/pl_PL.po b/addons/hr_contract/i18n/pl_PL.po index 72357152127..2d12f9c3879 100644 --- a/addons/hr_contract/i18n/pl_PL.po +++ b/addons/hr_contract/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Funkcja" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Stan cywilny" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nazwa umowy" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Stan cywilny" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index c1da27e79ac..ca1b4b4d939 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/pt_PT.po b/addons/hr_contract/i18n/pt_PT.po index c7848d6a712..59c0fcc1aa1 100644 --- a/addons/hr_contract/i18n/pt_PT.po +++ b/addons/hr_contract/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Função" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Estado civil" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Tipo de contrato salarial" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Nome do contrato" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Tipo de contrato salarial" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Estado civil" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/ro_RO.po b/addons/hr_contract/i18n/ro_RO.po index 024789ee5cc..37c59f88a6c 100644 --- a/addons/hr_contract/i18n/ro_RO.po +++ b/addons/hr_contract/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ru_RU.po b/addons/hr_contract/i18n/ru_RU.po index 4877e330b51..8cf34f03066 100644 --- a/addons/hr_contract/i18n/ru_RU.po +++ b/addons/hr_contract/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,13 +82,10 @@ msgid "Function" msgstr "Функция" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "Семейное положение" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" +msgstr "Тип зарплаты по договору" #. module: hr_contract #: view:hr.employee:0 @@ -198,10 +195,13 @@ msgid "Contract Name" msgstr "Газвание договора" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "Тип зарплаты по договору" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" +msgstr "Семейное положение" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/sl_SL.po b/addons/hr_contract/i18n/sl_SL.po index 0346ca38b5a..20a1189937d 100644 --- a/addons/hr_contract/i18n/sl_SL.po +++ b/addons/hr_contract/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sv_SE.po b/addons/hr_contract/i18n/sv_SE.po index c63be09f046..fa82bb39ff2 100644 --- a/addons/hr_contract/i18n/sv_SE.po +++ b/addons/hr_contract/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sv_SV.po b/addons/hr_contract/i18n/sv_SV.po index 341f9cbf8dc..751033dc3f0 100644 --- a/addons/hr_contract/i18n/sv_SV.po +++ b/addons/hr_contract/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -52,8 +52,8 @@ msgid "Wage Types" msgstr "" #. module: hr_contract -#: field:hr.employee,soc_security:0 -msgid "Social security number" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: hr_contract @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -182,11 +179,6 @@ msgstr "" msgid "Wage Period" msgstr "" -#. module: hr_contract -#: field:hr.employee,nationality:0 -msgid "Nationality" -msgstr "" - #. module: hr_contract #: field:hr.employee,audiens_num:0 msgid "AUDIENS Number" @@ -203,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract @@ -241,19 +236,14 @@ msgstr "" msgid "Start Date" msgstr "" -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -msgid "Contract Duration" -msgstr "" - #. module: hr_contract #: field:hr.employee.marital.status,description:0 msgid "Status Description" msgstr "" #. module: hr_contract -#: field:hr.employee,birth_date:0 -msgid "Birth Date" +#: view:hr.contract:0 +#: view:hr.employee:0 +msgid "Contract Duration" msgstr "" diff --git a/addons/hr_contract/i18n/tr_TR.po b/addons/hr_contract/i18n/tr_TR.po index 0af8c3cb5c3..90042ce98b9 100644 --- a/addons/hr_contract/i18n/tr_TR.po +++ b/addons/hr_contract/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/uk_UK.po b/addons/hr_contract/i18n/uk_UK.po index 59957178f3c..b50e4d00fc6 100644 --- a/addons/hr_contract/i18n/uk_UK.po +++ b/addons/hr_contract/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index 565c31296de..0165006e5e0 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index 3b2b0daa919..48a595243bc 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,12 +82,9 @@ msgid "Function" msgstr "" #. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" +#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type +#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type +msgid "Contract Wage Type" msgstr "" #. module: hr_contract @@ -198,9 +195,12 @@ msgid "Contract Name" msgstr "" #. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" +#: field:hr.employee,marital_status:0 +#: view:hr.employee.marital.status:0 +#: field:hr.employee.marital.status,name:0 +#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status +#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status +msgid "Marital Status" msgstr "" #. module: hr_contract diff --git a/addons/hr_expense/i18n/ar_AR.po b/addons/hr_expense/i18n/ar_AR.po index 2632b9e6e8e..c56653c17fa 100644 --- a/addons/hr_expense/i18n/ar_AR.po +++ b/addons/hr_expense/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/bg_BG.po b/addons/hr_expense/i18n/bg_BG.po index 5ce0be999e1..1c3ae246a74 100644 --- a/addons/hr_expense/i18n/bg_BG.po +++ b/addons/hr_expense/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/bs_BS.po b/addons/hr_expense/i18n/bs_BS.po index e1b93ccc384..3ddfc0c612f 100644 --- a/addons/hr_expense/i18n/bs_BS.po +++ b/addons/hr_expense/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/ca_ES.po b/addons/hr_expense/i18n/ca_ES.po index 3d06bc6c8b3..3f27720c391 100644 --- a/addons/hr_expense/i18n/ca_ES.po +++ b/addons/hr_expense/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Refusar" msgid "Notes" msgstr "Notes" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Validació" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Aquest document haurà de ser datat i signat pel reintegre" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "Factura de proveïdor" msgid "State" msgstr "Estat" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Data validació" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Total:" msgid "HR Expenses" msgstr "Despeses RRHH" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "Aprova despesa" msgid "Accept" msgstr "Accepta" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Producte" msgid "Description" msgstr "Descripció" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Cancel·lat" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Quantitats" msgid "Refused" msgstr "Rebutjada" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/cs_CS.po b/addons/hr_expense/i18n/cs_CS.po index ff7897a4b72..8630f68463b 100644 --- a/addons/hr_expense/i18n/cs_CS.po +++ b/addons/hr_expense/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Expenses waiting validation" msgstr "" +#. module: hr_expense +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 msgid "Date Confirmed" @@ -84,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -132,6 +142,12 @@ msgstr "" msgid "The accoutant validates the sheet" msgstr "" +#. module: hr_expense +#: code:addons/hr_expense/hr_expense.py:0 +#, python-format +msgid "Please configure Default Expanse account for Product purchase, `property_account_expense_categ`" +msgstr "" + #. module: hr_expense #: field:hr.expense.line,analytic_account:0 msgid "Analytic account" @@ -148,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -323,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -409,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -436,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -457,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/cs_CZ.po b/addons/hr_expense/i18n/cs_CZ.po index fa582fe27b7..b7a1275de40 100644 --- a/addons/hr_expense/i18n/cs_CZ.po +++ b/addons/hr_expense/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/de_DE.po b/addons/hr_expense/i18n/de_DE.po index c787a4f08b3..f5b01de7b03 100644 --- a/addons/hr_expense/i18n/de_DE.po +++ b/addons/hr_expense/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Zurücksetzen" msgid "Notes" msgstr "Bemerkungen" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Validierung" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Dieses Dokument sollte für eine Rückerstattung der Kosten datiert und genehmigt sein." +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "Eingangsrechnungen" msgid "State" msgstr "Status" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Datum Validierung" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Summe:" msgid "HR Expenses" msgstr "Personalkosten" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "Akzeptiere Ausgabe" msgid "Accept" msgstr "Akzeptieren" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Produkt" msgid "Description" msgstr "Beschreibung" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Abgebrochen" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Mengen" msgid "Refused" msgstr "Abgelehnt" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index e4bb58a2c82..22141281020 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/es_ES.po b/addons/hr_expense/i18n/es_ES.po index ef818d3bb8a..0aac836433d 100644 --- a/addons/hr_expense/i18n/es_ES.po +++ b/addons/hr_expense/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Rechazar" msgid "Notes" msgstr "Notas" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Validación" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Este documento debe ser fechado y firmado para el reintegro" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "Factura de proveedor" msgid "State" msgstr "Estado" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Fecha validación" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Total:" msgid "HR Expenses" msgstr "Gastos RRHH" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "Aprobar gasto" msgid "Accept" msgstr "Acceptar" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Producto" msgid "Description" msgstr "Descripción" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Cancelado" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Cantidades" msgid "Refused" msgstr "Rechazado" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/et_EE.po b/addons/hr_expense/i18n/et_EE.po index 74dfe772913..c90bf44cb9f 100644 --- a/addons/hr_expense/i18n/et_EE.po +++ b/addons/hr_expense/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #. module: hr_expense #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -89,14 +89,19 @@ msgstr "Keeldu" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/fr_FR.po b/addons/hr_expense/i18n/fr_FR.po index b1f69dbd1c6..f3ea3764d48 100644 --- a/addons/hr_expense/i18n/fr_FR.po +++ b/addons/hr_expense/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Refuser" msgid "Notes" msgstr "Notes" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Validation" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Ce document doit être daté et signé pour remboursement" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "État" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Date de la Validation" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Total:" msgid "HR Expenses" msgstr "Dépense HR" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "Accepter" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Produit" msgid "Description" msgstr "Description" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Annulé" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Quantités" msgid "Refused" msgstr "Refusée" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/hr_HR.po b/addons/hr_expense/i18n/hr_HR.po index a415265105c..39f76359ea1 100644 --- a/addons/hr_expense/i18n/hr_HR.po +++ b/addons/hr_expense/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/hr_expense.pot b/addons/hr_expense/i18n/hr_expense.pot index a57f6140046..ece8ee576de 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/hu_HU.po b/addons/hr_expense/i18n/hu_HU.po index 43bf56787b1..9f4d3fe8247 100644 --- a/addons/hr_expense/i18n/hu_HU.po +++ b/addons/hr_expense/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/it_IT.po b/addons/hr_expense/i18n/it_IT.po index 9146f309319..3898fe17aeb 100644 --- a/addons/hr_expense/i18n/it_IT.po +++ b/addons/hr_expense/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Rifiuta" msgid "Notes" msgstr "Note" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Convalida" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Questo documento deve essere datato e firmato per ricevere il rimborso" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "Fattura Fornitore" msgid "State" msgstr "Stato" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Data validata" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Totale:" msgid "HR Expenses" msgstr "Spese Risorse Umane" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "Approvare spesa" msgid "Accept" msgstr "Accetto" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Prodotto" msgid "Description" msgstr "Descrizione" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Annullata" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Quantità" msgid "Refused" msgstr "Rifiutato" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/lt_LT.po b/addons/hr_expense/i18n/lt_LT.po index 2f86d4b147a..9261b36e67f 100644 --- a/addons/hr_expense/i18n/lt_LT.po +++ b/addons/hr_expense/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index 3955f7ce5da..980b2113611 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/nl_NL.po b/addons/hr_expense/i18n/nl_NL.po index 9676337cca0..748113c1fad 100644 --- a/addons/hr_expense/i18n/nl_NL.po +++ b/addons/hr_expense/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/pl_PL.po b/addons/hr_expense/i18n/pl_PL.po index 85feb87f793..5b7c8c5c707 100644 --- a/addons/hr_expense/i18n/pl_PL.po +++ b/addons/hr_expense/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "Odmów" msgid "Notes" msgstr "Uwagi" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Sprawdzanie" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index df8bb9f39a0..22f4b5a4ea7 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/pt_PT.po b/addons/hr_expense/i18n/pt_PT.po index 6c11902a05e..ac424266ace 100644 --- a/addons/hr_expense/i18n/pt_PT.po +++ b/addons/hr_expense/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Recusar" msgid "Notes" msgstr "Notas" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Validação" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Este documento deve ser datado e assinado para reembolso" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "Factura do fornecedor" msgid "State" msgstr "Estado" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Data validada" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Total:" msgid "HR Expenses" msgstr "Despesas do RH" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "Aprovar despesas" msgid "Accept" msgstr "Aceitar" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Produto" msgid "Description" msgstr "Descrição" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Cancelado" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Quantidades" msgid "Refused" msgstr "Recusado" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/ro_RO.po b/addons/hr_expense/i18n/ro_RO.po index 372b45f7c49..c19cff2bbee 100644 --- a/addons/hr_expense/i18n/ro_RO.po +++ b/addons/hr_expense/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/ru_RU.po b/addons/hr_expense/i18n/ru_RU.po index 9aa1fd24d07..48febed9f90 100644 --- a/addons/hr_expense/i18n/ru_RU.po +++ b/addons/hr_expense/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,15 +89,20 @@ msgstr "Отклонить" msgid "Notes" msgstr "Примечания" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "Проверка" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "Для возмещения расходов необходимо поставить дату и расписаться на документы" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." +msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "Состояние" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "Дата проверки" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "Всего:" msgid "HR Expenses" msgstr "Расходы отдела кадров" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "Принять" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "Продукция" msgid "Description" msgstr "Описание" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "Отменено" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "Количество" msgid "Refused" msgstr "Отклонено" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/sl_SL.po b/addons/hr_expense/i18n/sl_SL.po index 62c9d02d88f..3c200b805a4 100644 --- a/addons/hr_expense/i18n/sl_SL.po +++ b/addons/hr_expense/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "Zavrnjeno" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/sv_SE.po b/addons/hr_expense/i18n/sv_SE.po index b9a8ecb2020..9a2c363c946 100644 --- a/addons/hr_expense/i18n/sv_SE.po +++ b/addons/hr_expense/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/sv_SV.po b/addons/hr_expense/i18n/sv_SV.po index fdc76cebee0..6e516720cd6 100644 --- a/addons/hr_expense/i18n/sv_SV.po +++ b/addons/hr_expense/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Expenses waiting validation" msgstr "" +#. module: hr_expense +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 msgid "Date Confirmed" @@ -84,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -132,6 +142,12 @@ msgstr "" msgid "The accoutant validates the sheet" msgstr "" +#. module: hr_expense +#: code:addons/hr_expense/hr_expense.py:0 +#, python-format +msgid "Please configure Default Expanse account for Product purchase, `property_account_expense_categ`" +msgstr "" + #. module: hr_expense #: field:hr.expense.line,analytic_account:0 msgid "Analytic account" @@ -148,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -323,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -409,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -436,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -457,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/tr_TR.po b/addons/hr_expense/i18n/tr_TR.po index a533b2a9e82..56fa4c4fabb 100644 --- a/addons/hr_expense/i18n/tr_TR.po +++ b/addons/hr_expense/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/uk_UK.po b/addons/hr_expense/i18n/uk_UK.po index 6f2cf971def..47859c1b6b6 100644 --- a/addons/hr_expense/i18n/uk_UK.po +++ b/addons/hr_expense/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "Відмовити" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 154a8ae9b80..5ea8b93ce03 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index a3af7282ae4..bfa4f59baee 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -89,14 +89,19 @@ msgstr "" msgid "Notes" msgstr "" +#. module: hr_expense +#: selection:hr.expense.expense,state:0 +msgid "Cancelled" +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "Validation" msgstr "" #. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" +#: help:product.product,hr_expense_ok:0 +msgid "Determine if the product can be visible in the list of product within a selection from an HR expense sheet line." msgstr "" #. module: hr_expense @@ -159,11 +164,6 @@ msgstr "" msgid "State" msgstr "" -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - #. module: hr_expense #: rml:hr.expense:0 #: field:hr.expense.expense,employee_id:0 @@ -334,6 +334,11 @@ msgstr "" msgid "HR Expenses" msgstr "" +#. module: hr_expense +#: field:hr.expense.expense,date_valid:0 +msgid "Date Validated" +msgstr "" + #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Account Move" @@ -420,6 +425,11 @@ msgstr "" msgid "Accept" msgstr "" +#. module: hr_expense +#: rml:hr.expense:0 +msgid "This document must be dated and signed for reimbursement" +msgstr "" + #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." @@ -447,11 +457,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - #. module: hr_expense #: view:hr.expense.expense:0 #: field:hr.expense.expense,name:0 @@ -468,6 +473,11 @@ msgstr "" msgid "Refused" msgstr "" +#. module: hr_expense +#: field:product.product,hr_expense_ok:0 +msgid "Can be Expensed" +msgstr "" + #. module: hr_expense #: rml:hr.expense:0 msgid "Ref." diff --git a/addons/hr_holidays/i18n/ar_AR.po b/addons/hr_holidays/i18n/ar_AR.po index 471cfd5ac3b..3723842cf27 100644 --- a/addons/hr_holidays/i18n/ar_AR.po +++ b/addons/hr_holidays/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/bg_BG.po b/addons/hr_holidays/i18n/bg_BG.po index e489d1cea09..3234c03e506 100644 --- a/addons/hr_holidays/i18n/bg_BG.po +++ b/addons/hr_holidays/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/bs_BS.po b/addons/hr_holidays/i18n/bs_BS.po index 2eb1410ce21..307e14f7f7f 100644 --- a/addons/hr_holidays/i18n/bs_BS.po +++ b/addons/hr_holidays/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/ca_ES.po b/addons/hr_holidays/i18n/ca_ES.po index e0448413f01..ef3fd9cc971 100644 --- a/addons/hr_holidays/i18n/ca_ES.po +++ b/addons/hr_holidays/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Nova petició de vacances" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Totes les peticions de vacances" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -33,87 +33,90 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Vacances disponibles" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Peticions esperant validació" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Blau clar" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Marró" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "del" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Resum dies d'absència" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Vacances empleat" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "Warning !" -msgstr "Atenció!" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Canvia esborrany" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Vacances" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "fins" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Cian clar" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Verd clar" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Declaració empleat" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 #: selection:hr.holidays,state:0 #: model:process.transition.action,name:hr_holidays.process_transition_action_validate0 msgid "Validate" -msgstr "Validada" +msgstr "Valida" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Petició rebutjada" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Aprovat" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Ambdues" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Rebutja" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "D'acord" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Les meves peticions de vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Notes" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Tipus de vacances" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "Petició és rebutjada." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestió de vacances" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Anàlisi des de" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Resum de vacances" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Las vacances són fixades en el calendari" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Tipus de vacances" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Tipus de vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Dia fi vacances" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Vacances permeses" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Document de declaració oficial per declarar nou empleat" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Vacances per usuari" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Defineix tipus de vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Confirmada" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "Des de" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Confirma" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Les meves peticions de vacances esperant confirmació" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Id empleat" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Codificació de vacances disponibles anuales." +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Empleat" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -268,45 +271,46 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" -msgstr "Empleat obté vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Salmó clar" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Groc palla" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Número de vacances sol·licitades" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Les meves peticions de vacances" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Número de dies" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Tipus de vacances" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Opcions de l'informe" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,146 +320,146 @@ msgstr "XML invàlid per a la definició de la vista!" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "El seu responsable aprova la petició" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Si hi ha vacances disponibles, l'empleat pot agafar-les i omplir-les." +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Selecciona com a mínim un empleat. Prova una altra vegada." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Les meves peticions de vacances validades" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Empleats" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Nombre de dies sol·licitats" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Vacances per empleat" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Permet superar el límit" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Usuari de vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavanda" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Imprimeix el resum de vacances de l'empleat" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendari" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Dia inici vacances" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Notifica" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 msgid "Employee fills in a request for holidays" -msgstr "Empleat omple una petició de vacances" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Las vacaciones són fixades en el calendari." +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Corall clar" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Les meves vacances disponibles" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Negre" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Les meves peticions de vacances refusades" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Fixar vacances" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Les meves peticions de vacances esborrany" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Màxim vacances permeses" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Estat" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Vori" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Les meves peticions de vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Color del tipus" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,47 +487,47 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Ambdues validades i confirmades" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Vacances ja sol·licitades" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "vacances." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "Esborrany" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Usuari" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Document per empleat" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 msgid "Date" -msgstr "Data" +msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Rebutja" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Secció" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,55 +538,49 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Gestor de vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Actiu" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Les meves peticions de vacances esborrany" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "No podeu cancel·lar aquesta petició de vacances. Heu de convertir el seu cas en estat esborrany." +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Petició aprovada" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "Historial" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Petició de vacances" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Peticions esperant validació" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "General" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "General Information" -msgstr "Informació general" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,23 +588,23 @@ msgstr "Informació general" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Cancel·la" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 msgid "Holidays def Request" -msgstr "Petició defineix vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Validada" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Les meves peticions de vacances rebutjades" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter e #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Imprimeix" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Imprimeix el resum de vacances" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "Registre de vacances" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Departaments" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Descripció" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -649,43 +642,48 @@ msgstr "Rebutjada" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "Petició és aprovada." +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Definició vacances" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Selecciona tipus de vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Cas" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Codifica número de vacances disponibles" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Secretaria social" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Lila" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Vermell" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -695,37 +693,37 @@ msgstr "" #. module: hr_holidays #: model:process.process,name:hr_holidays.process_process_holidaysprocess0 msgid "Holidays Process" -msgstr "Procés de vacances" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "Heu de seleccionar al menys 1 departament. Intenteu de nou." +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Les meves peticions de vacances validades" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 msgid "Holiday Request ID" -msgstr "ID petició de vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Groc clar" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Rosa clar" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "El seu responsable rebutja la petició" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/cs_CS.po b/addons/hr_holidays/i18n/cs_CS.po index ada5787fb7e..2b376cf38f0 100644 --- a/addons/hr_holidays/i18n/cs_CS.po +++ b/addons/hr_holidays/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "All Holidays Requests" msgstr "" +#. module: hr_holidays +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" @@ -57,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -73,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -215,7 +223,6 @@ msgid "Define holiday status" msgstr "" #. module: hr_holidays -#: selection:hr.holidays,state:0 #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" @@ -234,6 +241,7 @@ msgid "Confirm" msgstr "" #. module: hr_holidays +#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" msgstr "" @@ -255,6 +263,11 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_holidays +#: selection:hr.holidays,state:0 +msgid "Waiting Validation" +msgstr "" + #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" @@ -282,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -516,8 +530,9 @@ msgid "Section" msgstr "" #. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting -msgid "My Holidays Request Waiting confirmation" +#: code:addons/hr_holidays/hr.py:0 +#, python-format +msgid "Attention!" msgstr "" #. module: hr_holidays @@ -547,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -614,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -656,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" @@ -716,3 +725,9 @@ msgstr "" msgid "His manager refuses the request" msgstr "" +#. module: hr_holidays +#: code:addons/hr_holidays/hr.py:0 +#, python-format +msgid "You Cannot Validate leaves while available leaves are less than asked leaves." +msgstr "" + diff --git a/addons/hr_holidays/i18n/cs_CZ.po b/addons/hr_holidays/i18n/cs_CZ.po index 17ec774f3c2..de8dc72d304 100644 --- a/addons/hr_holidays/i18n/cs_CZ.po +++ b/addons/hr_holidays/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/de_DE.po b/addons/hr_holidays/i18n/de_DE.po index 2c6896ade2b..3d30b5379c6 100644 --- a/addons/hr_holidays/i18n/de_DE.po +++ b/addons/hr_holidays/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Neue Urlaubsanfrage" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Alle Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -33,75 +33,78 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Verbleibende freie Tage" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Urlaubsanfrage (zu validieren)" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Light Blue" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Braun" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "von" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Abwesenheitstage Zusammenfassung" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Mitarbeiter Urlaub" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "Warning !" -msgstr "Warnung" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Setze auf Entwurf" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Urlaub" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "nach" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Cyan Blau" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Grün" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Mitarbeiter Erklärung" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -113,7 +116,7 @@ msgstr "Validieren" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Verworfene Anfrage" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Akzeptiert" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Beide" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Zurücksetzen" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "OK" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Meine Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Bemerkungen" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Urlaub Status" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "Anfrage wurde verworfen." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Urlaubsplanung" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Analysiere ab" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Zusammenfassung Urlaub" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Der Urlaub ist im Kalender ausgewiesen" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Urlaub Status" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Urlaub Status" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Urlaubsende" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Urlaub erlaubt" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Dokument Anmeldung Mitarbeit" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Urlaub nach Benutzer" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Definiere Urlaubsstatus" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Bestätigt" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "Von" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Gebucht" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Meine Warteliste mit Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Employee_id" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Erfassung des Jahresurlaubs" +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Mitabeiter" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -268,45 +271,46 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" -msgstr "Mitarbeiterurlaub wird genehmigt" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Light Salmon" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Weiss" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Anzahl der beantragten Urlaubstage" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Meine Urlaubsanträge" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Anzahl Tage" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Urlaubsstatus" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Report Optionen" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,146 +320,146 @@ msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Sein Vorgesetzter akzeptiert Antrag" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Bei verfügbarem freien Urlaub kann Mitarbeiter diesen abfeiern." +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Sie müssen mindestens einen Mitarbeiter wählen.Versuchen Sie es erneut." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Meine genehmigten Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Mitarbeiter" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Anzahl Tage in Urlaubsantrag" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Urlaub per Mitarbeiter" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Erlaube Überschreitung Limit" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Urlaube Benutzer" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavender" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Drucke alle Urlaubszeiten" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Kalenderansicht" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Start Urlaubsbeginn" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Benachrichtigung" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 msgid "Employee fills in a request for holidays" -msgstr "Mitarbeiter stellt Urlaubsantrag" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Urlaub ist im Kaldender" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Hellblau" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Mein verfügbarer Urlaub" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Schwarz" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Meine verworfenen Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Setze Jahresurlaub" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Meine Urlaubsanfragen (Entwurf)" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Maximale Erlaubnis Abwesende" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Status" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Ivory" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Meine Urlaubsanfragen" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Farbe des Status" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,47 +487,47 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Bestätigt und Angenommen" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "genommener Urlaub" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "Urlaub." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "Entwurf" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Benutzer" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Dokument zu Mitarbeiter" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Verworfen" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Bereich" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,55 +538,49 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Urlaubsvertretung" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Mein Urlaubsantrag Entwurf" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "Dieser Urlaubantrag kann so nicht storniert werden. Er muss zuerst in den Entwurfsstatus versetzt werden." +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Bestätigte Urlaubsanfrage" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "Historie" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Urlaubsanfrage" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Urlaubsanfragen (warten auf Genehmigung)" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "Allgemein" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "General Information" -msgstr "Grundinformation" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,23 +588,23 @@ msgstr "Grundinformation" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Abbrechen" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 msgid "Holidays def Request" -msgstr "Urlaubsanfrage" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Bestätigt" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Meine Urlaubsanfragen (abgelehnt)" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen b #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Druck" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Drucke alle Urlaubszeiten" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "Protokoll Urlaube" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Abteilungen" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Beschreibung" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -649,43 +642,48 @@ msgstr "Abgelehnt" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "Urlaubsanfrage wurde genehmigt" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Urlaubsbeschreibung" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Wähle Urlaubstyp" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Fach" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Erfasse Anzahl Urlaubstage" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Personalsekretariat" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Violet" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Rot" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -695,37 +693,37 @@ msgstr "" #. module: hr_holidays #: model:process.process,name:hr_holidays.process_process_holidaysprocess0 msgid "Holidays Process" -msgstr "Urlaube Prozess" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "Sie müssen mindestens eine Abteilung wählen. Versuche es erneut." +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Mein genehmigter Urlaub" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 msgid "Holiday Request ID" -msgstr "Uraubsantrag ID" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Gelb" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Pink" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "Sein Vorgesetzter lehnt den Urlaubsantrag ab." +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index 0dc64944944..fcc3981bca9 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/es_ES.po b/addons/hr_holidays/i18n/es_ES.po index 5afaf67e843..591f2ffa3b2 100644 --- a/addons/hr_holidays/i18n/es_ES.po +++ b/addons/hr_holidays/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Nueva petición de vacaciones" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Todas las peticiones de vacaciones" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -33,87 +33,90 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Vacaciones disponibles" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Peticiones esperando validación" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Azul claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Marrón" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "del" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Resumen días de ausencia" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Vacaciones empleado" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "Warning !" -msgstr "¡Atención!" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Cambiar a borrador" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Vacaciones" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "hasta" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Cyan claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Verde claro" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Declaración empleado" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 #: selection:hr.holidays,state:0 #: model:process.transition.action,name:hr_holidays.process_transition_action_validate0 msgid "Validate" -msgstr "Validada" +msgstr "Validar" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Petición rechazada" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Aprobado" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Ambas" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Rechazar" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Mis peticiones de vacaciones" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Notas" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Estado vacaciones" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "Petición es rechazada." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestión de vacaciones" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Análisis desde" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Resumen de las vacaciones" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Las vacaciones son fijadas en el calendario" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Estado Vacaciones" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Estado Vacaciones" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Fecha Fin Vacaciones" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Vacaciones permitidas" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Documento de declaración oficial para declarar nuevo empleado" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Vacaciones por usuario" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Definir Estado Vacaciones" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Confirmada" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "Desde" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Confirmar" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Mis peticiones de vacaciones esperando confirmación" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Id empleado" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Codificación de vacaciones disponibles anuales." +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Empleado" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -268,45 +271,46 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" -msgstr "Empleado obtiene vacaciones" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Salmón claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Color trigo" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Número de vacaciones solicitadas" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Mis peticiones de vacaciones" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Número de días" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Tipo de vacaciones" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Opciones del informe" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,146 +320,146 @@ msgstr "¡XML inválido para la definición de la vista!" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Su responsable aprueba la petición" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Si hay vacaciones disponibles, el empleado puede cogerla y rellenarla." +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Selecciona por lo menos un empleado. Prueba otra vez." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Mis peticiones de vacaciones validadas" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Empelados" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Número de días solicitados" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Vacaciones por empleado" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Permite superar el límite" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Usuario de vacaciones" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavanda" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Imprimir el resumen de vacaciones del empleado" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendario" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Dia comienzo vacaciones" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Notificación" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 msgid "Employee fills in a request for holidays" -msgstr "Empleado rellena una petición de vacaciones" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Las vacaciones son fijadas en el calendario." +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Coral claro" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Mis vacaciones disponibles" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Negro" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Mis peticiones de vacaciones rechazadas" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Fijar vacaciones" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Mis peticiones de vacaciones borrador" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Máximo de vacaciones permitidas" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Estado" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Marfil" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Mis peticiones de vacaciones" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Color del tipo" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,47 +487,47 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Ambas validadas y confirmadas" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Vacaciones realizadas" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "vacaciones." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "Borrador" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Usuario" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Documento para empleado" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 msgid "Date" -msgstr "Fecha" +msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Rechazar" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Sección" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,55 +538,49 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Responsable de vacaciones" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Activo" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Mis peticiones de vacaciones borrador" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "No puede cancelar esta petición de vacaciones. Debe convertir su caso en estado borrador." +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Petición aprobada" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "Historial" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Petición de vacaciones" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Peticiones esperando validación" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "General" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "General Information" -msgstr "Información general" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,23 +588,23 @@ msgstr "Información general" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 msgid "Holidays def Request" -msgstr "Petición define vacaciones" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Validada" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Mis peticiones de vacaciones rechazadas" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,75 +615,75 @@ msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún caráct #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Imprimir" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Imprimir el resumen de las vacaciones" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "Registro de vacaciones" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Departamentos" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Descripcion" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 #: model:process.node,name:hr_holidays.process_node_refused0 msgid "Refused" -msgstr "Rechazada" +msgstr "Rechazado" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "Petición es aprobada." +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Definición vacaciones" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Seleccionar un tipo de vacaciones" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Caso" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Codifica número de vacaciones disponibles" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Secretaría social" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Violeta" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Rojo" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -695,37 +693,37 @@ msgstr "" #. module: hr_holidays #: model:process.process,name:hr_holidays.process_process_holidaysprocess0 msgid "Holidays Process" -msgstr "Proceso de vacaciones" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "Debe seleccionar por lo menos 1 departamento. Inténtelo de nuevo." +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Mis peticiones de vacaciones validadas" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 msgid "Holiday Request ID" -msgstr "ID petición de vacaciones" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Amarillo claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Rosa claro" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "Su responsable rechaza la petición" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/et_EE.po b/addons/hr_holidays/i18n/et_EE.po index e76f7a601ca..d46bb57343e 100644 --- a/addons/hr_holidays/i18n/et_EE.po +++ b/addons/hr_holidays/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 @@ -43,7 +43,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Helesinine" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -62,9 +62,10 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Töötaja Puhkused" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -96,7 +99,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Heleroheline" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 @@ -108,12 +111,12 @@ msgstr "" #: selection:hr.holidays,state:0 #: model:process.transition.action,name:hr_holidays.process_transition_action_validate0 msgid "Validate" -msgstr "Kinnita" +msgstr "Valideeri" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Tagasilükatud palved" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,18 +126,18 @@ msgstr "Heakskiidetud" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Mõlemad" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Keeldu" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "OK" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday @@ -145,7 +148,7 @@ msgstr "" #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Märkmed" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 @@ -187,7 +190,7 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Puhkuste Staatus" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 @@ -197,7 +200,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Puhkused Lubatud" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 @@ -212,18 +215,18 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Puhkused Pasutaja Kohta" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Defineeri puhkuse Staatus" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Kinnitatud" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 @@ -246,7 +249,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Töötaja_id" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 @@ -258,7 +261,7 @@ msgstr "" #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Töötaja" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -273,7 +276,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Helekollane" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -292,15 +295,16 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Päevade Arv" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Puhkuse Staatus" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 @@ -321,12 +325,12 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Kui puhkused on saadaval, saab töötaja neid võtta ja täita." +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Pead valima vähemalt 1 Töötaja. Proovi uuesti." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate @@ -336,7 +340,7 @@ msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Töötaja(d)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 @@ -378,7 +382,7 @@ msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Kalender" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 @@ -410,12 +414,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Minu Saadaolevad Puhkused" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Must" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse @@ -425,7 +429,7 @@ msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Sea Puhkus" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft @@ -440,7 +444,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Staatus" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -455,7 +459,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Staatuse värv" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -493,22 +497,22 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "puhkused." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "mustand" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Kasutaja" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Dokument töötajale" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 @@ -540,7 +544,7 @@ msgstr "" #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Aktiivne" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -577,7 +575,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "Üldine" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 @@ -590,7 +588,7 @@ msgstr "" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Tühista" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 @@ -601,7 +599,7 @@ msgstr "" #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Kinnitatud" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse @@ -617,7 +615,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Trüki" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary @@ -625,11 +623,6 @@ msgstr "Trüki" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -660,13 +653,18 @@ msgstr "" #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Vali Puhkuse Tüüp" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" @@ -685,7 +683,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Punane" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -715,12 +713,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Helekollane" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Heleroosa" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 diff --git a/addons/hr_holidays/i18n/fr_FR.po b/addons/hr_holidays/i18n/fr_FR.po index e74273091c0..2b1f5195a2f 100644 --- a/addons/hr_holidays/i18n/fr_FR.po +++ b/addons/hr_holidays/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Nouvelle demande de vacance" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Toutes les Demandes de Vacances" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -33,75 +33,78 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Congés disponibles" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Demandes en attende de Validation" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Bleu clair" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Brun" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "du" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Résumé des Congés" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Vacances des employés" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "Warning !" -msgstr "Avertissement !" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Mettre au brouillon" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Vacances" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "à" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Cyan clair" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Vert clair" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Déclaration de l'employé" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -113,7 +116,7 @@ msgstr "Valider" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Demande refusée" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Approuvé" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Ensemble" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Refuser" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Mes Demandes de Vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Notes" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Type de congés" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "La demande est refusée" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestion des Congés" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Analyser de" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Résumé des Vacances" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Le congé est ajouté au calendrier" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Types de congés" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Statut des vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Fin du congé" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Vacances Permises" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Document officiel de déclaration d'entrée d'un employé" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Vacnaces par Utilisateur" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Définir les types de congés" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Confirmé" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "De" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Confirmer" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Mes Demandes de Vacances en attende de Confirmation" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Identifiant de l'employé" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Saisie du nombre de congé annuel disponibles" +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Employé" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -273,40 +276,41 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Saumon clair" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Blé" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Nombre de congés demandés" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Mes demandes de congés" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Nombre de jour" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Statut des Vacances" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Options du Rapport" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,80 +320,80 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Son responsable approuve la demande" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Si des congés sont disponibles, l'employé peut les prendre" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Vous devez sélectionner au moins 1 employé. Veuillez réessayez." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Mes Demandes de Vacances Validée" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Employés" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Nombre de Jours dans cette Demande de Congé" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Congés par Employé" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Authoriser le dépassement de la limite" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Congés utilisateur" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavande" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Imprimer un Résumé des Vacances de l'employé" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendrier" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Début du congé" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Notification" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 @@ -399,28 +403,28 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Les vacances sont affichées dans le calendrier" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Corail clair" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Mes Vacances Disponibles" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Noir" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Mes Demandes de Vacances Refusées" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 @@ -430,32 +434,32 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Mes Demandes de Vacances Brouillon" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Nombre Maximum de Congés Permis" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "État" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Ivoire" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Mes Demandes de Congés" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Couleur du Statut" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,47 +487,47 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Valider et confirmer en même temps" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Congés déjà pris" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "Vacances" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "brouillon" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Utilisateur" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Document pour l'employé" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 msgid "Date" -msgstr "Date" +msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Refusée" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Section" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,55 +538,49 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Gestionnaire de Vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Actif" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Mes Demandes de Vacances Brouillon" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "Vous ne pouvez pas annuler cette demande de congé. Vous devez au préalable la mettre en état brouillon." +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Demande approuvée" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "Historique" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Demandes de Vacances" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Demandes de Vacances en attente de Validation" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "Général" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "General Information" -msgstr "Information générale" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,7 +588,7 @@ msgstr "Information générale" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Annuler" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 @@ -601,12 +599,12 @@ msgstr "" #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Validé" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Mes Demandes de Vacances Refusée" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Imprimer" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Imprimer le résumé des Vacances" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "Historique des congés" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Département(s)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Description" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -649,43 +642,48 @@ msgstr "Refusée" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "La requête est approuvée" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Définition des congés" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Sélectionnez le Type de Vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Cas" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Encoder le nombre de congés disponibles" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Secrétariat Social" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Violet" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Rouge" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -700,32 +698,32 @@ msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "Vous devez au moins sélectionner 1 département. Essayez encore." +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Mes Demandes de Vacances Validée" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 msgid "Holiday Request ID" -msgstr "ID de la demande de congé" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Jaune clair" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Rose clair" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "Son responsable a refusé la demande" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/hr_HR.po b/addons/hr_holidays/i18n/hr_HR.po index 2c177331f83..fbec500fa2f 100644 --- a/addons/hr_holidays/i18n/hr_HR.po +++ b/addons/hr_holidays/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/hr_holidays.pot b/addons/hr_holidays/i18n/hr_holidays.pot index 0410f476ce4..af1cac3db46 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/hu_HU.po b/addons/hr_holidays/i18n/hu_HU.po index a0a29090650..ecbef15f2ba 100644 --- a/addons/hr_holidays/i18n/hu_HU.po +++ b/addons/hr_holidays/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/it_IT.po b/addons/hr_holidays/i18n/it_IT.po index 0da891a13f1..270243f1626 100644 --- a/addons/hr_holidays/i18n/it_IT.po +++ b/addons/hr_holidays/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Nuova richiesta di ferie" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Tutte le richieste di ferie" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -33,75 +33,78 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Pagine rimanenti" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Richieste in attesa di validazione" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Blu Chiaro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Marrone" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "del" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Riepilogo Off Days" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Ferie dipendente" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "Warning !" -msgstr "Attenzione !" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Impost come Bozza" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Ferie" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "a" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Azzurro Chiaro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Verde chiaro" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Dichiarazione del dipendente" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -113,7 +116,7 @@ msgstr "Convalida" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Richiesta rifiutata" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Approvato" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Entrambe" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Rifiuta" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Le Mie Richieste di Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Note" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Stato Ferie" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "La richiesta è rifiutata" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestione Ferie" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Analizza da" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Riepilogo Ferie" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Il periodo di ferie è impostato nel calendario" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Stato Ferie" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Stato Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Ultimo giorno di Ferie" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Ferie Approvate" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Documento di dichiarazione legale per dichiarare un nuovo dipendente" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Ferie per Utente" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Definisci Stato Ferie" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Confermato" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "Da" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Conferma" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Le Mie Richieste di Ferie in attesa di approvazione" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "ID Impiegato" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Elenco delle ferie annuali disponibili" +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Dipendente" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -268,45 +271,46 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" -msgstr "Il dipendente prende ferie" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Salmone Chiaro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Beige" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Quantità di ferie richieste" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Mie richieste di ferie" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Numero Giorni" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Stato Ferie" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Opzioni Report" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,146 +320,146 @@ msgstr "XML non valido per Visualizzazione Architettura!" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Il suo manager approva la richiesta" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Se le ferie sono disponibili, il dipendente può selezionarle e occuparle" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Devi selezionare almeno un dipendente. Prova di nuovo." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Le Mie Richieste di Ferie convalidate" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Dipendente/i" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Numero Giorni in questa Richiesta di Ferie" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Ferie per Impiegato" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Permettere di superare il limite" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Ferie utente" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavanda" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Stampa Riepilogo Ferie Dipendenti" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendario" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Primo giorno di Ferie" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Notifica" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 msgid "Employee fills in a request for holidays" -msgstr "Il dipendente riempe una richiesta per le ferie" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Le Ferie sono impostate nel calendario." +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Corallo" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Le Mie Ferie Disponibili" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Nero" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Le Mie Richieste di Ferie Rifiutate" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Imposta Ferie" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Le Mie Bozze di Richiesta Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Permessi Massimi Ammessi" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Stato" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Avorio" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "La Mia Richiesta Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Colore Stato" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,47 +487,47 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Entrambe validate e confermate" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Permessi già Presi" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "ferie." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "Bozza" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Utente" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Documento per il dipendente" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 msgid "Date" -msgstr "Data" +msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Rifiuta" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Sezione" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,55 +538,49 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Responsabile Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Attivo" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Mia Bozza di Richiesta Ferie" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 #, python-format msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "Non è possibile cancellare questa richiesta di ferie. Si deve impostare questo caso in stato di bozza." +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Richiesta approvata" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "Cronologia" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Richiesta ferie" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Richieste di Ferie in attesa di convalida" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "Generale" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "General Information" -msgstr "Informazioni generali" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,23 +588,23 @@ msgstr "Informazioni generali" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Annulla" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 msgid "Holidays def Request" -msgstr "Definizione di richiesta ferie" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Convalidato" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Le Mie Richieste di Ferie Rifiutate" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Stampa" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Stampa Riepilogo Ferie" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "Log ferie" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Dipartimento/i" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Descrizione" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -649,43 +642,48 @@ msgstr "Rifiutato" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "La richiesta è approvata" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Definizione Ferie" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Seleziona Tipo Ferie" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Caso" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Numero di ferie disponibili" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Segretariato sociale" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Viola" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Rosso" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -695,37 +693,37 @@ msgstr "" #. module: hr_holidays #: model:process.process,name:hr_holidays.process_process_holidaysprocess0 msgid "Holidays Process" -msgstr "Processo di ferie" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "E' necessario selezionare almeno 1 Reparto. Riprova" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Le Mie Richieste di Ferie Convalidate" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 msgid "Holiday Request ID" -msgstr "ID di richiesta ferie" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Giallo Chiaro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Rosa Chiaro" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "Il suo manager ha rifiutato la richiesta" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/lt_LT.po b/addons/hr_holidays/i18n/lt_LT.po index 2530e45e83d..82edcb42c3d 100644 --- a/addons/hr_holidays/i18n/lt_LT.po +++ b/addons/hr_holidays/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index 4d0d5fa0f30..81597e97177 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/nl_NL.po b/addons/hr_holidays/i18n/nl_NL.po index 3ffd52d188c..497b4011390 100644 --- a/addons/hr_holidays/i18n/nl_NL.po +++ b/addons/hr_holidays/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,10 +79,12 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Verlof" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -152,7 +155,7 @@ msgstr "" #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Verlofstatus" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 @@ -182,17 +185,17 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Verlofstatus" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Verlofstatus" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Verlof Einddatum" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 @@ -217,7 +220,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Definiëer Vakantiestatus" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 @@ -258,7 +261,7 @@ msgstr "" #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Medewerker" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -383,7 +387,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Verlof Startdatum" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -638,7 +631,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Omschrijving" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/pl_PL.po b/addons/hr_holidays/i18n/pl_PL.po index 21f79eae62f..e60f669e0e8 100644 --- a/addons/hr_holidays/i18n/pl_PL.po +++ b/addons/hr_holidays/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 22e83fdd4f1..32bfadb37e0 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/pt_PT.po b/addons/hr_holidays/i18n/pt_PT.po index 5d7e3dbeb29..aa0035bc928 100644 --- a/addons/hr_holidays/i18n/pt_PT.po +++ b/addons/hr_holidays/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Novo pedido de ferias" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Todos os pedidos de férias" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -38,33 +38,34 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Pedidos aguardando validação" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Azul claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Castanho" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "dos" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Off-Days' Summary" -msgstr "Resumo dos dias de folga" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Ferias dos empregados" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -75,33 +76,35 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Definir como esboço" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Férias" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "para" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Ciano claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Verde claro" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Declaração do empregado" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -113,7 +116,7 @@ msgstr "Validar" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Pedido recusado" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -123,113 +126,113 @@ msgstr "Aprovado" #. module: hr_holidays #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Both" -msgstr "Ambos" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Recusar" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Meus pedidos de férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Notas" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Estado das férias" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "O pedido foi recusado." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestão de ferias" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Analisar de" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Resumo das férias" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "A feria é definido no calendário" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Estado das férias" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Estado das férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Data de término das férias" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Férias permitidas" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Documento de declaração legal para declarar o novo empregado" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Magenta" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Férias por utilizador" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Definir estado das férias" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Confirmado" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "De" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,24 +244,24 @@ msgstr "Confirmar" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Meus pedidos de férias aguardando confirmação" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Employee_id" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Codificação de feriados anuais disponíveis." +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Empregado" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -268,17 +271,17 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" -msgstr "O empregado obtém ferias" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "Salmão claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Trigo" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 @@ -292,21 +295,22 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Numero de dias" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Estado das férias" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Opções de relatório" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -316,44 +320,44 @@ msgstr "XML inválido para a arquitectura de vista" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Seu gerente aprova o pedido" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Se feriados disponíveis, o empregado pode toma-lo e preenche-lo." +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Você deve escolher pelo menos 1 empregado. Tente novamente." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Meus pedidos de férias validados" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Empregado(s)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Número de dias neste pedido de férias" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Férias por empregado" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Permitir que passe o limite" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 @@ -363,7 +367,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Lavanda" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log @@ -373,89 +377,89 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Imprimir o resumo das férias do empregado" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendário" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Data de início das férias" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Notificação" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 msgid "Employee fills in a request for holidays" -msgstr "O empregado preenche um pedido para feria" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Feria foi definido no calendário" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Coral claro" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Minhas férias disponíveis" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Preto" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Meus pedidos de férias recusados" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 msgid "Set Holiday" -msgstr "Definir feria" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Meus esboços de pedidos de férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 msgid "Maximum Leaves Allowed" -msgstr "Máximo de saídas permitidas" +msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Status" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Marfim" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Meus pedidos de férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Cor do estado" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -483,32 +487,32 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 msgid "Both Validated and Confirmed" -msgstr "Ambos validados e confirmados" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Saídas tomadas" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "holidays." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "esboço" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Utilizador" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 msgid "Document for employee" -msgstr "Documento para o empregado" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,date:0 @@ -518,12 +522,12 @@ msgstr "" #. module: hr_holidays #: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 msgid "Reufse" -msgstr "Recusar" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Secção" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -534,18 +538,18 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "Holiday manager" -msgstr "Gestor de férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,active:0 #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "Activo" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Meu esboço de pedido de férias" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -556,28 +560,22 @@ msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 msgid "Approved Request" -msgstr "Pedido aprovado" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Pedido de férias" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Pedidos de férias aguardando validação" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "General" -msgstr "Geral" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 @@ -590,7 +588,7 @@ msgstr "" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 @@ -601,12 +599,12 @@ msgstr "" #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Validated" -msgstr "Validado" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Meus pedidos de férias recusados" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter e #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Imprimir" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Imprimir resumo das Férias" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Departamento(s)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Descrição" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -649,43 +642,48 @@ msgstr "Recusado" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 msgid "Request is approved." -msgstr "Pedido aprovado" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 msgid "Holidays Definition" -msgstr "Definições de ferias" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Selecione o tipo de férias" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" -msgstr "Processo" +msgstr "" + +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" -msgstr "Codificar o numero de ferias disponíveis" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_legaldeclaration0 msgid "Secretariat Social" -msgstr "Secretariado social" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Violeta" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Vermelho" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -700,12 +698,12 @@ msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 msgid "You have to select at least 1 Department. Try again." -msgstr "Você tem que seleccionar pelo menos 1 departamento. Tenteoutra vez." +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Meu pedido de férias validado" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 @@ -715,17 +713,17 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Amarelo claro" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Rosa claro" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 msgid "His manager refuses the request" -msgstr "Seu gerente recusa o pedido" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 diff --git a/addons/hr_holidays/i18n/ro_RO.po b/addons/hr_holidays/i18n/ro_RO.po index 3227c7da455..a70cbdcfee9 100644 --- a/addons/hr_holidays/i18n/ro_RO.po +++ b/addons/hr_holidays/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/ru_RU.po b/addons/hr_holidays/i18n/ru_RU.po index 70ad0274da5..d616ada417c 100644 --- a/addons/hr_holidays/i18n/ru_RU.po +++ b/addons/hr_holidays/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Все заявления на отпуск" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 @@ -38,22 +38,22 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Заявления, ожидающие проверки" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Светло-синий" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Коричневый" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "из" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -75,28 +76,30 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" -msgstr "Установить в 'Черновик'" +msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Отпуска" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "до" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "Светло-голубой" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Светло-зеленый" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 @@ -128,31 +131,31 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Отклонить" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "ОК" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Мои заявления на отпуск" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Примечания" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Стаус отпусков" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 @@ -167,12 +170,12 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "Анализировать с" +msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Сводка отпусков" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 @@ -182,22 +185,22 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Holiday status" -msgstr "Статус отпуска" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Статус отпусков" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Последний день отпуска" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 msgid "Holidays Allowed" -msgstr "Разрешено отпусков" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 @@ -207,29 +210,29 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Пурпурный" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Отпусклв на пользователя" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Define holiday status" -msgstr "Установить статус отпуска" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Подтверждено" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "От" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -241,12 +244,12 @@ msgstr "Подтвердить" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Мои заявления на отпуск в ожидании подтверждения" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "ID сотрудника" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 @@ -258,7 +261,7 @@ msgstr "" #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Сотрудник" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -278,7 +281,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Пшеничный" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 @@ -292,21 +295,22 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Кол-во дней" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Статус отпуска" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Параметры отчета" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -326,29 +330,29 @@ msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "You have to select at least 1 Employee. Try again." -msgstr "Выберите хотя бы 1 сотрудника. Повторите попытку." +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Мои проверенные заявления на отпуск" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Сотрудник(и)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Количество дней в данном заявлении на отпуск" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Отпусков на сотрудника" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 @@ -363,7 +367,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Бледно-лиловый" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log @@ -373,7 +377,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Распечатать сводку отпусков сотрудников" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 @@ -383,13 +387,13 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Первый день отпуска" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Уведомление" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 @@ -404,23 +408,23 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Coral" -msgstr "Светло-коралловый" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Мои доступные отпуска" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Чёрный" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse msgid "My Refused Holidays Requests" -msgstr "Мои отклоненные заявления на отпуск" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_setholiday0 @@ -430,7 +434,7 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft msgid "My Draft Holidays Requests" -msgstr "Мои черновые заявлния на отпуск" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,max_leaves:0 @@ -440,22 +444,22 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Статус" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Слоновой кости" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday msgid "My Holidays Request" -msgstr "Мои заявления на отпустк" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Цвет статуса" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -493,17 +497,17 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "holidays." -msgstr "отпусков." +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "draft" -msgstr "черновик" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Пользователь" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 @@ -523,7 +527,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.status,section_id:0 msgid "Section" -msgstr "Раздел" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -545,7 +549,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft msgid "My Holidays Request Draft" -msgstr "Мой черновик заявления на отпуск" +msgstr "" #. module: hr_holidays #: code:addons/hr_holidays/hr.py:0 @@ -558,21 +562,15 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" -msgstr "Заявление на отпуск" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting msgid "Holidays Requests Awaiting for Validation" -msgstr "Заявления на отпуск в ожидании проверки" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -590,7 +588,7 @@ msgstr "" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Отменить" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 @@ -606,7 +604,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse msgid "My Holidays Request Refused" -msgstr "Мои отклоненные заявления на отпуск" +msgstr "" #. module: hr_holidays #: constraint:ir.model:0 @@ -617,28 +615,23 @@ msgstr "Название объекта должно начинаться с x_ #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Распечатать" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary msgid "Print Summary of Holidays" -msgstr "Распечатать сводку отпустков" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" -msgstr "Отдел(ы)" +msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Описание" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -660,13 +653,18 @@ msgstr "" #: wizard_field:hr.holidays.summary,init,holiday_type:0 #: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 msgid "Select Holiday Type" -msgstr "Выбор типа отпуска" +msgstr "" #. module: hr_holidays #: field:hr.holidays,case_id:0 msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" @@ -680,12 +678,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Фиолетовый" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Красный" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -705,7 +703,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate msgid "My Holidays Request Validated" -msgstr "Мои проверенные заявления на отпуск" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_req_id:0 @@ -715,12 +713,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Светло-желтый" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Светло-розовый" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 diff --git a/addons/hr_holidays/i18n/sl_SL.po b/addons/hr_holidays/i18n/sl_SL.po index c43ba68a727..cc6dca159b8 100644 --- a/addons/hr_holidays/i18n/sl_SL.po +++ b/addons/hr_holidays/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,12 +43,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" -msgstr "Svetlo modra" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "Rjava" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,10 +79,12 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Prazniki" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -96,7 +99,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "Svetlo zelena" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 @@ -128,13 +131,13 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Zavrni" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "V redu" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday @@ -145,7 +148,7 @@ msgstr "" #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Opombe" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 @@ -207,7 +210,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "Škrlatna" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user @@ -223,7 +226,7 @@ msgstr "" #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" -msgstr "Potrjeno" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,date_from:0 @@ -258,7 +261,7 @@ msgstr "" #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Zaposleni" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -278,7 +281,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Wheat" -msgstr "Pšenična" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 @@ -292,8 +295,9 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" -msgstr "Število dni" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,name:0 @@ -306,7 +310,7 @@ msgstr "" #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Možnosti poročila" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -363,7 +367,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Lavender" -msgstr "Sivka" +msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log @@ -389,7 +393,7 @@ msgstr "" #: wizard_view:hr.holidays.summary,notify:0 #: wizard_view:hr.holidays.summary.employee,notify:0 msgid "Notification" -msgstr "Obvestilo" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysrequest0 @@ -415,7 +419,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "Črna" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse @@ -440,12 +444,12 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,state:0 msgid "Status" -msgstr "Stanje" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Ivory" -msgstr "Slonokoščena" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday @@ -455,7 +459,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color of the status" -msgstr "Barva stanja" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -503,7 +507,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,user_id:0 msgid "User" -msgstr "Uporabnik" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -590,7 +588,7 @@ msgstr "" #: wizard_button:hr.holidays.summary,init,end:0 #: wizard_button:hr.holidays.summary.employee,init,end:0 msgid "Cancel" -msgstr "Prekliči" +msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 @@ -617,7 +615,7 @@ msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov #: wizard_button:hr.holidays.summary,init,checkdept:0 #: wizard_button:hr.holidays.summary.employee,init,checkemp:0 msgid "Print" -msgstr "Natisni" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.holidays_summary @@ -625,11 +623,6 @@ msgstr "Natisni" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -638,7 +631,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Opis" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" @@ -680,12 +678,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "Vijolična" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "Rdeča" +msgstr "" #. module: hr_holidays #: model:ir.module.module,shortdesc:hr_holidays.module_meta_information @@ -715,12 +713,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "Svetlo rumena" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "Svetlo rožnata" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_refused0 diff --git a/addons/hr_holidays/i18n/sv_SE.po b/addons/hr_holidays/i18n/sv_SE.po index 1547a580cae..6384f8442a7 100644 --- a/addons/hr_holidays/i18n/sv_SE.po +++ b/addons/hr_holidays/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/sv_SV.po b/addons/hr_holidays/i18n/sv_SV.po index 54205a9ce8c..a0b348b77ef 100644 --- a/addons/hr_holidays/i18n/sv_SV.po +++ b/addons/hr_holidays/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "All Holidays Requests" msgstr "" +#. module: hr_holidays +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" @@ -57,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -73,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -215,7 +223,6 @@ msgid "Define holiday status" msgstr "" #. module: hr_holidays -#: selection:hr.holidays,state:0 #: selection:hr.holidays.summary,init,holiday_type:0 #: selection:hr.holidays.summary.employee,init,holiday_type:0 msgid "Confirmed" @@ -234,6 +241,7 @@ msgid "Confirm" msgstr "" #. module: hr_holidays +#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" msgstr "" @@ -255,6 +263,11 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_holidays +#: selection:hr.holidays,state:0 +msgid "Waiting Validation" +msgstr "" + #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 msgid "Employee get holidays" @@ -282,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -516,8 +530,9 @@ msgid "Section" msgstr "" #. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting -msgid "My Holidays Request Waiting confirmation" +#: code:addons/hr_holidays/hr.py:0 +#, python-format +msgid "Attention!" msgstr "" #. module: hr_holidays @@ -547,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -614,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -656,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" @@ -716,3 +725,9 @@ msgstr "" msgid "His manager refuses the request" msgstr "" +#. module: hr_holidays +#: code:addons/hr_holidays/hr.py:0 +#, python-format +msgid "You Cannot Validate leaves while available leaves are less than asked leaves." +msgstr "" + diff --git a/addons/hr_holidays/i18n/th_TH.po b/addons/hr_holidays/i18n/th_TH.po index 964f6291bf8..4a641dc120c 100644 --- a/addons/hr_holidays/i18n/th_TH.po +++ b/addons/hr_holidays/i18n/th_TH.po @@ -7,688 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2009-01-30 15:25+0000\n" +"POT-Creation-Date: 2009-04-10 12:59+0000\n" +"PO-Revision-Date: 2009-04-20 08:45+0000\n" "Last-Translator: Thiti Sriyai \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:30+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new -msgid "New Holidays Request" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday -msgid "All Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,remaining_leaves:0 -msgid "Remaining Leaves" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting -msgid "Requests Awaiting for Validation" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Blue" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Brown" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "of the" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "Off-Days' Summary" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 -msgid "Employee Holidays" -msgstr "" - -#. module: hr_holidays -#: code:addons/hr_holidays/hr.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Set to Draft" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidays0 -msgid "Holidays" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "to" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Cyan" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Green" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 -msgid "Employee Declaration" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: selection:hr.holidays,state:0 -#: model:process.transition.action,name:hr_holidays.process_transition_action_validate0 -msgid "Validate" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 -msgid "Refused Request" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_approved0 -msgid "Approved" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Both" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Refuse" -msgstr "" - -#. module: hr_holidays -#: wizard_button:hr.holidays.summary,notify,end:0 -#: wizard_button:hr.holidays.summary.employee,notify,end:0 -msgid "Ok" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday -msgid "My Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,notes:0 -#: field:hr.holidays.per.user,notes:0 -msgid "Notes" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,holiday_status:0 -#: field:hr.holidays.log,holiday_status:0 -#: field:hr.holidays.per.user,holiday_status:0 -msgid "Holiday's Status" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 -msgid "Request is refused." -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays -msgid "Holidays Management" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "Analyze from" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary -msgid "Summary Of Holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_calendar0 -msgid "The holiday is set in the calendar" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.status:0 -msgid "Holiday status" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_status -msgid "Holidays Status" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,date_to:0 -msgid "Vacation end day" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -msgid "Holidays Allowed" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_legaldeclaration0 -msgid "Legal Declaration Document to declare new employee" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Magenta" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_per_user -msgid "Holidays Per User" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.status:0 -msgid "Define holiday status" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -#: selection:hr.holidays.summary,init,holiday_type:0 -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Confirmed" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,date_from:0 -#: wizard_field:hr.holidays.summary.employee,init,date_from:0 -msgid "From" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: model:process.transition.action,name:hr_holidays.process_transition_action_confirm0 -msgid "Confirm" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting -msgid "My Awaiting Confirmation Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,user_id:0 -msgid "Employee_id" -msgstr "รหัสพนักงาน" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 -msgid "Encoding of annual available holidays." -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,employee_id:0 -#: field:hr.holidays.log,employee_id:0 -#: field:hr.holidays.per.user,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 -msgid "Employee get holidays" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Salmon" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Wheat" -msgstr "สีเหลืองอ่อน" - -#. module: hr_holidays -#: field:hr.holidays.log,nb_holidays:0 -msgid "Number of Holidays Requested" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request -msgid "My Holiday Requests" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Number of Days" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,name:0 -#: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status -#: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status -msgid "Holiday Status" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,init:0 -#: wizard_view:hr.holidays.summary.employee,init:0 -msgid "Report Options" -msgstr "" - -#. module: hr_holidays -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_approved0 -msgid "His manager approves the request" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 -msgid "If holidays available, employee can take it and fill it." -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary.employee,notify:0 -msgid "You have to select at least 1 Employee. Try again." -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate -msgid "My Validated Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary.employee,init,emp:0 -msgid "Employee(s)" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,number_of_days:0 -msgid "Number of Days in this Holiday Request" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user -#: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user -msgid "Holidays Per Employee" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,limit:0 -msgid "Allow to override Limit" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,holiday_user_id:0 -msgid "Holidays user" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Lavender" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_log -msgid "hr.holidays.log" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary -msgid "Print Summary of Employee's Holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_calendar0 -msgid "Calendar" -msgstr "ปฏิทิน" - -#. module: hr_holidays -#: field:hr.holidays,date_from:0 -msgid "Vacation start day" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,notify:0 -#: wizard_view:hr.holidays.summary.employee,notify:0 -msgid "Notification" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidaysrequest0 -msgid "Employee fills in a request for holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_setholiday0 -msgid "Holiday is set in the calendar." -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Coral" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available -msgid "My Available Holidays" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Black" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse -msgid "My Refused Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_setholiday0 -msgid "Set Holiday" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft -msgid "My Draft Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,max_leaves:0 -msgid "Maximum Leaves Allowed" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,state:0 -msgid "Status" -msgstr "สถานะ" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Ivory" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday -msgid "My Holidays Request" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,color_name:0 -msgid "Color of the status" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary,init,holiday_type:0 -msgid "Both Validated and Confirmed" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,leaves_taken:0 -msgid "Leaves Already Taken" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "holidays." -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -msgid "draft" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,user_id:0 -msgid "User" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 -msgid "Document for employee" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,date:0 -msgid "Date" -msgstr "" - -#. module: hr_holidays -#: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 -msgid "Reufse" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,section_id:0 -msgid "Section" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting -msgid "My Holidays Request Waiting confirmation" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,manager_id:0 -msgid "Holiday manager" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,active:0 -#: field:hr.holidays.status,active:0 -msgid "Active" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft -msgid "My Holidays Request Draft" -msgstr "" - -#. module: hr_holidays -#: code:addons/hr_holidays/hr.py:0 -#, python-format -msgid "" -"You can not cancel this holiday request. first You have to make its case in " -"draft state." -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 -msgid "Approved Request" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidaysrequest0 -msgid "Holidays Request" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting -msgid "Holidays Requests Awaiting for Validation" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "General" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -msgid "General Information" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: selection:hr.holidays,state:0 -#: wizard_button:hr.holidays.summary,init,end:0 -#: wizard_button:hr.holidays.summary.employee,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 -msgid "Holidays def Request" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary,init,holiday_type:0 -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Validated" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse -msgid "My Holidays Request Refused" -msgstr "" - -#. module: hr_holidays -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_holidays -#: wizard_button:hr.holidays.summary,init,checkdept:0 -#: wizard_button:hr.holidays.summary.employee,init,checkemp:0 -msgid "Print" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.wizard,name:hr_holidays.holidays_summary -#: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary -msgid "Print Summary of Holidays" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,depts:0 -msgid "Department(s)" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,name:0 -msgid "Description" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -#: model:process.node,name:hr_holidays.process_node_refused0 -msgid "Refused" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 -msgid "Request is approved." -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 -msgid "Holidays Definition" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,holiday_type:0 -#: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Select Holiday Type" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,case_id:0 -msgid "Case" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidays0 -msgid "Encode number of available holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_legaldeclaration0 -msgid "Secretariat Social" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Violet" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Red" -msgstr "" - -#. module: hr_holidays -#: model:process.process,name:hr_holidays.process_process_holidaysprocess0 -msgid "Holidays Process" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,notify:0 -msgid "You have to select at least 1 Department. Try again." -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate -msgid "My Holidays Request Validated" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,holiday_req_id:0 -msgid "Holiday Request ID" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Yellow" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Pink" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_refused0 -msgid "His manager refuses the request" -msgstr "" diff --git a/addons/hr_holidays/i18n/tr_TR.po b/addons/hr_holidays/i18n/tr_TR.po index 0c1684d4d23..c370913cb24 100644 --- a/addons/hr_holidays/i18n/tr_TR.po +++ b/addons/hr_holidays/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/uk_UK.po b/addons/hr_holidays/i18n/uk_UK.po index 31750e3c7e2..349bf90c609 100644 --- a/addons/hr_holidays/i18n/uk_UK.po +++ b/addons/hr_holidays/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 29f28540ce0..a5c63a64df3 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index ec4934387e9..3ad33d57bb6 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,6 +62,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" msgstr "" @@ -78,6 +79,8 @@ msgid "Set to Draft" msgstr "" #. module: hr_holidays +#: view:hr.holidays.per.user:0 +#: field:hr.holidays.per.user,holiday_ids:0 #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" @@ -292,6 +295,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 +#: view:hr.holidays.per.user:0 msgid "Number of Days" msgstr "" @@ -558,12 +562,6 @@ msgstr "" msgid "Approved Request" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_holidaysrequest0 msgid "Holidays Request" @@ -625,11 +623,6 @@ msgstr "" msgid "Print Summary of Holidays" msgstr "" -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - #. module: hr_holidays #: wizard_field:hr.holidays.summary,init,depts:0 msgid "Department(s)" @@ -667,6 +660,11 @@ msgstr "" msgid "Case" msgstr "" +#. module: hr_holidays +#: field:hr.holidays,holiday_user_id:0 +msgid "Holiday per user" +msgstr "" + #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidays0 msgid "Encode number of available holidays" diff --git a/addons/hr_timesheet/i18n/ar_AR.po b/addons/hr_timesheet/i18n/ar_AR.po index 4dff13a1227..581e5b96d93 100644 --- a/addons/hr_timesheet/i18n/ar_AR.po +++ b/addons/hr_timesheet/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/bg_BG.po b/addons/hr_timesheet/i18n/bg_BG.po index 7aa0a757898..2ca54de9cda 100644 --- a/addons/hr_timesheet/i18n/bg_BG.po +++ b/addons/hr_timesheet/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/bs_BS.po b/addons/hr_timesheet/i18n/bs_BS.po index 5169a864f97..46afd772d8a 100644 --- a/addons/hr_timesheet/i18n/bs_BS.po +++ b/addons/hr_timesheet/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/ca_ES.po b/addons/hr_timesheet/i18n/ca_ES.po index 240266ee8bb..be86ed2f66b 100644 --- a/addons/hr_timesheet/i18n/ca_ES.po +++ b/addons/hr_timesheet/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Estadístiques treball realitzat" msgid "Timesheet" msgstr "Full d'assistència" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Dia" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Línies de la full d'assistència" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Juliol" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Selecciona usuaris" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Març" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Les meves hores de treball del dia" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "Setembre" @@ -304,16 +278,12 @@ msgstr "Setembre" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Desembre" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Desembre" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Estat del registre d'entrada" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Agost" @@ -393,6 +359,9 @@ msgstr "Agost" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Juny" @@ -410,15 +379,11 @@ msgid "User" msgstr "Usuari" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "Novembre" @@ -431,6 +396,9 @@ msgstr "Data límit" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Octubre" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Gener" @@ -541,16 +512,12 @@ msgstr "Hores de treball del dia" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Maig" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Maig" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Hores de treball" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Febrer" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Dj" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "Abril" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Total" msgid "Change Work" msgstr "Canvia treball" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/cs_CS.po b/addons/hr_timesheet/i18n/cs_CS.po index a27848580dd..a4db1d99e9b 100644 --- a/addons/hr_timesheet/i18n/cs_CS.po +++ b/addons/hr_timesheet/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,6 +33,11 @@ msgstr "" msgid "No employee defined for your user !" msgstr "" +#. module: hr_timesheet +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_timesheet #: field:hr.employee,journal_id:0 msgid "Analytic Journal" @@ -43,6 +48,12 @@ msgstr "" msgid "Stop Working" msgstr "Ukončit práci" +#. module: hr_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet +msgid "Employee Timesheet" +msgstr "" + #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Work done stats" @@ -68,9 +79,9 @@ msgid "Sign in" msgstr "Přihlásit" #. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form -msgid "Working Hours of The Day" +#: code:addons/hr_timesheet/hr_timesheet.py:0 +#, python-format +msgid "UnknownError" msgstr "" #. module: hr_timesheet @@ -93,6 +104,11 @@ msgstr "" msgid "Sign in / Sign out" msgstr "Přihlásit / Odhlásit" +#. module: hr_timesheet +#: wizard_view:hr_timesheet.si_so,sign_in:0 +msgid "Work done in the last period" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,state:0 #: wizard_field:hr_timesheet.si_so,sign_out,state:0 @@ -186,11 +202,6 @@ msgstr "" msgid "Hour" msgstr "" -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "General Information" -msgstr "Obecné informace" - #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Timesheet Lines" @@ -255,8 +266,13 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "Work done in the last period" +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 +#, python-format +msgid "September" msgstr "" #. module: hr_timesheet @@ -294,8 +310,6 @@ msgstr "" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet msgid "Employee timesheet" msgstr "" @@ -352,6 +366,12 @@ msgstr "" msgid "June" msgstr "" +#. module: hr_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_my +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_my +msgid "Print My Timesheet" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr.analytical.timesheet,init,user_id:0 #: wizard_field:hr.analytical.timesheet.my,init,user_id:0 @@ -416,27 +436,9 @@ msgid "Employee's name" msgstr "Jméno zaměstnance" #. module: hr_timesheet -#: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_users -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_users -msgid "Employees timesheet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "September" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_my -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_my -msgid "Print my timesheet" -msgstr "" +#: wizard_view:hr_timesheet.si_so,sign_in:0 +msgid "General Information" +msgstr "Obecné informace" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -453,8 +455,10 @@ msgid "Cancel" msgstr "Storno" #. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Timesheet Line" +#: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_users +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_users +msgid "Employees Timesheet" msgstr "" #. module: hr_timesheet @@ -478,6 +482,11 @@ msgstr "" msgid "Current Date" msgstr "Současné datum" +#. module: hr_timesheet +#: view:hr.analytic.timesheet:0 +msgid "Timesheet Line" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,server_date:0 msgid "Current Server Date" @@ -494,6 +503,12 @@ msgstr "" msgid "Users" msgstr "Uživatelé" +#. module: hr_timesheet +#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form +#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form +msgid "Working Hours of The Day" +msgstr "" + #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 diff --git a/addons/hr_timesheet/i18n/cs_CZ.po b/addons/hr_timesheet/i18n/cs_CZ.po index 4dfca0fa58b..71b067ae499 100644 --- a/addons/hr_timesheet/i18n/cs_CZ.po +++ b/addons/hr_timesheet/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Uživatelé" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "Uživatel" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "Koncové datum" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/de_DE.po b/addons/hr_timesheet/i18n/de_DE.po index 450b6a5d292..24eee43a419 100644 --- a/addons/hr_timesheet/i18n/de_DE.po +++ b/addons/hr_timesheet/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Arbeitszeit Statistik" msgid "Timesheet" msgstr "Zeiterfassung" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Tag" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Zeiterfassung Positionen" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "July" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Wähle Benutzer" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "März" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Meine heutigen Arbeitsstunden" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "September" @@ -304,16 +278,12 @@ msgstr "September" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Dezember" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Dezember" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Status Sign In / Sign Out" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "August" @@ -393,6 +359,9 @@ msgstr "August" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Juni" @@ -410,15 +379,11 @@ msgid "User" msgstr "Benutzer" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "November" @@ -431,6 +396,9 @@ msgstr "Ende Datum:" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Oktober" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Januar" @@ -541,16 +512,12 @@ msgstr "Alle heutigen Arbeitsstunden" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Mai" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Mai" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Alle Arbeitsstunden" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Februar" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Do" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "April" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Betrag gesammt" msgid "Change Work" msgstr "Wechsle Arbeitsplatz" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index 85429bcf766..a5f7a2c9f19 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "Línea Analítica" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/es_ES.po b/addons/hr_timesheet/i18n/es_ES.po index 91c9ec4bf45..5e55ad11050 100644 --- a/addons/hr_timesheet/i18n/es_ES.po +++ b/addons/hr_timesheet/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Estadísticas trabajo realizado" msgid "Timesheet" msgstr "Hoja de asistencia" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Día" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Líneas de la hoja de asistencia" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Julio" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Seleccionar usuarios" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Marzo" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Mis horas de trabajo del día" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "Septiembre" @@ -304,16 +278,12 @@ msgstr "Septiembre" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Diciembre" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Diciembre" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Estado del registro de entrada" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Agosto" @@ -393,6 +359,9 @@ msgstr "Agosto" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Junio" @@ -410,15 +379,11 @@ msgid "User" msgstr "Usuario" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "Noviembre" @@ -431,6 +396,9 @@ msgstr "Fecha límite" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Octubre" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Enero" @@ -541,16 +512,12 @@ msgstr "Horas de trabajo del día" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Mayo" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Mayo" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Horas de trabajo" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Febrero" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Jue" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "Abril" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Total" msgid "Change Work" msgstr "Cambiar trabajo" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/et_EE.po b/addons/hr_timesheet/i18n/et_EE.po index 9a60d2c3910..fa1f01c40d8 100644 --- a/addons/hr_timesheet/i18n/et_EE.po +++ b/addons/hr_timesheet/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" #. module: hr_timesheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_timesheet #: field:hr.employee,journal_id:0 @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "Ajagraafik" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Päev" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -250,7 +232,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: hr_timesheet #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: hr_timesheet #: wizard_view:hr.analytical.timesheet_users,init:0 @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -467,7 +438,7 @@ msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_in:0 msgid "General Information" -msgstr "Üldine Informatsioon" +msgstr "Üldine info" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -612,7 +571,7 @@ msgstr "" #. module: hr_timesheet #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/fr_FR.po b/addons/hr_timesheet/i18n/fr_FR.po index bc6923c7bc2..b8e3072bf3b 100644 --- a/addons/hr_timesheet/i18n/fr_FR.po +++ b/addons/hr_timesheet/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Statistiques tâches terminées" msgid "Timesheet" msgstr "Feuille de présence" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Jour" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Lignes des feuilles de présence" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Juillet" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Choisir les utilisateurs" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Mars" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Mes heures travaillés du jours" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "Septembre" @@ -304,16 +278,12 @@ msgstr "Septembre" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Décembre" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Décembre" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Statut" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Août" @@ -393,6 +359,9 @@ msgstr "Août" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Juin" @@ -410,15 +379,11 @@ msgid "User" msgstr "Utilisateur" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "Novembre" @@ -431,6 +396,9 @@ msgstr "Date de clôture" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Octobre" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Janvier" @@ -541,16 +512,12 @@ msgstr "Heures de Travail du Jour" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Mai" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Mai" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Heures de travail" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Février" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Jeu" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "Avril" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Total" msgid "Change Work" msgstr "Changer de travail" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/hr_HR.po b/addons/hr_timesheet/i18n/hr_HR.po index 45fd017dbea..2ae2d4295e1 100644 --- a/addons/hr_timesheet/i18n/hr_HR.po +++ b/addons/hr_timesheet/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/hr_timesheet.pot b/addons/hr_timesheet/i18n/hr_timesheet.pot index 86cbbb9b5d5..3f98a7f1b21 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/hu_HU.po b/addons/hr_timesheet/i18n/hu_HU.po index a2fb1f220f5..99aff4f16a6 100644 --- a/addons/hr_timesheet/i18n/hu_HU.po +++ b/addons/hr_timesheet/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/it_IT.po b/addons/hr_timesheet/i18n/it_IT.po index 1bebc2bf390..a78bb917860 100644 --- a/addons/hr_timesheet/i18n/it_IT.po +++ b/addons/hr_timesheet/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Statistiche Lavoro Svolto" msgid "Timesheet" msgstr "Orario di Lavoro" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Giorno" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Righe Orari di Lavoro" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Luglio" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Definisci Utente" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Marzo" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Le Mie Ore di Lavoro del Giorno" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "Settembre" @@ -304,16 +278,12 @@ msgstr "Settembre" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Dicembre" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Dicembre" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Stato Entrata" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Agosto" @@ -393,6 +359,9 @@ msgstr "Agosto" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Giugno" @@ -410,15 +379,11 @@ msgid "User" msgstr "Utente" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "Novembre" @@ -431,6 +396,9 @@ msgstr "Data di fine" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Ottobre" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Gennaio" @@ -541,16 +512,12 @@ msgstr "Ore Lavorative del Giorno" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Maggio" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Maggio" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Ore lavorative" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Febbraio" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Gio" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "Aprile" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Totale" msgid "Change Work" msgstr "Cambia Lavoro" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/lt_LT.po b/addons/hr_timesheet/i18n/lt_LT.po index 2fb1719322b..0080ee15df5 100644 --- a/addons/hr_timesheet/i18n/lt_LT.po +++ b/addons/hr_timesheet/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/nl_BE.po b/addons/hr_timesheet/i18n/nl_BE.po index e22fa53a53f..d83f0e286dd 100644 --- a/addons/hr_timesheet/i18n/nl_BE.po +++ b/addons/hr_timesheet/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/nl_NL.po b/addons/hr_timesheet/i18n/nl_NL.po index 4a5dd8410f7..9df0da5ced8 100644 --- a/addons/hr_timesheet/i18n/nl_NL.po +++ b/addons/hr_timesheet/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Statistiek gedane arbeid" msgid "Timesheet" msgstr "Uurrooster" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "Dag" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Uurrooster lijnen" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Juli" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Kies gebruikers" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Maart" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Mijn werkuren van de dag" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "September" @@ -304,16 +278,12 @@ msgstr "September" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "December" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "December" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Klok in status" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Augustus" @@ -393,6 +359,9 @@ msgstr "Augustus" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Juni" @@ -410,15 +379,11 @@ msgid "User" msgstr "Gebruiker" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "November" @@ -431,6 +396,9 @@ msgstr "Afsluitdatum" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Oktober" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Januari" @@ -541,16 +512,12 @@ msgstr "Werkuren van de dag" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Mei" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Mei" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Werkuren" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Februari" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Do" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "April" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Totaal" msgid "Change Work" msgstr "Verander taak" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/pl_PL.po b/addons/hr_timesheet/i18n/pl_PL.po index 088a4c8b225..bac56dbc410 100644 --- a/addons/hr_timesheet/i18n/pl_PL.po +++ b/addons/hr_timesheet/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index 266f95048fb..70d3015d05c 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/pt_PT.po b/addons/hr_timesheet/i18n/pt_PT.po index 08e8e8fcaa9..c9115ebfe3f 100644 --- a/addons/hr_timesheet/i18n/pt_PT.po +++ b/addons/hr_timesheet/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "estatisticas do trabalho feito" msgid "Timesheet" msgstr "Horário" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Linhas de horário" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "Julho" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Escolher utilizadores" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "Março" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Minhas horas de trabalho do dia" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "Setembro" @@ -304,16 +278,12 @@ msgstr "Setembro" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "Dezembro" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" -msgstr "" +#, python-format +msgid "December" +msgstr "Dezembro" #. module: hr_timesheet #: view:account.analytic.account:0 @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Estado de entrada" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "Agosto" @@ -393,6 +359,9 @@ msgstr "Agosto" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "Junho" @@ -410,15 +379,11 @@ msgid "User" msgstr "Utilizador" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "Novembro" @@ -431,6 +396,9 @@ msgstr "Data de fecho" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "Outubro" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "Janeiro" @@ -541,16 +512,12 @@ msgstr "Horas de trabalho do dia" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "Maio" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" -msgstr "" +#, python-format +msgid "May" +msgstr "Maio" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 @@ -567,6 +534,9 @@ msgstr "Horas de Trabalho" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "Fevereiro" @@ -584,26 +554,15 @@ msgid "Thu" msgstr "Qui" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "April" msgstr "Abril" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" -msgstr "" - #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" @@ -637,10 +596,3 @@ msgstr "Total" msgid "Change Work" msgstr "Mudar trabalho" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/ro_RO.po b/addons/hr_timesheet/i18n/ro_RO.po index 657c4d204b7..e960c0b8929 100644 --- a/addons/hr_timesheet/i18n/ro_RO.po +++ b/addons/hr_timesheet/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/ru_RU.po b/addons/hr_timesheet/i18n/ru_RU.po index a34a934f9e5..f7faa305c32 100644 --- a/addons/hr_timesheet/i18n/ru_RU.po +++ b/addons/hr_timesheet/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Статистика выпрлненных работ" msgid "Timesheet" msgstr "Табель" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Строки табеля" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Выбрать пользователей" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "Мои рабочие часы в день" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Статус регистрации" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "Пользователь" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "Дата закрытия" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "Рабочих часов в день" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "Рабочие часы" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "Позиция аналитики" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "Всего" msgid "Change Work" msgstr "Изменить неделю" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/sl_SL.po b/addons/hr_timesheet/i18n/sl_SL.po index 1e2fd6b6948..7ad14c8c922 100644 --- a/addons/hr_timesheet/i18n/sl_SL.po +++ b/addons/hr_timesheet/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/sv_SE.po b/addons/hr_timesheet/i18n/sv_SE.po index 8e856316e43..d4273779524 100644 --- a/addons/hr_timesheet/i18n/sv_SE.po +++ b/addons/hr_timesheet/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/sv_SV.po b/addons/hr_timesheet/i18n/sv_SV.po index f5625fb2d8b..813c2231519 100644 --- a/addons/hr_timesheet/i18n/sv_SV.po +++ b/addons/hr_timesheet/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,6 +33,11 @@ msgstr "" msgid "No employee defined for your user !" msgstr "" +#. module: hr_timesheet +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_timesheet #: field:hr.employee,journal_id:0 msgid "Analytic Journal" @@ -43,6 +48,12 @@ msgstr "" msgid "Stop Working" msgstr "" +#. module: hr_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet +msgid "Employee Timesheet" +msgstr "" + #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Work done stats" @@ -68,9 +79,9 @@ msgid "Sign in" msgstr "" #. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form -msgid "Working Hours of The Day" +#: code:addons/hr_timesheet/hr_timesheet.py:0 +#, python-format +msgid "UnknownError" msgstr "" #. module: hr_timesheet @@ -93,6 +104,11 @@ msgstr "" msgid "Sign in / Sign out" msgstr "" +#. module: hr_timesheet +#: wizard_view:hr_timesheet.si_so,sign_in:0 +msgid "Work done in the last period" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,state:0 #: wizard_field:hr_timesheet.si_so,sign_out,state:0 @@ -186,11 +202,6 @@ msgstr "" msgid "Hour" msgstr "" -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "General Information" -msgstr "" - #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Timesheet Lines" @@ -255,8 +266,13 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "Work done in the last period" +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 +#, python-format +msgid "September" msgstr "" #. module: hr_timesheet @@ -294,8 +310,6 @@ msgstr "" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet msgid "Employee timesheet" msgstr "" @@ -352,6 +366,12 @@ msgstr "" msgid "June" msgstr "" +#. module: hr_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_my +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_my +msgid "Print My Timesheet" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr.analytical.timesheet,init,user_id:0 #: wizard_field:hr.analytical.timesheet.my,init,user_id:0 @@ -416,26 +436,8 @@ msgid "Employee's name" msgstr "" #. module: hr_timesheet -#: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_users -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_users -msgid "Employees timesheet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "September" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_my -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_my -msgid "Print my timesheet" +#: wizard_view:hr_timesheet.si_so,sign_in:0 +msgid "General Information" msgstr "" #. module: hr_timesheet @@ -453,8 +455,10 @@ msgid "Cancel" msgstr "" #. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Timesheet Line" +#: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet +#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_users +#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_users +msgid "Employees Timesheet" msgstr "" #. module: hr_timesheet @@ -478,6 +482,11 @@ msgstr "" msgid "Current Date" msgstr "" +#. module: hr_timesheet +#: view:hr.analytic.timesheet:0 +msgid "Timesheet Line" +msgstr "" + #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,server_date:0 msgid "Current Server Date" @@ -494,6 +503,12 @@ msgstr "" msgid "Users" msgstr "" +#. module: hr_timesheet +#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form +#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form +msgid "Working Hours of The Day" +msgstr "" + #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 diff --git a/addons/hr_timesheet/i18n/tr_TR.po b/addons/hr_timesheet/i18n/tr_TR.po index 9474be1f6c7..57dd90966e9 100644 --- a/addons/hr_timesheet/i18n/tr_TR.po +++ b/addons/hr_timesheet/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/uk_UK.po b/addons/hr_timesheet/i18n/uk_UK.po index 42c2fac498f..0c1ad0dc45f 100644 --- a/addons/hr_timesheet/i18n/uk_UK.po +++ b/addons/hr_timesheet/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "Статистика виконаної роботи" msgid "Timesheet" msgstr "Табель часу" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "Рядки табелю" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "Вибрати користувачів" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "Статус відмітки входу" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "Кристувач" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "Дата закриття" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "Рядок аналітики" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "Разом" msgid "Change Work" msgstr "Поміняти роботу" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index 37ae26893e5..5e75f1fd43c 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "选择用户" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "签如状态" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "用户" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "终止日期" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "改变工作" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 7ffd07e06a4..418be35b272 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,13 +66,6 @@ msgstr "" msgid "Timesheet" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "janvier" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -96,13 +89,6 @@ msgstr "" msgid "Day" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "avril" -msgstr "" - #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 msgid "Minimum Analytic Amount" @@ -222,15 +208,11 @@ msgid "Timesheet Lines" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juillet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "July" msgstr "" @@ -258,15 +240,11 @@ msgid "Choose Users" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "novembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "March" msgstr "" @@ -288,15 +266,11 @@ msgid "My Working Hours of The Day" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "décembre" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "September" msgstr "" @@ -304,15 +278,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "février" +#, python-format +msgid "December" msgstr "" #. module: hr_timesheet @@ -377,15 +347,11 @@ msgid "Sign in status" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "août" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "August" msgstr "" @@ -393,6 +359,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "June" msgstr "" @@ -410,15 +379,11 @@ msgid "User" msgstr "" #. module: hr_timesheet +#: code:addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/hr_timesheet/report/users_timesheet.py:0 #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mars" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 #, python-format msgid "November" msgstr "" @@ -431,6 +396,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "October" msgstr "" @@ -444,6 +412,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "January" msgstr "" @@ -541,15 +512,11 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "juin" +#, python-format +msgid "May" msgstr "" #. module: hr_timesheet @@ -567,6 +534,9 @@ msgstr "" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 +#: selection:hr.analytical.timesheet,init,month:0 +#: selection:hr.analytical.timesheet.my,init,month:0 +#: selection:hr.analytical.timesheet_users,init,month:0 #, python-format msgid "February" msgstr "" @@ -583,25 +553,14 @@ msgstr "" msgid "Thu" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "octobre" -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 #: selection:hr.analytical.timesheet.my,init,month:0 #: selection:hr.analytical.timesheet_users,init,month:0 -msgid "mai" +#, python-format +msgid "April" msgstr "" #. module: hr_timesheet @@ -637,10 +596,3 @@ msgstr "" msgid "Change Work" msgstr "" -#. module: hr_timesheet -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -msgid "septembre" -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/ar_AR.po b/addons/hr_timesheet_invoice/i18n/ar_AR.po index ee09a23b440..26fb5419ac0 100644 --- a/addons/hr_timesheet_invoice/i18n/ar_AR.po +++ b/addons/hr_timesheet_invoice/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/bg_BG.po b/addons/hr_timesheet_invoice/i18n/bg_BG.po index c21622c00c6..685365f70b6 100644 --- a/addons/hr_timesheet_invoice/i18n/bg_BG.po +++ b/addons/hr_timesheet_invoice/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Името на обекта трябва да започва с \"x_\" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/bs_BS.po b/addons/hr_timesheet_invoice/i18n/bs_BS.po index 1e1af044078..5ec09cf8970 100644 --- a/addons/hr_timesheet_invoice/i18n/bs_BS.po +++ b/addons/hr_timesheet_invoice/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/ca_ES.po b/addons/hr_timesheet_invoice/i18n/ca_ES.po index 0d425f88449..3a20c4ccd7f 100644 --- a/addons/hr_timesheet_invoice/i18n/ca_ES.po +++ b/addons/hr_timesheet_invoice/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Benefici" #. module: hr_timesheet_invoice #: 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 "Compte analític incomplet" @@ -120,6 +119,12 @@ msgstr "Període fins data final" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "Completeu aquest camp només si voleu obligar a utilitzar un producte es msgid "Uninvoiced Entries" msgstr "Entrades no facturades" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "Al menys una línia no té producte!" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "Mostra data en l'historial de treballs" msgid "Date" msgstr "Data" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Haver" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Preu màx. factura" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "Fins" msgid "Do you want to show details of work in invoice ?" msgstr "Vol mostrar detalls del trebll en la factura?" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Període des de" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Preu màx. factura" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,15 +447,21 @@ msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter e msgid "Employee" msgstr "Empleat" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "Mostra el cost de l'article que torneu a facturar" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "La data real de cada treball serà mostrada en la factura" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "Mostra el cost de l'article que torneu a facturar" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -494,6 +494,12 @@ msgstr "Diari" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Tipus de facturació" msgid "Invoicing" msgstr "Facturat" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Haver" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "Indiqueu un producte de balanç en l'assistent" msgid "Cost" msgstr "Cost" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "Introduïu el camp direcció en l'empresa: %s." - diff --git a/addons/hr_timesheet_invoice/i18n/cs_CS.po b/addons/hr_timesheet_invoice/i18n/cs_CS.po index c06a51ab696..b349e42e986 100644 --- a/addons/hr_timesheet_invoice/i18n/cs_CS.po +++ b/addons/hr_timesheet_invoice/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,15 +27,18 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" #. module: hr_timesheet_invoice -#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_profit -#: model:ir.ui.menu,name:hr_timesheet_invoice.print_account_analytic_profit -msgid "Timesheet profit" +#: wizard_view:hr.timesheet.invoice.create,init:0 +msgid "Force to use a specific product" +msgstr "" + +#. module: hr_timesheet_invoice +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: hr_timesheet_invoice @@ -112,8 +115,14 @@ msgid "Period to enddate" msgstr "" #. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Force to use a specific product" +#: wizard_button:hr.timesheet.invoice.create,init,create:0 +msgid "Create Invoices" +msgstr "" + +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" msgstr "" #. module: hr_timesheet_invoice @@ -147,9 +156,9 @@ msgid "Date or Code" msgstr "" #. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree -msgid "Entries to invoice" +#: code:addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 +#, python-format +msgid "Data Insufficient!" msgstr "" #. module: hr_timesheet_invoice @@ -187,6 +196,8 @@ msgstr "" #. module: hr_timesheet_invoice #: model:ir.actions.report.xml,name:hr_timesheet_invoice.report_analytical_profit +#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_profit +#: model:ir.ui.menu,name:hr_timesheet_invoice.print_account_analytic_profit msgid "Timesheet Profit" msgstr "" @@ -271,15 +282,8 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 -#: wizard_button:hr.timesheet.invoice.create,init,create:0 msgid "Create invoices" msgstr "Vytvořit faktury" @@ -336,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -357,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -397,22 +407,11 @@ msgstr "Do" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -426,6 +425,12 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: hr_timesheet_invoice +#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree +#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree +msgid "Entries to invoice" +msgstr "" + #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 #, python-format @@ -442,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -477,6 +488,18 @@ msgstr "" msgid "Journal" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 +#, python-format +msgid "No Records Found for Report!" +msgstr "" + +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -514,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -533,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/cs_CZ.po b/addons/hr_timesheet_invoice/i18n/cs_CZ.po index c69decf2534..74144cd6f09 100644 --- a/addons/hr_timesheet_invoice/i18n/cs_CZ.po +++ b/addons/hr_timesheet_invoice/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "Do" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/de_DE.po b/addons/hr_timesheet_invoice/i18n/de_DE.po index 68d48b0caa4..ac52e8eba8f 100644 --- a/addons/hr_timesheet_invoice/i18n/de_DE.po +++ b/addons/hr_timesheet_invoice/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Gewinn" #. module: hr_timesheet_invoice #: 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 "Unvollständiges Analysekonto" @@ -120,6 +119,12 @@ msgstr "bis Periode" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "Komplettiere dieses Feld wenn Sie die Benutzung eines bestimmten Produkt msgid "Uninvoiced Entries" msgstr "Abrechenbare Dienstleistungen" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "Mindestens eine Position hat kein Produkt zugewiesen!" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "Anzeige Datum in der Arbeitsvorgangshistorie" msgid "Date" msgstr "Datum" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Haben" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Max. Rechnungsbetrag" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "An" msgid "Do you want to show details of work in invoice ?" msgstr "Wollen Sie weitere Details (Arbeitszeiten) in der Rechnung zeigen?" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Gültig ab" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Max. Rechnungsbetrag" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,15 +447,21 @@ msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen b msgid "Employee" msgstr "Mitabeiter" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "Anzeige der Kosten des weiterzuberechnenden Artikels" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "Das Tagesdatum jeder Aufgabe wird auf Rechnungen ausgegeben." #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "Anzeige der Kosten des weiterzuberechnenden Artikels" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -494,6 +494,12 @@ msgstr "Journal" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Rechnungsarten" msgid "Invoicing" msgstr "Eingangsrechnung" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Haben" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "Bitte geben Sie das Ausgleichsprodukt im Assistenten ein" msgid "Cost" msgstr "Kosten" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "Bitte tragen Sie die Anschrift des Partners ein: %s." - diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 4e09cdedbe0..28137b17b63 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/es_ES.po b/addons/hr_timesheet_invoice/i18n/es_ES.po index 8866b20a678..cd35702b62c 100644 --- a/addons/hr_timesheet_invoice/i18n/es_ES.po +++ b/addons/hr_timesheet_invoice/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Beneficio" #. module: hr_timesheet_invoice #: 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 "Cuenta analítica incompleta" @@ -120,6 +119,12 @@ msgstr "Periodo hasta fecha final" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "Complete este campo sólo si quiere obligar a utilizar un producto espec msgid "Uninvoiced Entries" msgstr "Entradas no facturadas" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "¡Por lo menos una línea no tiene producto!" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "Mostrar fecha en el historial de trabajos" msgid "Date" msgstr "Fecha" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Haber" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Precio máx. factura" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "Hasta" msgid "Do you want to show details of work in invoice ?" msgstr "¿Desea mostrar detalles del trabajo en la factura?" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Período desde" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Precio máx. factura" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,15 +447,21 @@ msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún caráct msgid "Employee" msgstr "Empleado" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "Mostrar el coste del artículo que vuelve a facturar" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "La fecha real de cada trabajo será mostrada en la factura" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "Mostrar el coste del artículo que vuelve a facturar" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -494,6 +494,12 @@ msgstr "Diario" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Tipos de facturación" msgid "Invoicing" msgstr "Facturado" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Haber" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "Por favor, indique un producto de balance en el asistente" msgid "Cost" msgstr "Coste" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "Por favor, introduzca el campo dirección en la empresa: %s." - diff --git a/addons/hr_timesheet_invoice/i18n/et_EE.po b/addons/hr_timesheet_invoice/i18n/et_EE.po index 219c39aec24..aaf41bf6486 100644 --- a/addons/hr_timesheet_invoice/i18n/et_EE.po +++ b/addons/hr_timesheet_invoice/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -40,7 +39,7 @@ msgstr "" #. module: hr_timesheet_invoice #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/fr_FR.po b/addons/hr_timesheet_invoice/i18n/fr_FR.po index ae5aded2269..be5c5096594 100644 --- a/addons/hr_timesheet_invoice/i18n/fr_FR.po +++ b/addons/hr_timesheet_invoice/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Profit" #. module: hr_timesheet_invoice #: 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 "Compte analytique incomplet" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "Compléter ce champ seulement si vous voulez forcer l'utilisation d'un p msgid "Uninvoiced Entries" msgstr "Entrées non-facturées" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "L'une de ces lignes n'a pas de produit !" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "Affiché la date dans l'historique des travaux" msgid "Date" msgstr "Date" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Crédit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Montant forfaitaire" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "à" msgid "Do you want to show details of work in invoice ?" msgstr "Voulez vous voir le détail du travail sur la facture ?" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Période de" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Montant forfaitaire" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,15 +447,21 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè msgid "Employee" msgstr "Employé" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "Afficher les coûts de l'objet que vous refacturez" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "La date réelle de chaque travaux sera affiché sur la facture" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "Afficher les coûts de l'objet que vous refacturez" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -494,6 +494,12 @@ msgstr "Journal" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Types de facturation" msgid "Invoicing" msgstr "Facturation" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Crédit" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "Veuillez remplir la balance produit dans l'assistant" msgid "Cost" msgstr "Coût" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "Veuillez remplir le champ adresse dans le patenaire: %s." - diff --git a/addons/hr_timesheet_invoice/i18n/hr_HR.po b/addons/hr_timesheet_invoice/i18n/hr_HR.po index 8751c7d1b8c..c9f61c29a83 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_HR.po +++ b/addons/hr_timesheet_invoice/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot index a8f0203acbb..336cebe0f21 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/hu_HU.po b/addons/hr_timesheet_invoice/i18n/hu_HU.po index 8f49bee8ece..45b81a01ce1 100644 --- a/addons/hr_timesheet_invoice/i18n/hu_HU.po +++ b/addons/hr_timesheet_invoice/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/it_IT.po b/addons/hr_timesheet_invoice/i18n/it_IT.po index dda5e3a3901..c3bd7fb6b1b 100644 --- a/addons/hr_timesheet_invoice/i18n/it_IT.po +++ b/addons/hr_timesheet_invoice/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Profitto" #. module: hr_timesheet_invoice #: 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 "Conto analitico incompleto" @@ -120,6 +119,12 @@ msgstr "Periodo da data finale" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "Completa questo campo solo se si vuole forzare l'utilizzo di uno specifi msgid "Uninvoiced Entries" msgstr "Registrazioni non Fatturate" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "Almeno online non ci sono prodotti!" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "Mostra la data nella lista dei lavori" msgid "Date" msgstr "Data" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Credito" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Prezzo Massimo Fattura" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "A" msgid "Do you want to show details of work in invoice ?" msgstr "Vuoi mostrare i dettagli di lavoro in fattura?" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Periodo da" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Prezzo Massimo Fattura" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,15 +447,21 @@ msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri msgid "Employee" msgstr "Impiegato" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "Mostra il costo di oggetti che sono stati rifatturati" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "La data reale di ciascun lavoro verrà mostrata sulla fattura" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "Mostra il costo di oggetti che sono stati rifatturati" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -494,6 +494,12 @@ msgstr "Registro" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -508,7 +514,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_pending_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_pending_analytic_accounts msgid "Pending Analytic Accounts" -msgstr "Contabilità analitiche in attesa" +msgstr "Contabilità Analitica in sospeso" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -531,6 +537,11 @@ msgstr "Tipi Fatturazione" msgid "Invoicing" msgstr "Fatturazione" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Credito" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "Si prega di compilare un Saldo prodotto nella procedura guidata" msgid "Cost" msgstr "Costo" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "Per favore compila l'indirizzo del partner: %s." - diff --git a/addons/hr_timesheet_invoice/i18n/lt_LT.po b/addons/hr_timesheet_invoice/i18n/lt_LT.po index 54854b592f6..f5e3c235d2f 100644 --- a/addons/hr_timesheet_invoice/i18n/lt_LT.po +++ b/addons/hr_timesheet_invoice/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index acb8c9d2073..9053405bf2d 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatt msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/nl_NL.po b/addons/hr_timesheet_invoice/i18n/nl_NL.po index 72845d316e7..c9b51e7f95e 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_NL.po +++ b/addons/hr_timesheet_invoice/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatt msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/pl_PL.po b/addons/hr_timesheet_invoice/i18n/pl_PL.po index 0a805808f81..90d14ff96d1 100644 --- a/addons/hr_timesheet_invoice/i18n/pl_PL.po +++ b/addons/hr_timesheet_invoice/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index e100aac6b0b..afce540a413 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter es msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/pt_PT.po b/addons/hr_timesheet_invoice/i18n/pt_PT.po index ce34aa11024..b4cd516fcd6 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_PT.po +++ b/addons/hr_timesheet_invoice/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Lucro" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "Entradas não facturadas" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "Data" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Crédito" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Preço máximo da factura" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "Para" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Periodo a partir de" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Preço máximo da factura" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter e msgid "Employee" msgstr "Empregado" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "Diário" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Tipos de facturação" msgid "Invoicing" msgstr "Facturação" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Crédito" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "Custo" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/ro_RO.po b/addons/hr_timesheet_invoice/i18n/ro_RO.po index 599816ac510..4b4603f2d21 100644 --- a/addons/hr_timesheet_invoice/i18n/ro_RO.po +++ b/addons/hr_timesheet_invoice/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/ru_RU.po b/addons/hr_timesheet_invoice/i18n/ru_RU.po index b40dfb53453..b5cd295c193 100644 --- a/addons/hr_timesheet_invoice/i18n/ru_RU.po +++ b/addons/hr_timesheet_invoice/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Прибыль" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "Дата" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Кредит" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "Кому" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Период с" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Название объекта должно начинаться с x_ msgid "Employee" msgstr "Сотрудник" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "Книга" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Типы выставления счетов" msgid "Invoicing" msgstr "Выставление счетов" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Кредит" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "Стоимость" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/sl_SL.po b/addons/hr_timesheet_invoice/i18n/sl_SL.po index 188a7a2cd40..7a03043b4a6 100644 --- a/addons/hr_timesheet_invoice/i18n/sl_SL.po +++ b/addons/hr_timesheet_invoice/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/sv_SE.po b/addons/hr_timesheet_invoice/i18n/sv_SE.po index 0dc2b3941e8..09f2d86e47c 100644 --- a/addons/hr_timesheet_invoice/i18n/sv_SE.po +++ b/addons/hr_timesheet_invoice/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/sv_SV.po b/addons/hr_timesheet_invoice/i18n/sv_SV.po index 884f5ac63c1..8f491dd057d 100644 --- a/addons/hr_timesheet_invoice/i18n/sv_SV.po +++ b/addons/hr_timesheet_invoice/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,15 +27,18 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" #. module: hr_timesheet_invoice -#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_profit -#: model:ir.ui.menu,name:hr_timesheet_invoice.print_account_analytic_profit -msgid "Timesheet profit" +#: wizard_view:hr.timesheet.invoice.create,init:0 +msgid "Force to use a specific product" +msgstr "" + +#. module: hr_timesheet_invoice +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: hr_timesheet_invoice @@ -112,8 +115,14 @@ msgid "Period to enddate" msgstr "" #. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Force to use a specific product" +#: wizard_button:hr.timesheet.invoice.create,init,create:0 +msgid "Create Invoices" +msgstr "" + +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" msgstr "" #. module: hr_timesheet_invoice @@ -147,9 +156,9 @@ msgid "Date or Code" msgstr "" #. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree -msgid "Entries to invoice" +#: code:addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 +#, python-format +msgid "Data Insufficient!" msgstr "" #. module: hr_timesheet_invoice @@ -187,6 +196,8 @@ msgstr "" #. module: hr_timesheet_invoice #: model:ir.actions.report.xml,name:hr_timesheet_invoice.report_analytical_profit +#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_profit +#: model:ir.ui.menu,name:hr_timesheet_invoice.print_account_analytic_profit msgid "Timesheet Profit" msgstr "" @@ -271,15 +282,8 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 -#: wizard_button:hr.timesheet.invoice.create,init,create:0 msgid "Create invoices" msgstr "" @@ -336,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -357,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -397,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -426,6 +425,12 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: hr_timesheet_invoice +#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree +#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree +msgid "Entries to invoice" +msgstr "" + #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 #, python-format @@ -442,14 +447,20 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -477,6 +488,18 @@ msgstr "" msgid "Journal" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 +#, python-format +msgid "No Records Found for Report!" +msgstr "" + +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -514,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -533,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/tr_TR.po b/addons/hr_timesheet_invoice/i18n/tr_TR.po index 76b4e7ccb22..96604cbce87 100644 --- a/addons/hr_timesheet_invoice/i18n/tr_TR.po +++ b/addons/hr_timesheet_invoice/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/uk_UK.po b/addons/hr_timesheet_invoice/i18n/uk_UK.po index e24c09470e8..7e9f7b61b37 100644 --- a/addons/hr_timesheet_invoice/i18n/uk_UK.po +++ b/addons/hr_timesheet_invoice/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "Прибуток" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "Незаінвойсовані записи" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "Дата" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,9 +367,9 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "Кредит" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" +msgstr "Макс. ціна інвойса" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -402,22 +407,11 @@ msgstr "по" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "Період з" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "Макс. ціна інвойса" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "Назва об'єкту має починатися з x_ і не мі msgid "Employee" msgstr "Працівник" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "Журнал" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "Типи інвойсування" msgid "Invoicing" msgstr "Виписка інвойсів" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "Кредит" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "Витрати" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 8ff50876e96..8ae32fca81a 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "至" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "日记帐" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index 51238c78667..a003141af78 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,7 +27,6 @@ msgstr "" #. module: hr_timesheet_invoice #: 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 "" @@ -120,6 +119,12 @@ msgstr "" msgid "Create Invoices" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Analytic Account incomplete" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Period from startdate" @@ -277,12 +282,6 @@ msgstr "" msgid "Uninvoiced Entries" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" @@ -341,6 +340,12 @@ msgstr "" msgid "Date" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Address field in the Partner: %s." +msgstr "" + #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,factor:0 msgid "Discount (%)" @@ -362,8 +367,8 @@ msgid "Total:" msgstr "" #. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" +#: field:account.analytic.account,amount_max:0 +msgid "Max. Invoice Price" msgstr "" #. module: hr_timesheet_invoice @@ -402,22 +407,11 @@ msgstr "" msgid "Do you want to show details of work in invoice ?" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 msgid "Period from" msgstr "" -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - #. module: hr_timesheet_invoice #: field:account.analytic.line,invoice_id:0 msgid "Invoice" @@ -453,14 +447,20 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet_invoice +#: help:hr.timesheet.final.invoice.create,init,price:0 +msgid "Display cost of the item you reinvoice" +msgstr "" + #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,init,date:0 msgid "The real date of each work will be displayed on the invoice" msgstr "" #. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "At least one line has no product !" msgstr "" #. module: hr_timesheet_invoice @@ -494,6 +494,12 @@ msgstr "" msgid "No Records Found for Report!" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" +msgstr "" + #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 msgid "Units" @@ -531,6 +537,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: hr_timesheet_invoice +#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 +msgid "Credit" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts @@ -550,9 +561,3 @@ msgstr "" msgid "Cost" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_sheet/i18n/ar_AR.po b/addons/hr_timesheet_sheet/i18n/ar_AR.po index 23f4196b097..b1c305b3497 100644 --- a/addons/hr_timesheet_sheet/i18n/ar_AR.po +++ b/addons/hr_timesheet_sheet/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/bg_BG.po b/addons/hr_timesheet_sheet/i18n/bg_BG.po index 8dd01208151..4687d349dd7 100644 --- a/addons/hr_timesheet_sheet/i18n/bg_BG.po +++ b/addons/hr_timesheet_sheet/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/bs_BS.po b/addons/hr_timesheet_sheet/i18n/bs_BS.po index d88adaaf796..59ae51c38ec 100644 --- a/addons/hr_timesheet_sheet/i18n/bs_BS.po +++ b/addons/hr_timesheet_sheet/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ca_ES.po b/addons/hr_timesheet_sheet/i18n/ca_ES.po index be6bd59f23e..bb4ccfad7ec 100644 --- a/addons/hr_timesheet_sheet/i18n/ca_ES.po +++ b/addons/hr_timesheet_sheet/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/cs_CS.po b/addons/hr_timesheet_sheet/i18n/cs_CS.po index 5b5f0343466..da66abc2199 100644 --- a/addons/hr_timesheet_sheet/i18n/cs_CS.po +++ b/addons/hr_timesheet_sheet/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "No employee defined for your user !" msgstr "" +#. module: hr_timesheet_sheet +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_attendance:0 #: field:hr_timesheet_sheet.sheet,total_attendance_day:0 @@ -420,6 +425,12 @@ msgstr "" msgid "Current Status" msgstr "" +#. module: hr_timesheet_sheet +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 +#, python-format +msgid "You cannot modify an entry in a confirmed timesheet !" +msgstr "" + #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Invoice on timesheet" diff --git a/addons/hr_timesheet_sheet/i18n/cs_CZ.po b/addons/hr_timesheet_sheet/i18n/cs_CZ.po index 0b07bdfa626..8344a0ab074 100644 --- a/addons/hr_timesheet_sheet/i18n/cs_CZ.po +++ b/addons/hr_timesheet_sheet/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/de_DE.po b/addons/hr_timesheet_sheet/i18n/de_DE.po index 1a93a420db3..d1470dc5881 100644 --- a/addons/hr_timesheet_sheet/i18n/de_DE.po +++ b/addons/hr_timesheet_sheet/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index 575dd3b6bfa..e7f5bc28871 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/es_ES.po b/addons/hr_timesheet_sheet/i18n/es_ES.po index 9473b24cb11..bcd82fdc07d 100644 --- a/addons/hr_timesheet_sheet/i18n/es_ES.po +++ b/addons/hr_timesheet_sheet/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/et_EE.po b/addons/hr_timesheet_sheet/i18n/et_EE.po index 349626d43d3..0c3bfe3fe39 100644 --- a/addons/hr_timesheet_sheet/i18n/et_EE.po +++ b/addons/hr_timesheet_sheet/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" #. module: hr_timesheet_sheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_attendance:0 diff --git a/addons/hr_timesheet_sheet/i18n/fr_FR.po b/addons/hr_timesheet_sheet/i18n/fr_FR.po index 45c538a99d9..598e6903644 100644 --- a/addons/hr_timesheet_sheet/i18n/fr_FR.po +++ b/addons/hr_timesheet_sheet/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/hr_HR.po b/addons/hr_timesheet_sheet/i18n/hr_HR.po index a59166fd604..1164c1e1280 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_HR.po +++ b/addons/hr_timesheet_sheet/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot index d5515e67378..e9c19eda219 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/hu_HU.po b/addons/hr_timesheet_sheet/i18n/hu_HU.po index 9f71f957e67..78eda452a6f 100644 --- a/addons/hr_timesheet_sheet/i18n/hu_HU.po +++ b/addons/hr_timesheet_sheet/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/it_IT.po b/addons/hr_timesheet_sheet/i18n/it_IT.po index df2c1fb6ea0..13fdaa67178 100644 --- a/addons/hr_timesheet_sheet/i18n/it_IT.po +++ b/addons/hr_timesheet_sheet/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/lt_LT.po b/addons/hr_timesheet_sheet/i18n/lt_LT.po index b97f230a301..d1ae5d7a549 100644 --- a/addons/hr_timesheet_sheet/i18n/lt_LT.po +++ b/addons/hr_timesheet_sheet/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index 07f62b4593f..7517ad9d414 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/nl_NL.po b/addons/hr_timesheet_sheet/i18n/nl_NL.po index b8713c7717b..b3ea6ad20a6 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_NL.po +++ b/addons/hr_timesheet_sheet/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pl_PL.po b/addons/hr_timesheet_sheet/i18n/pl_PL.po index 7960d6f9a7d..c147c078e8d 100644 --- a/addons/hr_timesheet_sheet/i18n/pl_PL.po +++ b/addons/hr_timesheet_sheet/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index 959b3f724d5..943d230d88c 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pt_PT.po b/addons/hr_timesheet_sheet/i18n/pt_PT.po index 4d9b15878bc..0f00fb3e913 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_PT.po +++ b/addons/hr_timesheet_sheet/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ro_RO.po b/addons/hr_timesheet_sheet/i18n/ro_RO.po index 93154e04fd5..a49dc798490 100644 --- a/addons/hr_timesheet_sheet/i18n/ro_RO.po +++ b/addons/hr_timesheet_sheet/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ru_RU.po b/addons/hr_timesheet_sheet/i18n/ru_RU.po index a2479d29c42..3f84696185f 100644 --- a/addons/hr_timesheet_sheet/i18n/ru_RU.po +++ b/addons/hr_timesheet_sheet/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/sl_SL.po b/addons/hr_timesheet_sheet/i18n/sl_SL.po index 1005d4a3839..c890e5e39ad 100644 --- a/addons/hr_timesheet_sheet/i18n/sl_SL.po +++ b/addons/hr_timesheet_sheet/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/sv_SE.po b/addons/hr_timesheet_sheet/i18n/sv_SE.po index 3bd1bdf1d98..413206fce8c 100644 --- a/addons/hr_timesheet_sheet/i18n/sv_SE.po +++ b/addons/hr_timesheet_sheet/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/sv_SV.po b/addons/hr_timesheet_sheet/i18n/sv_SV.po index 4ec683da2c3..7c7008bba5d 100644 --- a/addons/hr_timesheet_sheet/i18n/sv_SV.po +++ b/addons/hr_timesheet_sheet/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "No employee defined for your user !" msgstr "" +#. module: hr_timesheet_sheet +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_attendance:0 #: field:hr_timesheet_sheet.sheet,total_attendance_day:0 @@ -301,7 +306,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Konfiguration" #. module: hr_timesheet_sheet #: selection:res.company,timesheet_range:0 @@ -420,6 +425,12 @@ msgstr "" msgid "Current Status" msgstr "" +#. module: hr_timesheet_sheet +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 +#, python-format +msgid "You cannot modify an entry in a confirmed timesheet !" +msgstr "" + #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Invoice on timesheet" diff --git a/addons/hr_timesheet_sheet/i18n/tr_TR.po b/addons/hr_timesheet_sheet/i18n/tr_TR.po index 7bef0f68d1b..d1f2abc5fb0 100644 --- a/addons/hr_timesheet_sheet/i18n/tr_TR.po +++ b/addons/hr_timesheet_sheet/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/uk_UK.po b/addons/hr_timesheet_sheet/i18n/uk_UK.po index ae802046f94..681a2975665 100644 --- a/addons/hr_timesheet_sheet/i18n/uk_UK.po +++ b/addons/hr_timesheet_sheet/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index fb699abcda1..fdec6a5b618 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index 81fd6bf21a3..e874d823f8d 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ar_AR.po b/addons/idea/i18n/ar_AR.po index 0a145bd4e07..22420c8d381 100644 --- a/addons/idea/i18n/ar_AR.po +++ b/addons/idea/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/bg_BG.po b/addons/idea/i18n/bg_BG.po index 9e9eadbf529..996be4d98f6 100644 --- a/addons/idea/i18n/bg_BG.po +++ b/addons/idea/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/bs_BS.po b/addons/idea/i18n/bs_BS.po index 39b38d2ef97..7d4290d1549 100644 --- a/addons/idea/i18n/bs_BS.po +++ b/addons/idea/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ca_ES.po b/addons/idea/i18n/ca_ES.po index 5585a013a07..72211ef921b 100644 --- a/addons/idea/i18n/ca_ES.po +++ b/addons/idea/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/cs_CS.po b/addons/idea/i18n/cs_CS.po index b22fc029e0e..dec180860b0 100644 --- a/addons/idea/i18n/cs_CS.po +++ b/addons/idea/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,8 +41,8 @@ msgid "My Ideas" msgstr "" #. module: idea -#: selection:idea.idea,state:0 -msgid "Opened" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: idea @@ -122,6 +122,11 @@ msgstr "" msgid "Vote Statistics" msgstr "" +#. module: idea +#: selection:idea.idea,state:0 +msgid "Opened" +msgstr "" + #. module: idea #: field:idea.idea,state:0 msgid "Status" diff --git a/addons/idea/i18n/cs_CZ.po b/addons/idea/i18n/cs_CZ.po index 39a372c8522..dd97dbf896b 100644 --- a/addons/idea/i18n/cs_CZ.po +++ b/addons/idea/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/de_DE.po b/addons/idea/i18n/de_DE.po index 02b073b7692..daf334a57f2 100644 --- a/addons/idea/i18n/de_DE.po +++ b/addons/idea/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/es_AR.po b/addons/idea/i18n/es_AR.po index 7bfac988049..baa41f4e7b0 100644 --- a/addons/idea/i18n/es_AR.po +++ b/addons/idea/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/es_ES.po b/addons/idea/i18n/es_ES.po index 4608c602eee..101f7bcf63a 100644 --- a/addons/idea/i18n/es_ES.po +++ b/addons/idea/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/et_EE.po b/addons/idea/i18n/et_EE.po index 0c1430b591d..a291dc91fdc 100644 --- a/addons/idea/i18n/et_EE.po +++ b/addons/idea/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Minu ideed" #. module: idea #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: idea #: selection:idea.idea,my_vote:0 @@ -115,7 +115,7 @@ msgstr "Idee kategooria" #. module: idea #: model:ir.module.module,shortdesc:idea.module_meta_information msgid "Idea Manager" -msgstr "" +msgstr "Idee haldur" #. module: idea #: model:ir.ui.menu,name:idea.menu_idea_vote_stat diff --git a/addons/idea/i18n/fr_FR.po b/addons/idea/i18n/fr_FR.po index 028928ed7f1..59be673fa5d 100644 --- a/addons/idea/i18n/fr_FR.po +++ b/addons/idea/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/hr_HR.po b/addons/idea/i18n/hr_HR.po index 0a81ad8bd6f..871cf20fab2 100644 --- a/addons/idea/i18n/hr_HR.po +++ b/addons/idea/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/hu_HU.po b/addons/idea/i18n/hu_HU.po index 595ac0d6646..e16eaa227a6 100644 --- a/addons/idea/i18n/hu_HU.po +++ b/addons/idea/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/idea.pot b/addons/idea/i18n/idea.pot index 1dc3bb4e18d..aeeb2f5c48f 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/it_IT.po b/addons/idea/i18n/it_IT.po index badbf613a5a..db9bbb75ddb 100644 --- a/addons/idea/i18n/it_IT.po +++ b/addons/idea/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/lt_LT.po b/addons/idea/i18n/lt_LT.po index 8d6ee62e688..1c8d5ec94c5 100644 --- a/addons/idea/i18n/lt_LT.po +++ b/addons/idea/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/nl_BE.po b/addons/idea/i18n/nl_BE.po index ade233ac26e..5f06ae357f3 100644 --- a/addons/idea/i18n/nl_BE.po +++ b/addons/idea/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/nl_NL.po b/addons/idea/i18n/nl_NL.po index 047ffbd6258..d436f1f7e02 100644 --- a/addons/idea/i18n/nl_NL.po +++ b/addons/idea/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pl_PL.po b/addons/idea/i18n/pl_PL.po index 2d476348f4f..473bd1e10c5 100644 --- a/addons/idea/i18n/pl_PL.po +++ b/addons/idea/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pt_BR.po b/addons/idea/i18n/pt_BR.po index 86b7cc4cb4b..ecd77bbb4f4 100644 --- a/addons/idea/i18n/pt_BR.po +++ b/addons/idea/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pt_PT.po b/addons/idea/i18n/pt_PT.po index e2b39392f30..995ca5282cd 100644 --- a/addons/idea/i18n/pt_PT.po +++ b/addons/idea/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ro_RO.po b/addons/idea/i18n/ro_RO.po index 7340e8d9181..6adfead955a 100644 --- a/addons/idea/i18n/ro_RO.po +++ b/addons/idea/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ru_RU.po b/addons/idea/i18n/ru_RU.po index bd2fbb8f6f6..8c567668687 100644 --- a/addons/idea/i18n/ru_RU.po +++ b/addons/idea/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/sl_SL.po b/addons/idea/i18n/sl_SL.po index 6740cb7d645..9f738844d47 100644 --- a/addons/idea/i18n/sl_SL.po +++ b/addons/idea/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/sv_SE.po b/addons/idea/i18n/sv_SE.po index 981281d5d86..ac825744575 100644 --- a/addons/idea/i18n/sv_SE.po +++ b/addons/idea/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/sv_SV.po b/addons/idea/i18n/sv_SV.po index 016ce77dd93..895fa008d94 100644 --- a/addons/idea/i18n/sv_SV.po +++ b/addons/idea/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,8 +41,8 @@ msgid "My Ideas" msgstr "" #. module: idea -#: selection:idea.idea,state:0 -msgid "Opened" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: idea @@ -122,6 +122,11 @@ msgstr "" msgid "Vote Statistics" msgstr "" +#. module: idea +#: selection:idea.idea,state:0 +msgid "Opened" +msgstr "" + #. module: idea #: field:idea.idea,state:0 msgid "Status" @@ -149,7 +154,7 @@ msgstr "" #. module: idea #: model:ir.ui.menu,name:idea.menu_reporting msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: idea #: model:ir.model,name:idea.model_idea_vote_stat diff --git a/addons/idea/i18n/tr_TR.po b/addons/idea/i18n/tr_TR.po index bc55a353af7..5a824b4274f 100644 --- a/addons/idea/i18n/tr_TR.po +++ b/addons/idea/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/uk_UK.po b/addons/idea/i18n/uk_UK.po index 434eee8d3f6..cc1b07cc305 100644 --- a/addons/idea/i18n/uk_UK.po +++ b/addons/idea/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index 8517ba2c667..fcf1e10e45d 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/zh_TW.po b/addons/idea/i18n/zh_TW.po index d51977fcfa6..70313228df1 100644 --- a/addons/idea/i18n/zh_TW.po +++ b/addons/idea/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/ar_AR.po b/addons/l10n_be/i18n/ar_AR.po index 4c423663bbd..7bc72bd01c6 100644 --- a/addons/l10n_be/i18n/ar_AR.po +++ b/addons/l10n_be/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/bg_BG.po b/addons/l10n_be/i18n/bg_BG.po index dcdd8bf94a0..99e0f850348 100644 --- a/addons/l10n_be/i18n/bg_BG.po +++ b/addons/l10n_be/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "Известяване" @@ -32,6 +38,11 @@ msgstr "Известяване" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "Създаване на XML" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "Файлът е създаден" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Запази файла" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "Избери фискална година" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "Добре" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "Фискална година" @@ -174,6 +205,11 @@ msgstr "Фискална година" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "Тестов XML файл" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "MandataireId" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "XML файлът е създаден." @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Откажи" @@ -235,3 +286,14 @@ msgstr "Откажи" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/bs_BS.po b/addons/l10n_be/i18n/bs_BS.po index 14fed53519a..d54b21bf82f 100644 --- a/addons/l10n_be/i18n/bs_BS.po +++ b/addons/l10n_be/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/ca_ES.po b/addons/l10n_be/i18n/ca_ES.po index dd17a15ac5b..5dedfdbff94 100644 --- a/addons/l10n_be/i18n/ca_ES.po +++ b/addons/l10n_be/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "Notifica" @@ -32,6 +38,11 @@ msgstr "Notifica" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "Crea XML" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "Fitxer creat" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Desa el fitxer" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "Selecciona exercici fiscal" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "D'acord" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "Exercici fiscal" @@ -174,6 +205,11 @@ msgstr "Exercici fiscal" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "Fitxer XML de prova" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "Id solicitant" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "Fitxer XML ha estat creat." @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Cancel·la" @@ -235,3 +286,14 @@ msgstr "Cancel·la" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/cs_CS.po b/addons/l10n_be/i18n/cs_CS.po index 4255b544685..e96b5432b57 100644 --- a/addons/l10n_be/i18n/cs_CS.po +++ b/addons/l10n_be/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,13 +27,20 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" #. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 -msgid "Régime National" +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No partner has a VAT Number asociated with him." +msgstr "" + +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" msgstr "" #. module: l10n_be @@ -37,9 +49,8 @@ msgid "Tiers" msgstr "" #. module: l10n_be -#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 -#, python-format -msgid "No VAT Number Associated with Main Company!" +#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 +msgid "Period" msgstr "" #. module: l10n_be @@ -48,12 +59,14 @@ msgid "Charge" msgstr "" #. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 -msgid "Régime Intra-Communautaire" +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "Data Insufficient!" msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -65,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -79,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -86,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -100,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -116,6 +146,11 @@ msgstr "" msgid "Tiers - Payable" msgstr "" +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 +msgid "Régime National" +msgstr "" + #. module: l10n_be #: wizard_view:wizard.account.xml.vat.declaration,init:0 msgid "Select Period" @@ -138,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -160,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -168,8 +205,14 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 #, python-format msgid "Data Insufficient" msgstr "" @@ -181,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -192,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -201,12 +246,26 @@ msgid "Tax" msgstr "" #. module: l10n_be -#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 -msgid "Period" +#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No VAT Number Associated with Main Company!" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -217,7 +276,24 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 +msgid "Régime Intra-Communautaire" +msgstr "" + +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/cs_CZ.po b/addons/l10n_be/i18n/cs_CZ.po index 018a5dc46a4..4e92d245995 100644 --- a/addons/l10n_be/i18n/cs_CZ.po +++ b/addons/l10n_be/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/de_DE.po b/addons/l10n_be/i18n/de_DE.po index 8b5fdb788d8..81bcdcc24cd 100644 --- a/addons/l10n_be/i18n/de_DE.po +++ b/addons/l10n_be/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/es_AR.po b/addons/l10n_be/i18n/es_AR.po index ae6e39169c8..9f4d42f99f1 100644 --- a/addons/l10n_be/i18n/es_AR.po +++ b/addons/l10n_be/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "Impuestos" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/es_ES.po b/addons/l10n_be/i18n/es_ES.po index 64d10ba1f59..e13d1ddafe9 100644 --- a/addons/l10n_be/i18n/es_ES.po +++ b/addons/l10n_be/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/et_EE.po b/addons/l10n_be/i18n/et_EE.po index 5403e2acf87..83b8b2f54ff 100644 --- a/addons/l10n_be/i18n/et_EE.po +++ b/addons/l10n_be/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "Teavitus" @@ -32,6 +38,11 @@ msgstr "Teavitus" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "Loo XML" @@ -66,13 +78,14 @@ msgstr "Varad" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "Fail on loodud" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "Viga ! Sa ei saa luua rekrusiivseid kontomalle." +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Salvesta fail" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "Vali fiskaalaasta" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,9 +173,10 @@ msgstr "Vaade" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" -msgstr "Ok" +msgstr "Olgu" #. module: l10n_be #: wizard_view:list.vat.detail,init:0 @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "Rahandusaasta" @@ -174,6 +205,11 @@ msgstr "Rahandusaasta" msgid "XML Flie has been Created." msgstr "XML Fail on loodud." +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "Testi XML faili" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "Maks" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "XML fail on loodud." @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Loobu" @@ -235,3 +286,14 @@ msgstr "Loobu" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/fr_FR.po b/addons/l10n_be/i18n/fr_FR.po index 977ba1d5135..dbb7b2b2942 100644 --- a/addons/l10n_be/i18n/fr_FR.po +++ b/addons/l10n_be/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "Taxe" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/hr_HR.po b/addons/l10n_be/i18n/hr_HR.po index 457b27ee293..3bae540a272 100644 --- a/addons/l10n_be/i18n/hr_HR.po +++ b/addons/l10n_be/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/hu_HU.po b/addons/l10n_be/i18n/hu_HU.po index d82104a5c64..e175404db87 100644 --- a/addons/l10n_be/i18n/hu_HU.po +++ b/addons/l10n_be/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/it_IT.po b/addons/l10n_be/i18n/it_IT.po index 5807078f793..570fbef35c5 100644 --- a/addons/l10n_be/i18n/it_IT.po +++ b/addons/l10n_be/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,13 +236,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tax msgid "Tax" -msgstr "" +msgstr "Imposte" #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/l10n_be.pot b/addons/l10n_be/i18n/l10n_be.pot index 188e20af785..0f63f02cc18 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/lt_LT.po b/addons/l10n_be/i18n/lt_LT.po index 462f65ecdd0..be842b3f8ce 100644 --- a/addons/l10n_be/i18n/lt_LT.po +++ b/addons/l10n_be/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/nl_BE.po b/addons/l10n_be/i18n/nl_BE.po index a430cbc54e7..bc47de8e0a1 100644 --- a/addons/l10n_be/i18n/nl_BE.po +++ b/addons/l10n_be/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "Mededeling" @@ -32,6 +38,11 @@ msgstr "Mededeling" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "XML Aanmaken" @@ -66,13 +78,14 @@ msgstr "Kapitaal" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "Bestand aangemaakt" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "Onroerende goederen" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Bestand opslaan" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "Selecteer Fiscaaljaar" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "Weergave" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "Ok" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "Boekjaar" @@ -174,6 +205,11 @@ msgstr "Boekjaar" msgid "XML Flie has been Created." msgstr "XML bestand is aangemaakt" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "Test XML bestand" @@ -200,6 +237,7 @@ msgstr "Genereer rekeningschema uit een schema sjabloon. U wordt gevraagd om de #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -215,8 +253,20 @@ msgstr "Belasting" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "XML bestand is aangemaakt" @@ -227,6 +277,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Annuleer" @@ -236,3 +287,14 @@ msgstr "Annuleer" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/nl_NL.po b/addons/l10n_be/i18n/nl_NL.po index cdb59ab5ed0..9cd32d310e0 100644 --- a/addons/l10n_be/i18n/nl_NL.po +++ b/addons/l10n_be/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "Mededeling" @@ -32,6 +38,11 @@ msgstr "Mededeling" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "XML Aanmaken" @@ -66,13 +78,14 @@ msgstr "Kapitaal" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "Bestand aangemaakt" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "Onroerende goederen" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Bestand opslaan" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "Selecteer Fiscaaljaar" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "Weergave" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "Ok" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "Boekjaar" @@ -174,6 +205,11 @@ msgstr "Boekjaar" msgid "XML Flie has been Created." msgstr "XML bestand is aangemaakt" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "Test XML bestand" @@ -200,6 +237,7 @@ msgstr "Genereer rekeningschema uit een schema sjabloon. U wordt gevraagd om de #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "Agent ID" @@ -215,8 +253,20 @@ msgstr "Belasting" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "XML bestand is aangemaakt" @@ -227,6 +277,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Annuleer" @@ -236,3 +287,14 @@ msgstr "Annuleer" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/pl_PL.po b/addons/l10n_be/i18n/pl_PL.po index e067bcdd472..005271d3ace 100644 --- a/addons/l10n_be/i18n/pl_PL.po +++ b/addons/l10n_be/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index f628316c014..31dc0472015 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "Salvar arquivo" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/pt_PT.po b/addons/l10n_be/i18n/pt_PT.po index 2f22ebf1c26..d428df74886 100644 --- a/addons/l10n_be/i18n/pt_PT.po +++ b/addons/l10n_be/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/ro_RO.po b/addons/l10n_be/i18n/ro_RO.po index 3e4a77d6976..2907f7f7149 100644 --- a/addons/l10n_be/i18n/ro_RO.po +++ b/addons/l10n_be/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/ru_RU.po b/addons/l10n_be/i18n/ru_RU.po index 841a0697e5c..6f36c584f4a 100644 --- a/addons/l10n_be/i18n/ru_RU.po +++ b/addons/l10n_be/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/sl_SL.po b/addons/l10n_be/i18n/sl_SL.po index 0d0bb0d4f87..8f893310601 100644 --- a/addons/l10n_be/i18n/sl_SL.po +++ b/addons/l10n_be/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "V redu" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "Prekliči" @@ -235,3 +286,14 @@ msgstr "Prekliči" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/sv_SE.po b/addons/l10n_be/i18n/sv_SE.po index 6da624df5ff..442909ddad2 100644 --- a/addons/l10n_be/i18n/sv_SE.po +++ b/addons/l10n_be/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "Skatt" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/sv_SV.po b/addons/l10n_be/i18n/sv_SV.po index 4f53d3c34b3..a08af62fa53 100644 --- a/addons/l10n_be/i18n/sv_SV.po +++ b/addons/l10n_be/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,13 +27,20 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" #. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 -msgid "Régime National" +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No partner has a VAT Number asociated with him." +msgstr "" + +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" msgstr "" #. module: l10n_be @@ -37,9 +49,8 @@ msgid "Tiers" msgstr "" #. module: l10n_be -#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 -#, python-format -msgid "No VAT Number Associated with Main Company!" +#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 +msgid "Period" msgstr "" #. module: l10n_be @@ -48,12 +59,14 @@ msgid "Charge" msgstr "" #. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 -msgid "Régime Intra-Communautaire" +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "Data Insufficient!" msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -65,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -79,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -86,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -100,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -116,6 +146,11 @@ msgstr "" msgid "Tiers - Payable" msgstr "" +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 +msgid "Régime National" +msgstr "" + #. module: l10n_be #: wizard_view:wizard.account.xml.vat.declaration,init:0 msgid "Select Period" @@ -138,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -160,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -168,8 +205,14 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 #, python-format msgid "Data Insufficient" msgstr "" @@ -181,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -192,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -201,12 +246,26 @@ msgid "Tax" msgstr "Skatt" #. module: l10n_be -#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 -msgid "Period" +#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No VAT Number Associated with Main Company!" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -217,7 +276,24 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 +msgid "Régime Intra-Communautaire" +msgstr "" + +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/tr_TR.po b/addons/l10n_be/i18n/tr_TR.po index eb931dd5b2a..2da138867cd 100644 --- a/addons/l10n_be/i18n/tr_TR.po +++ b/addons/l10n_be/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/uk_UK.po b/addons/l10n_be/i18n/uk_UK.po index 45f235cd7dc..ab356873d70 100644 --- a/addons/l10n_be/i18n/uk_UK.po +++ b/addons/l10n_be/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "Податки" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/zh_CN.po b/addons/l10n_be/i18n/zh_CN.po index e5a5b59af69..be006da6eee 100644 --- a/addons/l10n_be/i18n/zh_CN.po +++ b/addons/l10n_be/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "?" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/zh_TW.po b/addons/l10n_be/i18n/zh_TW.po index bb4759f6052..0a5f4c5aab3 100644 --- a/addons/l10n_be/i18n/zh_TW.po +++ b/addons/l10n_be/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Oct/Nov/Dec" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers_receiv msgid "Tiers - Recevable" @@ -22,6 +27,7 @@ msgstr "" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 #: wizard_view:wizard.account.xml.vat.declaration,go:0 msgid "Notification" msgstr "" @@ -32,6 +38,11 @@ msgstr "" msgid "No partner has a VAT Number asociated with him." msgstr "" +#. module: l10n_be +#: wizard_field:vat.intra.xml,init,trimester:0 +msgid "Trimester Number" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tiers msgid "Tiers" @@ -55,6 +66,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:vat.intra.xml,init,go:0 #: wizard_button:wizard.account.xml.vat.declaration,init,go:0 msgid "Create XML" msgstr "" @@ -66,13 +78,14 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:vat.intra.xml,go,msg:0 #: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 msgid "File created" msgstr "" #. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" +#: selection:vat.intra.xml,init,trimester:0 +msgid "Apr/May/Jun" msgstr "" #. module: l10n_be @@ -80,6 +93,11 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jul/Aug/Sep" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_immo msgid "Immobilisation" @@ -87,10 +105,16 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:vat.intra.xml,go,file_save:0 #: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 msgid "Save File" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "This wizard will create an XML file for Vat Intra" +msgstr "" + #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information msgid "Belgium - Plan Comptable Minimum Normalise" @@ -101,6 +125,11 @@ msgstr "" msgid "Select Fiscal Year" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "Partner VAT Intra" +msgstr "" + #. module: l10n_be #: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration #: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration @@ -144,6 +173,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:vat.intra.xml,go,end:0 #: wizard_button:wizard.account.xml.vat.declaration,go,end:0 msgid "Ok" msgstr "" @@ -166,6 +196,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,fyear:0 +#: wizard_field:vat.intra.xml,init,fyear:0 msgid "Fiscal Year" msgstr "" @@ -174,6 +205,11 @@ msgstr "" msgid "XML Flie has been Created." msgstr "" +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + #. module: l10n_be #: code:addons/l10n_be/wizard/account_vat_declaration.py:0 #: code:addons/l10n_be/wizard/partner_vat_listing.py:0 @@ -188,6 +224,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,test_xml:0 +#: wizard_field:vat.intra.xml,init,test_xml:0 msgid "Test XML file" msgstr "" @@ -199,6 +236,7 @@ msgstr "" #. module: l10n_be #: wizard_field:list.vat.detail,init,mand_id:0 +#: wizard_field:vat.intra.xml,init,mand_id:0 msgid "MandataireId" msgstr "" @@ -214,8 +252,20 @@ msgstr "" msgid "No VAT Number Associated with Main Company!" msgstr "" +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +#: wizard_field:vat.intra.xml,init,country_ids:0 +msgid "European Countries" +msgstr "" + +#. module: l10n_be +#: wizard_view:vat.intra.xml,init:0 +msgid "General Information" +msgstr "" + #. module: l10n_be #: wizard_view:list.vat.detail,go:0 +#: wizard_view:vat.intra.xml,go:0 msgid "XML File has been Created." msgstr "" @@ -226,6 +276,7 @@ msgstr "" #. module: l10n_be #: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:vat.intra.xml,init,end:0 #: wizard_button:wizard.account.xml.vat.declaration,init,end:0 msgid "Cancel" msgstr "" @@ -235,3 +286,14 @@ msgstr "" msgid "Régime Intra-Communautaire" msgstr "" +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_vat_intra +#: model:ir.ui.menu,name:l10n_be.partner_intra_vat_menu +msgid "Partner VAT intra" +msgstr "" + +#. module: l10n_be +#: selection:vat.intra.xml,init,trimester:0 +msgid "Jan/Feb/Mar" +msgstr "" + diff --git a/addons/l10n_be/i18n/znd_ZND.po b/addons/l10n_be/i18n/znd_ZND.po new file mode 100644 index 00000000000..fae019c88f2 --- /dev/null +++ b/addons/l10n_be/i18n/znd_ZND.po @@ -0,0 +1,246 @@ +# Zande translation for openobject-addons +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:59+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Zande \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-05-19 13:36+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_tiers_receiv +msgid "Tiers - Recevable" +msgstr "" + +#. module: l10n_be +#: wizard_view:list.vat.detail,go:0 +#: wizard_view:wizard.account.xml.vat.declaration,go:0 +msgid "Notification" +msgstr "" + +#. module: l10n_be +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No partner has a VAT Number asociated with him." +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_tiers +msgid "Tiers" +msgstr "" + +#. module: l10n_be +#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 +msgid "Period" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_charge +msgid "Charge" +msgstr "" + +#. module: l10n_be +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: l10n_be +#: wizard_button:list.vat.detail,init,go:0 +#: wizard_button:wizard.account.xml.vat.declaration,init,go:0 +msgid "Create XML" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_capitaux +msgid "Capital" +msgstr "" + +#. module: l10n_be +#: wizard_field:list.vat.detail,go,msg:0 +#: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 +msgid "File created" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_stock +msgid "Stock et Encours" +msgstr "" + +#. module: l10n_be +#: constraint:account.account.template:0 +msgid "Error ! You can not create recursive account templates." +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_immo +msgid "Immobilisation" +msgstr "" + +#. module: l10n_be +#: wizard_field:list.vat.detail,go,file_save:0 +#: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 +msgid "Save File" +msgstr "" + +#. module: l10n_be +#: model:ir.module.module,shortdesc:l10n_be.module_meta_information +msgid "Belgium - Plan Comptable Minimum Normalise" +msgstr "" + +#. module: l10n_be +#: wizard_view:list.vat.detail,init:0 +msgid "Select Fiscal Year" +msgstr "" + +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration +#: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration +msgid "Periodical VAT Declaration" +msgstr "" + +#. module: l10n_be +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_tiers_payable +msgid "Tiers - Payable" +msgstr "" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 +msgid "Régime National" +msgstr "" + +#. module: l10n_be +#: wizard_view:wizard.account.xml.vat.declaration,init:0 +msgid "Select Period" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_produit +msgid "Produit" +msgstr "" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_2 +msgid "Régime Extra-Communautaire" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_view +msgid "Vue" +msgstr "" + +#. module: l10n_be +#: wizard_button:list.vat.detail,go,end:0 +#: wizard_button:wizard.account.xml.vat.declaration,go,end:0 +msgid "Ok" +msgstr "" + +#. module: l10n_be +#: wizard_view:list.vat.detail,init:0 +msgid "" +"This wizard will create an XML file for Vat details and total invoiced " +"amounts per partner." +msgstr "" + +#. module: l10n_be +#: wizard_field:list.vat.detail,init,limit_amount:0 +msgid "Limit Amount" +msgstr "" + +#. module: l10n_be +#: model:ir.actions.wizard,name:l10n_be.partner_wizard_vat +#: model:ir.ui.menu,name:l10n_be.partner_wizard_vat_menu +msgid "Annual Listing of VAT-Subjected Customers" +msgstr "" + +#. module: l10n_be +#: wizard_field:list.vat.detail,init,fyear:0 +msgid "Fiscal Year" +msgstr "" + +#. module: l10n_be +#: wizard_view:wizard.account.xml.vat.declaration,go:0 +msgid "XML Flie has been Created." +msgstr "" + +#. module: l10n_be +#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "Data Insufficient" +msgstr "" + +#. module: l10n_be +#: model:ir.ui.menu,name:l10n_be.menu_finance_belgian_statement +msgid "Belgium Statements" +msgstr "" + +#. module: l10n_be +#: wizard_field:list.vat.detail,init,test_xml:0 +msgid "Test XML file" +msgstr "" + +#. module: l10n_be +#: model:ir.actions.todo,note:l10n_be.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_be +#: wizard_field:list.vat.detail,init,mand_id:0 +msgid "MandataireId" +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_tax +msgid "Tax" +msgstr "" + +#. module: l10n_be +#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 +#: code:addons/l10n_be/wizard/partner_vat_listing.py:0 +#, python-format +msgid "No VAT Number Associated with Main Company!" +msgstr "" + +#. module: l10n_be +#: wizard_view:list.vat.detail,go:0 +msgid "XML File has been Created." +msgstr "" + +#. module: l10n_be +#: model:account.account.type,name:l10n_be.user_type_financiers +msgid "Financier" +msgstr "" + +#. module: l10n_be +#: wizard_button:list.vat.detail,init,end:0 +#: wizard_button:wizard.account.xml.vat.declaration,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 +msgid "Régime Intra-Communautaire" +msgstr "" diff --git a/addons/l10n_ch/i18n/ar_AR.po b/addons/l10n_ch/i18n/ar_AR.po index 36ce34fc4c6..7e2f0023168 100644 --- a/addons/l10n_ch/i18n/ar_AR.po +++ b/addons/l10n_ch/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/bg_BG.po b/addons/l10n_ch/i18n/bg_BG.po index 361a7844ddb..d0374a852ff 100644 --- a/addons/l10n_ch/i18n/bg_BG.po +++ b/addons/l10n_ch/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/bs_BS.po b/addons/l10n_ch/i18n/bs_BS.po index ac96e561da2..d6e574d9b9c 100644 --- a/addons/l10n_ch/i18n/bs_BS.po +++ b/addons/l10n_ch/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ca_ES.po b/addons/l10n_ch/i18n/ca_ES.po index bfe857884cc..7cf04e2eac6 100644 --- a/addons/l10n_ch/i18n/ca_ES.po +++ b/addons/l10n_ch/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/cs_CS.po b/addons/l10n_ch/i18n/cs_CS.po new file mode 100644 index 00000000000..52f98e5626d --- /dev/null +++ b/addons/l10n_ch/i18n/cs_CS.po @@ -0,0 +1,619 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_ch +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Invoice Date:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "-" +msgstr "" + +#. module: l10n_ch +#: field:account.journal.todo,name:0 +msgid "Journal to set" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No bank account for the company." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Record found after total record!" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvrpost +msgid "DTA-BVRPOST" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "Mail:" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_bvr_import +#: wizard_view:l10n_ch.bvr_import,init:0 +msgid "BVR Import" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Thanks," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Base" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.report.xml,name:l10n_ch.account_invoice_bvr +msgid "BVR A4 Sheet" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Refund" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "The Bank type %s of the bank account: %s is not supported" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,default_debit_account_id:0 +msgid "The Default Debit Account of the account journal" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Dear customer," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Amount" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvbank +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvpost +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvrbank +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvrpost +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_iban +msgid "bank" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/wizard_bvr.py:0 +#, python-format +msgid "UserError" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_bvr_check_report +msgid "BVR" +msgstr "" + +#. module: l10n_ch +#: wizard_button:account.dta_create,init,end:0 +msgid "OK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "TVA (%)" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Tax" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Total record different from the computed!" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,bvr_number:0 +msgid "BVR account number" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Number record different from the computed!" +msgstr "" + +#. module: l10n_ch +#: field:res.bank,clearing:0 +msgid "Clearing number" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvbank +msgid "DTA-BVBANK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "', reference:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Remarque:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Disc. (%)" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,name:0 +msgid "the currenty edited account journal" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "Next" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No IBAN for the company bank account." +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: l10n_ch +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "You must provide a Clearing Number for your bank account." +msgstr "" + +#. module: l10n_ch +#: wizard_view:account.dta_create,init:0 +msgid "DTA file creation - Results" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_sir +#: model:res.partner.title,name:l10n_ch.res_partner_title_sir +msgid "Monsieur" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "+" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.act_window,name:l10n_ch.action_config_journal +msgid "Configure Journal" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "The properties account payable account receivable" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_mme_m +#: model:res.partner.title,name:l10n_ch.res_partner_title_mme_m +msgid "Madame, Monsieur," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Here is the BVR to allow you to pay the invoice '" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "Account Journal" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_ch +#: model:ir.model,name:l10n_ch.model_account_journal_todo +msgid "account.journal.todo" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.iban_field +#: model:res.partner.bank.type.field,name:l10n_ch.iban_field_iban +msgid "iban" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "not implemented" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Draft Invoice" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "VAT :" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No payment mode or payment type code invalid." +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_invoice_bvr_check_report +msgid "Invoices BVR" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Invoice -" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Recursive mod10 is invalid for reference: %s" +msgstr "" + +#. module: l10n_ch +#: view:account.bank.statement:0 +msgid "Import BVR" +msgstr "" + +#. module: l10n_ch +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/wizard_bvr.py:0 +#, python-format +msgid "No bank specified on invoice:\n%s" +msgstr "" + +#. module: l10n_ch +#: wizard_button:l10n_ch.bvr_import,init,import:0 +msgid "Import" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,bvr_adherent_num:0 +msgid "BVR adherent number" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "Phone:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "." +msgstr "" + +#. module: l10n_ch +#: field:res.company,bvr_delta_horz:0 +msgid "BVR Horz. Delta (mm)" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.report.xml,name:l10n_ch.invoice_bvr +msgid "Invoice with BVR" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid ":" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Condition" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid ">" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "TVA:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bank_dta +msgid "Ordering party DTA" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_madame +#: model:res.partner.title,name:l10n_ch.res_partner_title_madame +msgid "Madame" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Concerne:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvpost +msgid "DTA-BVPOST" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Subject:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_societe +#: model:res.partner.title,name:l10n_ch.res_partner_title_societe +msgid "Société" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Quantity" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,dta_code:0 +msgid "DTA code" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_mlle +#: model:res.partner.title,name:l10n_ch.res_partner_title_mlle +msgid "Mademoiselle" +msgstr "" + +#. module: l10n_ch +#: model:ir.module.module,shortdesc:l10n_ch.module_meta_information +msgid "Switzerland localisation corrected by Camptocamp" +msgstr "" + +#. module: l10n_ch +#: field:account.journal.todo,default_debit_account_id:0 +msgid "Default Debit Account" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,default_credit_account_id:0 +msgid "The Default Credit Account of the account journal" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "The accounts linked to the account journals" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_account_dta_create +msgid "Create DTA" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,post_number:0 +msgid "Post number" +msgstr "" + +#. module: l10n_ch +#: wizard_field:account.dta_create,init,dta:0 +msgid "DTA File" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Invoice" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +#: wizard_button:l10n_ch.bvr_import,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.post_field_bvpost +msgid "post_number" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: l10n_ch +#: field:account.journal.todo,default_credit_account_id:0 +msgid "Default Credit Account" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Unit Price" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "(incl. taxes):" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Taxes:" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Too much total record found!" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Description" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Price" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Canceled Invoice" +msgstr "" + +#. module: l10n_ch +#: wizard_field:l10n_ch.bvr_import,init,file:0 +msgid "BVR file" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "1cm 25.7cm 7cm 25.7cm" +msgstr "" + +#. module: l10n_ch +#: wizard_view:account.dta_create,init:0 +msgid "Clic on 'Save as' to save the DTA file :" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvrbank +msgid "DTA-BVRBANK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Total (excl. taxes):" +msgstr "" + +#. module: l10n_ch +#: help:res.company,bvr_delta_vert:0 +msgid "vert. delta in mm 1.2 will print the bvz 1.2mm lefter" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.dta_iban +msgid "DTA-IBAN" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.acc_num_field_bvbank +msgid "acc_number" +msgstr "" + +#. module: l10n_ch +#: field:res.company,bvr_delta_vert:0 +msgid "BVR Vert. Delta (mm)" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.todo,note:l10n_ch.action_config_journal_todo +msgid "Set accounts on financial journals defined by\n" +" Camptocamp l10n_ch module" +msgstr "" + +#. module: l10n_ch +#: help:res.company,bvr_delta_horz:0 +msgid "horiz. delta in mm 1.2 will print the bvz 1.2mm lefter" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "1cm 27.7cm 20cm 27.7cm" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.bvr_num_field_bvrbank +#: model:res.partner.bank.type.field,name:l10n_ch.bvr_num_field_bvrpost +msgid "bvr_number" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Supplier Refund" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Total" +msgstr "" + diff --git a/addons/l10n_ch/i18n/cs_CZ.po b/addons/l10n_ch/i18n/cs_CZ.po index 283cf3db7cb..9c4261eec37 100644 --- a/addons/l10n_ch/i18n/cs_CZ.po +++ b/addons/l10n_ch/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/de_DE.po b/addons/l10n_ch/i18n/de_DE.po index 028cac6aefc..e7f326ee4df 100644 --- a/addons/l10n_ch/i18n/de_DE.po +++ b/addons/l10n_ch/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/es_AR.po b/addons/l10n_ch/i18n/es_AR.po index 68948686719..b62ce4268ee 100644 --- a/addons/l10n_ch/i18n/es_AR.po +++ b/addons/l10n_ch/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/es_ES.po b/addons/l10n_ch/i18n/es_ES.po index cd81ee2fc30..65482e57645 100644 --- a/addons/l10n_ch/i18n/es_ES.po +++ b/addons/l10n_ch/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/et_EE.po b/addons/l10n_ch/i18n/et_EE.po index 7c6eb1c274c..4fbfdd24547 100644 --- a/addons/l10n_ch/i18n/et_EE.po +++ b/addons/l10n_ch/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: l10n_ch #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: l10n_ch #: code:addons/l10n_ch/wizard/dta_wizard.py:0 @@ -320,7 +320,7 @@ msgstr "" #. module: l10n_ch #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Viga! Sa ei saa luua rekursiivseid seotud liikmeid." #. module: l10n_ch #: code:addons/l10n_ch/wizard/wizard_bvr.py:0 diff --git a/addons/l10n_ch/i18n/fr_FR.po b/addons/l10n_ch/i18n/fr_FR.po index 08a692a584c..f11a4945ce9 100644 --- a/addons/l10n_ch/i18n/fr_FR.po +++ b/addons/l10n_ch/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/hr_HR.po b/addons/l10n_ch/i18n/hr_HR.po index ddcd11623af..ad07b49f513 100644 --- a/addons/l10n_ch/i18n/hr_HR.po +++ b/addons/l10n_ch/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/hu_HU.po b/addons/l10n_ch/i18n/hu_HU.po index 5eb9a333c66..db58c6932d0 100644 --- a/addons/l10n_ch/i18n/hu_HU.po +++ b/addons/l10n_ch/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/it_IT.po b/addons/l10n_ch/i18n/it_IT.po index a0a099e60b7..ab4434ee56d 100644 --- a/addons/l10n_ch/i18n/it_IT.po +++ b/addons/l10n_ch/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/l10n_ch.pot b/addons/l10n_ch/i18n/l10n_ch.pot index bee4bdcd2fb..a0339b0d58c 100644 --- a/addons/l10n_ch/i18n/l10n_ch.pot +++ b/addons/l10n_ch/i18n/l10n_ch.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/lt_LT.po b/addons/l10n_ch/i18n/lt_LT.po index 1c412430adf..de974b0a786 100644 --- a/addons/l10n_ch/i18n/lt_LT.po +++ b/addons/l10n_ch/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/nl_BE.po b/addons/l10n_ch/i18n/nl_BE.po index 288fc7e186f..7a9a0f8002a 100644 --- a/addons/l10n_ch/i18n/nl_BE.po +++ b/addons/l10n_ch/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/nl_NL.po b/addons/l10n_ch/i18n/nl_NL.po index a5c1bdda044..ebe46899fd6 100644 --- a/addons/l10n_ch/i18n/nl_NL.po +++ b/addons/l10n_ch/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pl_PL.po b/addons/l10n_ch/i18n/pl_PL.po index 1b3b19f728d..ae5270599ca 100644 --- a/addons/l10n_ch/i18n/pl_PL.po +++ b/addons/l10n_ch/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pt_BR.po b/addons/l10n_ch/i18n/pt_BR.po index 8499603b2a4..c71cdd76e48 100644 --- a/addons/l10n_ch/i18n/pt_BR.po +++ b/addons/l10n_ch/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pt_PT.po b/addons/l10n_ch/i18n/pt_PT.po index 59e744d3bc2..09462fec27d 100644 --- a/addons/l10n_ch/i18n/pt_PT.po +++ b/addons/l10n_ch/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ro_RO.po b/addons/l10n_ch/i18n/ro_RO.po index f2fef5728a4..d04ef4c8267 100644 --- a/addons/l10n_ch/i18n/ro_RO.po +++ b/addons/l10n_ch/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ru_RU.po b/addons/l10n_ch/i18n/ru_RU.po index 7b15081e7c5..36d448cfd13 100644 --- a/addons/l10n_ch/i18n/ru_RU.po +++ b/addons/l10n_ch/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sl_SL.po b/addons/l10n_ch/i18n/sl_SL.po index 09657a7b687..c7b2395475a 100644 --- a/addons/l10n_ch/i18n/sl_SL.po +++ b/addons/l10n_ch/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sv_SE.po b/addons/l10n_ch/i18n/sv_SE.po index e0558c73b75..06eb5be949c 100644 --- a/addons/l10n_ch/i18n/sv_SE.po +++ b/addons/l10n_ch/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sv_SV.po b/addons/l10n_ch/i18n/sv_SV.po new file mode 100644 index 00000000000..2af73b9ce6c --- /dev/null +++ b/addons/l10n_ch/i18n/sv_SV.po @@ -0,0 +1,619 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_ch +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Invoice Date:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "-" +msgstr "" + +#. module: l10n_ch +#: field:account.journal.todo,name:0 +msgid "Journal to set" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No bank account for the company." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Record found after total record!" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvrpost +msgid "DTA-BVRPOST" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "Mail:" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_bvr_import +#: wizard_view:l10n_ch.bvr_import,init:0 +msgid "BVR Import" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Thanks," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Base" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.report.xml,name:l10n_ch.account_invoice_bvr +msgid "BVR A4 Sheet" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Refund" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "The Bank type %s of the bank account: %s is not supported" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,default_debit_account_id:0 +msgid "The Default Debit Account of the account journal" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Dear customer," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Amount" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvbank +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvpost +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvrbank +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_bvrpost +#: model:res.partner.bank.type.field,name:l10n_ch.bank_field_iban +msgid "bank" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/wizard_bvr.py:0 +#, python-format +msgid "UserError" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_bvr_check_report +msgid "BVR" +msgstr "" + +#. module: l10n_ch +#: wizard_button:account.dta_create,init,end:0 +msgid "OK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "TVA (%)" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Tax" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Total record different from the computed!" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,bvr_number:0 +msgid "BVR account number" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Number record different from the computed!" +msgstr "" + +#. module: l10n_ch +#: field:res.bank,clearing:0 +msgid "Clearing number" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvbank +msgid "DTA-BVBANK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "', reference:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Remarque:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Disc. (%)" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,name:0 +msgid "the currenty edited account journal" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "Next" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No IBAN for the company bank account." +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: l10n_ch +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "You must provide a Clearing Number for your bank account." +msgstr "" + +#. module: l10n_ch +#: wizard_view:account.dta_create,init:0 +msgid "DTA file creation - Results" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_sir +#: model:res.partner.title,name:l10n_ch.res_partner_title_sir +msgid "Monsieur" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "+" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.act_window,name:l10n_ch.action_config_journal +msgid "Configure Journal" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "The properties account payable account receivable" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_mme_m +#: model:res.partner.title,name:l10n_ch.res_partner_title_mme_m +msgid "Madame, Monsieur," +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Here is the BVR to allow you to pay the invoice '" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "Account Journal" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_ch +#: model:ir.model,name:l10n_ch.model_account_journal_todo +msgid "account.journal.todo" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.iban_field +#: model:res.partner.bank.type.field,name:l10n_ch.iban_field_iban +msgid "iban" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "not implemented" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Draft Invoice" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "VAT :" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "No payment mode or payment type code invalid." +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_invoice_bvr_check_report +msgid "Invoices BVR" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Invoice -" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Recursive mod10 is invalid for reference: %s" +msgstr "" + +#. module: l10n_ch +#: view:account.bank.statement:0 +msgid "Import BVR" +msgstr "" + +#. module: l10n_ch +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/wizard_bvr.py:0 +#, python-format +msgid "No bank specified on invoice:\n%s" +msgstr "" + +#. module: l10n_ch +#: wizard_button:l10n_ch.bvr_import,init,import:0 +msgid "Import" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,bvr_adherent_num:0 +msgid "BVR adherent number" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "Phone:" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "." +msgstr "" + +#. module: l10n_ch +#: field:res.company,bvr_delta_horz:0 +msgid "BVR Horz. Delta (mm)" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.report.xml,name:l10n_ch.invoice_bvr +msgid "Invoice with BVR" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid ":" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Condition" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid ">" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "TVA:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bank_dta +msgid "Ordering party DTA" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_madame +#: model:res.partner.title,name:l10n_ch.res_partner_title_madame +msgid "Madame" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Concerne:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvpost +msgid "DTA-BVPOST" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#: code:addons/l10n_ch/wizard/dta_wizard.py:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +msgid "Subject:" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_societe +#: model:res.partner.title,name:l10n_ch.res_partner_title_societe +msgid "Société" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Quantity" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,dta_code:0 +msgid "DTA code" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.title,name:l10n_ch.res_c_partner_title_mlle +#: model:res.partner.title,name:l10n_ch.res_partner_title_mlle +msgid "Mademoiselle" +msgstr "" + +#. module: l10n_ch +#: model:ir.module.module,shortdesc:l10n_ch.module_meta_information +msgid "Switzerland localisation corrected by Camptocamp" +msgstr "" + +#. module: l10n_ch +#: field:account.journal.todo,default_debit_account_id:0 +msgid "Default Debit Account" +msgstr "" + +#. module: l10n_ch +#: help:account.journal.todo,default_credit_account_id:0 +msgid "The Default Credit Account of the account journal" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +msgid "The accounts linked to the account journals" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.wizard,name:l10n_ch.wizard_account_dta_create +msgid "Create DTA" +msgstr "" + +#. module: l10n_ch +#: field:res.partner.bank,post_number:0 +msgid "Post number" +msgstr "" + +#. module: l10n_ch +#: wizard_field:account.dta_create,init,dta:0 +msgid "DTA File" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Invoice" +msgstr "" + +#. module: l10n_ch +#: view:account.journal.todo:0 +#: wizard_button:l10n_ch.bvr_import,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.post_field_bvpost +msgid "post_number" +msgstr "" + +#. module: l10n_ch +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: l10n_ch +#: field:account.journal.todo,default_credit_account_id:0 +msgid "Default Credit Account" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Unit Price" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "(incl. taxes):" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Taxes:" +msgstr "" + +#. module: l10n_ch +#: code:addons/l10n_ch/wizard/bvr_import.py:0 +#, python-format +msgid "Too much total record found!" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Description" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Price" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Canceled Invoice" +msgstr "" + +#. module: l10n_ch +#: wizard_field:l10n_ch.bvr_import,init,file:0 +msgid "BVR file" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "1cm 25.7cm 7cm 25.7cm" +msgstr "" + +#. module: l10n_ch +#: wizard_view:account.dta_create,init:0 +msgid "Clic on 'Save as' to save the DTA file :" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.bvrbank +msgid "DTA-BVRBANK" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Total (excl. taxes):" +msgstr "" + +#. module: l10n_ch +#: help:res.company,bvr_delta_vert:0 +msgid "vert. delta in mm 1.2 will print the bvz 1.2mm lefter" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type,name:l10n_ch.dta_iban +msgid "DTA-IBAN" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.acc_num_field_bvbank +msgid "acc_number" +msgstr "" + +#. module: l10n_ch +#: field:res.company,bvr_delta_vert:0 +msgid "BVR Vert. Delta (mm)" +msgstr "" + +#. module: l10n_ch +#: model:ir.actions.todo,note:l10n_ch.action_config_journal_todo +msgid "Set accounts on financial journals defined by\n" +" Camptocamp l10n_ch module" +msgstr "" + +#. module: l10n_ch +#: help:res.company,bvr_delta_horz:0 +msgid "horiz. delta in mm 1.2 will print the bvz 1.2mm lefter" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.bvr:0 +#: rml:l10n_ch.invoice.bvr:0 +msgid "1cm 27.7cm 20cm 27.7cm" +msgstr "" + +#. module: l10n_ch +#: model:res.partner.bank.type.field,name:l10n_ch.bvr_num_field_bvrbank +#: model:res.partner.bank.type.field,name:l10n_ch.bvr_num_field_bvrpost +msgid "bvr_number" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Supplier Refund" +msgstr "" + +#. module: l10n_ch +#: rml:l10n_ch.invoice.bvr:0 +msgid "Total" +msgstr "" + diff --git a/addons/l10n_ch/i18n/tr_TR.po b/addons/l10n_ch/i18n/tr_TR.po index c765479d3bf..ead2d23e9fe 100644 --- a/addons/l10n_ch/i18n/tr_TR.po +++ b/addons/l10n_ch/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/uk_UK.po b/addons/l10n_ch/i18n/uk_UK.po index a456bacdd85..cf1c5cbf334 100644 --- a/addons/l10n_ch/i18n/uk_UK.po +++ b/addons/l10n_ch/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/zh_CN.po b/addons/l10n_ch/i18n/zh_CN.po index 43bb2b4d64c..f1ec7eb1d0a 100644 --- a/addons/l10n_ch/i18n/zh_CN.po +++ b/addons/l10n_ch/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/zh_TW.po b/addons/l10n_ch/i18n/zh_TW.po index a5762336934..fbd1f2bfb63 100644 --- a/addons/l10n_ch/i18n/zh_TW.po +++ b/addons/l10n_ch/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po index 54042ca94a4..e0fa8fc1e8e 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po b/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po index 103792fb654..6ebbe4de1ca 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po b/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po index 8a17bb64279..e67ee82248b 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po index 0a5f99e5a37..27c72e6696b 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po new file mode 100644 index 00000000000..7c33de5088d --- /dev/null +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po @@ -0,0 +1,269 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_ch_chart_c2c_pcg +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,account_paid_id:0 +msgid "Refund Tax Account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.todo,note:l10n_ch_chart_c2c_pcg.action_config_tax_todo +msgid "Set account on financial taxes defined by \n" +" Camptocamp l10n_ch_c2c_pcg module" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_adj_liability +msgid "Bilan : Passifs de regularisation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_intangible_asset +msgid "Bilan : Immo incorporelles" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "Next" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,name:0 +msgid "Tax to set" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_asset +msgid "Bilan : Immobilisations financieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "The accounts linked to the tax template" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_payable +msgid "Bilan : Autres creanciers à CT" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,account_collected_id:0 +msgid "You can set here the invoice tax account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_ope_exp +msgid "PP : Autres charges d'exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.module.module,description:l10n_ch_chart_c2c_pcg.module_meta_information +msgid "Swiws account chart that add also tax template definition" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_debts +msgid "Bilan : Dettes hors exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other +msgid "Autre : Other" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_prov_reserve +msgid "Bilan : Provisions et reserves" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_result +msgid "PP : Resultat financier" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_purchase +msgid "PP : Achat de marchandise" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_closed +msgid "Autre : Closed" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_equity +msgid "Bilan : Capitaux propres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_receivable +msgid "Bilan : Debiteurs" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.act_window,name:l10n_ch_chart_c2c_pcg.action_config_tax +msgid "Configure Journal" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_fixed_asset +msgid "Bilan : Immo corporelles mobilieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_cash +msgid "Bilan : Liquidites et titres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_asset +msgid "Bilan : Actifs hors exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_consolidation +msgid "Autre : Consolidation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_receivable +msgid "Bilan : Autres créances" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_payable +msgid "Bilan : Fournisseurs" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_adjusting_asset +msgid "Bilan : Actif de regularisation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.model,name:l10n_ch_chart_c2c_pcg.model_account_tax_template_todo +msgid "account.tax.template.todo" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_report_result +msgid "Bilan : Resultat reporte" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_income +msgid "PP : Chiffre d'affaires" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,account_paid_id:0 +msgid "You can set here the refund tax account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_depreciation +msgid "PP : Amortissement" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_result +msgid "PP : Resultat activites annexes" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.module.module,shortdesc:l10n_ch_chart_c2c_pcg.module_meta_information +msgid "Suisse - Plan comptable general pour PME STERCHI" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_view +msgid "Autre : Vue" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:account.account.template:0 +msgid "Error ! You can not create recursive account templates." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_lt_liability +msgid "Bilan : Dettes à LT" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_building_asset +msgid "Bilan : Immo corporelles immobilieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.todo,note:l10n_ch_chart_c2c_pcg.config_call_account_template_l10n_ch +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_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_inventory +msgid "Bilan : Stocks" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_closing +msgid "Autre : Cloture" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_personnal_exp +msgid "PP : Charge de personnel" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,name:0 +msgid "The tax template you are currently editing" +msgstr "" + diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po index 22408cf66cb..27ef5d84915 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po index 307c74b11a0..dc2ded71dfa 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po index f2e80b86cd3..3cccc45a5f1 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po b/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po index ec68d267569..69e1711259c 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po index 82a26500ec5..34054c9f2a8 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: l10n_ch_chart_c2c_pcg #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: l10n_ch_chart_c2c_pcg #: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_asset diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po index 2b68802b1f8..58ed2e8d7f4 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po index b831fde9466..9d7b1d1f167 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po b/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po index 1aef57b837b..044a80b2085 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po index 7860cd13e2c..71b873a8da1 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot b/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot index 02dcbc90880..27adf6804d7 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po index 85b8a74e3a8..1fd32768f35 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po index b0a04e888e8..1db988f9ec7 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po index 074df3b381b..3a0a02dad1a 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po index 19fbb3992c2..873e79be8c2 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po index 1a9377c2dce..5aa02845fe8 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po index ff3912a84d9..35ad525dfd5 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po index db57f8fa0c3..7fb47825cb4 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po index 559e1c4fc20..6592b142334 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po index 2a5e7bc1ac3..17b415517ff 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po index 7794d042235..a2f454fab10 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po new file mode 100644 index 00000000000..228b639b64c --- /dev/null +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po @@ -0,0 +1,269 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_ch_chart_c2c_pcg +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,account_paid_id:0 +msgid "Refund Tax Account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.todo,note:l10n_ch_chart_c2c_pcg.action_config_tax_todo +msgid "Set account on financial taxes defined by \n" +" Camptocamp l10n_ch_c2c_pcg module" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_adj_liability +msgid "Bilan : Passifs de regularisation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_intangible_asset +msgid "Bilan : Immo incorporelles" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "Next" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,name:0 +msgid "Tax to set" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_asset +msgid "Bilan : Immobilisations financieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "The accounts linked to the tax template" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_payable +msgid "Bilan : Autres creanciers à CT" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,account_collected_id:0 +msgid "You can set here the invoice tax account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_ope_exp +msgid "PP : Autres charges d'exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.module.module,description:l10n_ch_chart_c2c_pcg.module_meta_information +msgid "Swiws account chart that add also tax template definition" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_debts +msgid "Bilan : Dettes hors exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other +msgid "Autre : Other" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_prov_reserve +msgid "Bilan : Provisions et reserves" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_result +msgid "PP : Resultat financier" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_purchase +msgid "PP : Achat de marchandise" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_closed +msgid "Autre : Closed" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_equity +msgid "Bilan : Capitaux propres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_receivable +msgid "Bilan : Debiteurs" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.act_window,name:l10n_ch_chart_c2c_pcg.action_config_tax +msgid "Configure Journal" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_fixed_asset +msgid "Bilan : Immo corporelles mobilieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_cash +msgid "Bilan : Liquidites et titres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_asset +msgid "Bilan : Actifs hors exploitation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_consolidation +msgid "Autre : Consolidation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_other_receivable +msgid "Bilan : Autres créances" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_payable +msgid "Bilan : Fournisseurs" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_adjusting_asset +msgid "Bilan : Actif de regularisation" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.model,name:l10n_ch_chart_c2c_pcg.model_account_tax_template_todo +msgid "account.tax.template.todo" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_report_result +msgid "Bilan : Resultat reporte" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_income +msgid "PP : Chiffre d'affaires" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,account_paid_id:0 +msgid "You can set here the refund tax account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: field:account.tax.template.todo,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_depreciation +msgid "PP : Amortissement" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_non_ope_result +msgid "PP : Resultat activites annexes" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.module.module,shortdesc:l10n_ch_chart_c2c_pcg.module_meta_information +msgid "Suisse - Plan comptable general pour PME STERCHI" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_view +msgid "Autre : Vue" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: constraint:account.account.template:0 +msgid "Error ! You can not create recursive account templates." +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_lt_liability +msgid "Bilan : Dettes à LT" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_building_asset +msgid "Bilan : Immo corporelles immobilieres" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:ir.actions.todo,note:l10n_ch_chart_c2c_pcg.config_call_account_template_l10n_ch +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_ch_chart_c2c_pcg +#: view:account.tax.template.todo:0 +msgid "Cancel" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_inventory +msgid "Bilan : Stocks" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_closing +msgid "Autre : Cloture" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_personnal_exp +msgid "PP : Charge de personnel" +msgstr "" + +#. module: l10n_ch_chart_c2c_pcg +#: help:account.tax.template.todo,name:0 +msgid "The tax template you are currently editing" +msgstr "" + diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po index 8f3c28d263a..03d8e75f41d 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po b/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po index e9b5b2a21a7..838991f9aa5 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po index df6848ae4f4..66753b3ad88 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po index 640e3b4f795..8114a903df4 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ar_AR.po b/addons/l10n_chart_uk_minimal/i18n/ar_AR.po index b6392687ab0..7ae737b47b7 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ar_AR.po +++ b/addons/l10n_chart_uk_minimal/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/bg_BG.po b/addons/l10n_chart_uk_minimal/i18n/bg_BG.po index 2e9964c597b..cd5475ff55e 100644 --- a/addons/l10n_chart_uk_minimal/i18n/bg_BG.po +++ b/addons/l10n_chart_uk_minimal/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/bs_BS.po b/addons/l10n_chart_uk_minimal/i18n/bs_BS.po index 1f6475ea2f5..0b0c43ceeb0 100644 --- a/addons/l10n_chart_uk_minimal/i18n/bs_BS.po +++ b/addons/l10n_chart_uk_minimal/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ca_ES.po b/addons/l10n_chart_uk_minimal/i18n/ca_ES.po index 8e35417360c..69fd8779684 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ca_ES.po +++ b/addons/l10n_chart_uk_minimal/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/cs_CS.po b/addons/l10n_chart_uk_minimal/i18n/cs_CS.po index c630e67b0f4..56c3e0179f6 100644 --- a/addons/l10n_chart_uk_minimal/i18n/cs_CS.po +++ b/addons/l10n_chart_uk_minimal/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po b/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po index 0fad98b2808..8d0e3176f67 100644 --- a/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po +++ b/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/de_DE.po b/addons/l10n_chart_uk_minimal/i18n/de_DE.po index cdf372788bd..489694fe13d 100644 --- a/addons/l10n_chart_uk_minimal/i18n/de_DE.po +++ b/addons/l10n_chart_uk_minimal/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/es_AR.po b/addons/l10n_chart_uk_minimal/i18n/es_AR.po index 0d073987cc3..8d29645d475 100644 --- a/addons/l10n_chart_uk_minimal/i18n/es_AR.po +++ b/addons/l10n_chart_uk_minimal/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/es_ES.po b/addons/l10n_chart_uk_minimal/i18n/es_ES.po index 07fc6d8f44a..fc643c6f8c4 100644 --- a/addons/l10n_chart_uk_minimal/i18n/es_ES.po +++ b/addons/l10n_chart_uk_minimal/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/et_EE.po b/addons/l10n_chart_uk_minimal/i18n/et_EE.po index 066d98423d1..e680dd7339d 100644 --- a/addons/l10n_chart_uk_minimal/i18n/et_EE.po +++ b/addons/l10n_chart_uk_minimal/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/fr_FR.po b/addons/l10n_chart_uk_minimal/i18n/fr_FR.po index 6a1b0ed366d..2d2cf8039ea 100644 --- a/addons/l10n_chart_uk_minimal/i18n/fr_FR.po +++ b/addons/l10n_chart_uk_minimal/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/hr_HR.po b/addons/l10n_chart_uk_minimal/i18n/hr_HR.po index b1dc47a8941..3e2a997424f 100644 --- a/addons/l10n_chart_uk_minimal/i18n/hr_HR.po +++ b/addons/l10n_chart_uk_minimal/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/hu_HU.po b/addons/l10n_chart_uk_minimal/i18n/hu_HU.po index 2b5044e42d1..9af7a12f281 100644 --- a/addons/l10n_chart_uk_minimal/i18n/hu_HU.po +++ b/addons/l10n_chart_uk_minimal/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/it_IT.po b/addons/l10n_chart_uk_minimal/i18n/it_IT.po index b9c5b71968f..7f4ad718451 100644 --- a/addons/l10n_chart_uk_minimal/i18n/it_IT.po +++ b/addons/l10n_chart_uk_minimal/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_receivable msgid "Receivable" -msgstr "" +msgstr "Credito" #. module: l10n_chart_uk_minimal #: model:ir.module.module,description:l10n_chart_uk_minimal.module_meta_information @@ -38,12 +38,12 @@ msgstr "Entrata" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_tax msgid "Tax" -msgstr "" +msgstr "Imposte" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_cash msgid "Cash" -msgstr "" +msgstr "Contante" #. module: l10n_chart_uk_minimal #: model:ir.actions.todo,note:l10n_chart_uk_minimal.config_call_account_template_uk_minimal @@ -54,7 +54,7 @@ msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_payable msgid "Payable" -msgstr "" +msgstr "Debiti" #. module: l10n_chart_uk_minimal #: model:ir.module.module,shortdesc:l10n_chart_uk_minimal.module_meta_information @@ -74,7 +74,7 @@ msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_expense msgid "Expense" -msgstr "Spesa" +msgstr "Uscita" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_view 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 629aff32712..aa4d1ccfccd 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/lt_LT.po b/addons/l10n_chart_uk_minimal/i18n/lt_LT.po index bae33b2468b..b428a94df7e 100644 --- a/addons/l10n_chart_uk_minimal/i18n/lt_LT.po +++ b/addons/l10n_chart_uk_minimal/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/nl_BE.po b/addons/l10n_chart_uk_minimal/i18n/nl_BE.po index 5d015c27e40..731c24a4cd7 100644 --- a/addons/l10n_chart_uk_minimal/i18n/nl_BE.po +++ b/addons/l10n_chart_uk_minimal/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/nl_NL.po b/addons/l10n_chart_uk_minimal/i18n/nl_NL.po index b11ae5ef182..ad30b84afce 100644 --- a/addons/l10n_chart_uk_minimal/i18n/nl_NL.po +++ b/addons/l10n_chart_uk_minimal/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pl_PL.po b/addons/l10n_chart_uk_minimal/i18n/pl_PL.po index 78b2b359604..d5dc1962727 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pl_PL.po +++ b/addons/l10n_chart_uk_minimal/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pt_BR.po b/addons/l10n_chart_uk_minimal/i18n/pt_BR.po index 8fb9b1b2f46..252bb64bdc2 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pt_BR.po +++ b/addons/l10n_chart_uk_minimal/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pt_PT.po b/addons/l10n_chart_uk_minimal/i18n/pt_PT.po index 3ce5fdf5be9..4e14b06f3a0 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pt_PT.po +++ b/addons/l10n_chart_uk_minimal/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ro_RO.po b/addons/l10n_chart_uk_minimal/i18n/ro_RO.po index adfda7fc71b..7b87f4ed1fc 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ro_RO.po +++ b/addons/l10n_chart_uk_minimal/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ru_RU.po b/addons/l10n_chart_uk_minimal/i18n/ru_RU.po index 7ae367f234b..8d9d21cc934 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ru_RU.po +++ b/addons/l10n_chart_uk_minimal/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sl_SL.po b/addons/l10n_chart_uk_minimal/i18n/sl_SL.po index dab52146577..629bf2e3f52 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sl_SL.po +++ b/addons/l10n_chart_uk_minimal/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sv_SE.po b/addons/l10n_chart_uk_minimal/i18n/sv_SE.po index 4eaf99d4834..1287dbfaecc 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sv_SE.po +++ b/addons/l10n_chart_uk_minimal/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sv_SV.po b/addons/l10n_chart_uk_minimal/i18n/sv_SV.po index f1b9d0d1fea..20d76557819 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sv_SV.po +++ b/addons/l10n_chart_uk_minimal/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/tr_TR.po b/addons/l10n_chart_uk_minimal/i18n/tr_TR.po index 63322ffb32b..bf282b3a13b 100644 --- a/addons/l10n_chart_uk_minimal/i18n/tr_TR.po +++ b/addons/l10n_chart_uk_minimal/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/uk_UK.po b/addons/l10n_chart_uk_minimal/i18n/uk_UK.po index 605b6f53d2e..17be1c13951 100644 --- a/addons/l10n_chart_uk_minimal/i18n/uk_UK.po +++ b/addons/l10n_chart_uk_minimal/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/zh_CN.po b/addons/l10n_chart_uk_minimal/i18n/zh_CN.po index d597fccd8d3..3adc621a667 100644 --- a/addons/l10n_chart_uk_minimal/i18n/zh_CN.po +++ b/addons/l10n_chart_uk_minimal/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/zh_TW.po b/addons/l10n_chart_uk_minimal/i18n/zh_TW.po index 5b12e2f7f87..f960ccd9c03 100644 --- a/addons/l10n_chart_uk_minimal/i18n/zh_TW.po +++ b/addons/l10n_chart_uk_minimal/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ar_AR.po b/addons/l10n_fr/i18n/ar_AR.po index 864cb777514..00aefcfd380 100644 --- a/addons/l10n_fr/i18n/ar_AR.po +++ b/addons/l10n_fr/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/bg_BG.po b/addons/l10n_fr/i18n/bg_BG.po index 529c10cc6ce..c72ac7ebc84 100644 --- a/addons/l10n_fr/i18n/bg_BG.po +++ b/addons/l10n_fr/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/bs_BS.po b/addons/l10n_fr/i18n/bs_BS.po index e1aef01b221..472f860e6bf 100644 --- a/addons/l10n_fr/i18n/bs_BS.po +++ b/addons/l10n_fr/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ca_ES.po b/addons/l10n_fr/i18n/ca_ES.po index 12cd7d73af4..e8d08aa66da 100644 --- a/addons/l10n_fr/i18n/ca_ES.po +++ b/addons/l10n_fr/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/cs_CS.po b/addons/l10n_fr/i18n/cs_CS.po index 38d0e25cf38..eec5d57be8d 100644 --- a/addons/l10n_fr/i18n/cs_CS.po +++ b/addons/l10n_fr/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/cs_CZ.po b/addons/l10n_fr/i18n/cs_CZ.po index 319b5cd5751..76618b449e9 100644 --- a/addons/l10n_fr/i18n/cs_CZ.po +++ b/addons/l10n_fr/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/de_DE.po b/addons/l10n_fr/i18n/de_DE.po index 90463c04516..5d0cbaab787 100644 --- a/addons/l10n_fr/i18n/de_DE.po +++ b/addons/l10n_fr/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index c50ef657631..a1b19343596 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/es_ES.po b/addons/l10n_fr/i18n/es_ES.po index f5935533315..5ef9aa301e2 100644 --- a/addons/l10n_fr/i18n/es_ES.po +++ b/addons/l10n_fr/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/et_EE.po b/addons/l10n_fr/i18n/et_EE.po index 4577f7e9922..542b8be7381 100644 --- a/addons/l10n_fr/i18n/et_EE.po +++ b/addons/l10n_fr/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/fr_FR.po b/addons/l10n_fr/i18n/fr_FR.po index afe937228ab..345360b9020 100644 --- a/addons/l10n_fr/i18n/fr_FR.po +++ b/addons/l10n_fr/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/hr_HR.po b/addons/l10n_fr/i18n/hr_HR.po index 9ab83eed1cd..de1c36a1abf 100644 --- a/addons/l10n_fr/i18n/hr_HR.po +++ b/addons/l10n_fr/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/hu_HU.po b/addons/l10n_fr/i18n/hu_HU.po index 79366fa0bb8..22b9b76f6dc 100644 --- a/addons/l10n_fr/i18n/hu_HU.po +++ b/addons/l10n_fr/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/it_IT.po b/addons/l10n_fr/i18n/it_IT.po index ff0d8b801eb..3cb4df856b0 100644 --- a/addons/l10n_fr/i18n/it_IT.po +++ b/addons/l10n_fr/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Redevances de crédit-bail immobilier" -msgstr "" +msgstr "Compensi di leasing immobiliare" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "période du" -msgstr "" +msgstr "periodo da" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "Autres réserves" -msgstr "" +msgstr "Altre riserve" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -60,7 +60,7 @@ msgstr "" #: rml:l10n.fr.bilan:0 #: rml:l10n.fr.cdr:0 msgid "TOTAL III" -msgstr "" +msgstr "TOTALE !!!" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_asset @@ -75,7 +75,7 @@ msgstr "Entrata" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Charges sociales" -msgstr "" +msgstr "Oneri sociali" #. module: l10n_fr #: rml:l10n.fr.cdr:0 @@ -85,38 +85,38 @@ msgstr "" #. module: l10n_fr #: wizard_view:l10n.fr.bilan.report,init:0 msgid "Select year" -msgstr "" +msgstr "Seleziona anno" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Différences négatives de change" -msgstr "" +msgstr "Differenze negative di cambio" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Autres charges" -msgstr "" +msgstr "Altri oneri" #. module: l10n_fr #: rml:l10n.fr.bilan:0 #: rml:l10n.fr.cdr:0 msgid "Tenue de Compte :" -msgstr "" +msgstr "Tenuta di conto" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_payable msgid "Payable" -msgstr "" +msgstr "Debiti" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "( IV )" -msgstr "" +msgstr "IV" #. module: l10n_fr #: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_4 msgid "Hors Euro" -msgstr "" +msgstr "Fuori Euro" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -136,22 +136,22 @@ msgstr "" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "De participation" -msgstr "" +msgstr "Di partecipazione" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "TOTAL IV" -msgstr "" +msgstr "TOTALE IV" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "D" -msgstr "" +msgstr "D" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "PROVISIONS" -msgstr "" +msgstr "MISURE" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -161,82 +161,82 @@ msgstr "" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "Autres dettes" -msgstr "" +msgstr "Altri debiti" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "articipations" -msgstr "" +msgstr "anticipazioni" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "atières premières et autres approvisionnements" -msgstr "" +msgstr "materie prime ed altri approvvigionamenti" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "P" -msgstr "" +msgstr "P" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_stocks msgid "Actif circulant" -msgstr "" +msgstr "Attivo circolante" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "T" -msgstr "" +msgstr "T" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "Dettes fournisseurs et comptes rattachés" -msgstr "" +msgstr "Debiti fornitori e conti collegati" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "Provisions pour charges" -msgstr "" +msgstr "Accantonamenti per carichi" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_dettes msgid "Dettes long terme" -msgstr "" +msgstr "Debiti a lungo termine" #. module: l10n_fr #: wizard_view:l10n.fr.cdr.report,init:0 msgid "Select period" -msgstr "" +msgstr "Seleziona Periodo" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "RÉSERVES" -msgstr "" +msgstr "RISERVE" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "TOTAL GÉNÉRAL (I + II + III + IV)" -msgstr "" +msgstr "TOTALE GENERALE (I + II + III + IV)" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_tax msgid "Tax" -msgstr "" +msgstr "Imposte" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Dotations aux amortissements, aux dépréciations et aux provisions" -msgstr "" +msgstr "Dotazioni agli ammortamenti, ai deprezzamenti ed altre misure" #. module: l10n_fr #: rml:l10n.fr.cdr:0 msgid "Achats de matières premières et autres approvisionnements" -msgstr "" +msgstr "Acquisti di materie prime ed altri approvvigionamenti" #. module: l10n_fr #: rml:l10n.fr.bilan:0 msgid "Avances et acomptes reçus sur commandes en cours" -msgstr "" +msgstr "Anticipi e rate ricevuti su comandi in corso sviluppare" #. module: l10n_fr #: rml:l10n.fr.cdr:0 @@ -434,7 +434,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_expense msgid "Expense" -msgstr "Spesa" +msgstr "Uscita" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -767,7 +767,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_receivable msgid "Receivable" -msgstr "" +msgstr "Credito" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -932,7 +932,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_cash msgid "Cash" -msgstr "" +msgstr "Contante" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_special diff --git a/addons/l10n_fr/i18n/l10n_fr.pot b/addons/l10n_fr/i18n/l10n_fr.pot index 34f9fec3aa2..e87f5bef37c 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/lt_LT.po b/addons/l10n_fr/i18n/lt_LT.po index faa4d5e315a..3df50e183db 100644 --- a/addons/l10n_fr/i18n/lt_LT.po +++ b/addons/l10n_fr/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index 87dee27225c..219bdcfa34e 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/nl_NL.po b/addons/l10n_fr/i18n/nl_NL.po index a0e590bd1b1..ae147356aa8 100644 --- a/addons/l10n_fr/i18n/nl_NL.po +++ b/addons/l10n_fr/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pl_PL.po b/addons/l10n_fr/i18n/pl_PL.po index 1e22e7dc641..0d816e610ce 100644 --- a/addons/l10n_fr/i18n/pl_PL.po +++ b/addons/l10n_fr/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index d79f79080f2..c0896b14d87 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pt_PT.po b/addons/l10n_fr/i18n/pt_PT.po index 6e5afa594e1..419829f71db 100644 --- a/addons/l10n_fr/i18n/pt_PT.po +++ b/addons/l10n_fr/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ro_RO.po b/addons/l10n_fr/i18n/ro_RO.po index 901a79a915b..6f2d6912080 100644 --- a/addons/l10n_fr/i18n/ro_RO.po +++ b/addons/l10n_fr/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ru_RU.po b/addons/l10n_fr/i18n/ru_RU.po index bd6ab7e2c3d..68186ff5184 100644 --- a/addons/l10n_fr/i18n/ru_RU.po +++ b/addons/l10n_fr/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sl_SL.po b/addons/l10n_fr/i18n/sl_SL.po index f421a3c81ed..93a124de12b 100644 --- a/addons/l10n_fr/i18n/sl_SL.po +++ b/addons/l10n_fr/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sv_SE.po b/addons/l10n_fr/i18n/sv_SE.po index 3f51f196758..9d81896f796 100644 --- a/addons/l10n_fr/i18n/sv_SE.po +++ b/addons/l10n_fr/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sv_SV.po b/addons/l10n_fr/i18n/sv_SV.po index 0f19d5e28fe..24ec30e6fd5 100644 --- a/addons/l10n_fr/i18n/sv_SV.po +++ b/addons/l10n_fr/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/tr_TR.po b/addons/l10n_fr/i18n/tr_TR.po index 1fd6edb4c2e..53866874d4b 100644 --- a/addons/l10n_fr/i18n/tr_TR.po +++ b/addons/l10n_fr/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/uk_UK.po b/addons/l10n_fr/i18n/uk_UK.po index 57ae8fddfc1..d26e71bddca 100644 --- a/addons/l10n_fr/i18n/uk_UK.po +++ b/addons/l10n_fr/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index f4a1acabbe3..375baff57de 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index 7dc8bf5a551..7a8d4a8ad76 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ar_AR.po b/addons/l10n_lu/i18n/ar_AR.po index 617b0ea6474..e911a10d7f7 100644 --- a/addons/l10n_lu/i18n/ar_AR.po +++ b/addons/l10n_lu/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/bg_BG.po b/addons/l10n_lu/i18n/bg_BG.po index d635774b035..438133fa7a2 100644 --- a/addons/l10n_lu/i18n/bg_BG.po +++ b/addons/l10n_lu/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/bs_BS.po b/addons/l10n_lu/i18n/bs_BS.po index f646c65b10d..b1d3e4d35de 100644 --- a/addons/l10n_lu/i18n/bs_BS.po +++ b/addons/l10n_lu/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ca_ES.po b/addons/l10n_lu/i18n/ca_ES.po index dbf3b060504..bb1dbbbea95 100644 --- a/addons/l10n_lu/i18n/ca_ES.po +++ b/addons/l10n_lu/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/cs_CS.po b/addons/l10n_lu/i18n/cs_CS.po index 2d35dc8802e..a79d4497e43 100644 --- a/addons/l10n_lu/i18n/cs_CS.po +++ b/addons/l10n_lu/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/cs_CZ.po b/addons/l10n_lu/i18n/cs_CZ.po index 90f4b8340e3..5b023dac891 100644 --- a/addons/l10n_lu/i18n/cs_CZ.po +++ b/addons/l10n_lu/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/de_DE.po b/addons/l10n_lu/i18n/de_DE.po index 3f3ea297a2b..1570d1977d6 100644 --- a/addons/l10n_lu/i18n/de_DE.po +++ b/addons/l10n_lu/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index 94872e93219..9fe0c3b1c66 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/es_ES.po b/addons/l10n_lu/i18n/es_ES.po index c5b1596ab93..d80a85a5a0e 100644 --- a/addons/l10n_lu/i18n/es_ES.po +++ b/addons/l10n_lu/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/et_EE.po b/addons/l10n_lu/i18n/et_EE.po index 1ac57bb9a72..823db9c20ea 100644 --- a/addons/l10n_lu/i18n/et_EE.po +++ b/addons/l10n_lu/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/fr_FR.po b/addons/l10n_lu/i18n/fr_FR.po index 973d0d73044..cd09d11fa61 100644 --- a/addons/l10n_lu/i18n/fr_FR.po +++ b/addons/l10n_lu/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/hr_HR.po b/addons/l10n_lu/i18n/hr_HR.po index a43440429aa..087baf3ebfa 100644 --- a/addons/l10n_lu/i18n/hr_HR.po +++ b/addons/l10n_lu/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/hu_HU.po b/addons/l10n_lu/i18n/hu_HU.po index f22de7e1dee..7c835ccc0b6 100644 --- a/addons/l10n_lu/i18n/hu_HU.po +++ b/addons/l10n_lu/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/it_IT.po b/addons/l10n_lu/i18n/it_IT.po index 4607b3c5f22..a465768217d 100644 --- a/addons/l10n_lu/i18n/it_IT.po +++ b/addons/l10n_lu/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Entrata" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_cash_moves msgid "Cash" -msgstr "" +msgstr "Contante" #. module: l10n_lu #: model:ir.actions.todo,note:l10n_lu.config_call_account_template @@ -105,7 +105,7 @@ msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_expense msgid "Expense" -msgstr "Spesa" +msgstr "Uscita" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_creances diff --git a/addons/l10n_lu/i18n/l10n_lu.pot b/addons/l10n_lu/i18n/l10n_lu.pot index cfb3a121878..c756d4f4f42 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/lt_LT.po b/addons/l10n_lu/i18n/lt_LT.po index 4aa73af1a43..806ab5e9b60 100644 --- a/addons/l10n_lu/i18n/lt_LT.po +++ b/addons/l10n_lu/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index b2f454d9ce5..aa5201aba5b 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/nl_NL.po b/addons/l10n_lu/i18n/nl_NL.po index 6fdc9c99257..f3810c29a26 100644 --- a/addons/l10n_lu/i18n/nl_NL.po +++ b/addons/l10n_lu/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pl_PL.po b/addons/l10n_lu/i18n/pl_PL.po index d4455b8e6b4..dfcf8242687 100644 --- a/addons/l10n_lu/i18n/pl_PL.po +++ b/addons/l10n_lu/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index b721a275f47..3c933448d30 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pt_PT.po b/addons/l10n_lu/i18n/pt_PT.po index 382b6d219fd..b95125f9060 100644 --- a/addons/l10n_lu/i18n/pt_PT.po +++ b/addons/l10n_lu/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ro_RO.po b/addons/l10n_lu/i18n/ro_RO.po index eedcf5c8b1a..1109980081c 100644 --- a/addons/l10n_lu/i18n/ro_RO.po +++ b/addons/l10n_lu/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ru_RU.po b/addons/l10n_lu/i18n/ru_RU.po index 0e8ba810cd7..0329216133a 100644 --- a/addons/l10n_lu/i18n/ru_RU.po +++ b/addons/l10n_lu/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sl_SL.po b/addons/l10n_lu/i18n/sl_SL.po index 8574e1fa5bf..24971f79df0 100644 --- a/addons/l10n_lu/i18n/sl_SL.po +++ b/addons/l10n_lu/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sv_SE.po b/addons/l10n_lu/i18n/sv_SE.po index 09f0fb02869..21d890a3195 100644 --- a/addons/l10n_lu/i18n/sv_SE.po +++ b/addons/l10n_lu/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sv_SV.po b/addons/l10n_lu/i18n/sv_SV.po index 33baaafa601..532f67d8497 100644 --- a/addons/l10n_lu/i18n/sv_SV.po +++ b/addons/l10n_lu/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/tr_TR.po b/addons/l10n_lu/i18n/tr_TR.po index bee149ec3d1..1abd28c77c1 100644 --- a/addons/l10n_lu/i18n/tr_TR.po +++ b/addons/l10n_lu/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/uk_UK.po b/addons/l10n_lu/i18n/uk_UK.po index 5df39898cc2..cd568ef58e0 100644 --- a/addons/l10n_lu/i18n/uk_UK.po +++ b/addons/l10n_lu/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index ffb06901bd5..7ec8dbfd477 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index 03b3281f212..39599fc8347 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/ar_AR.po b/addons/membership/i18n/ar_AR.po index 1bc6486691c..e5a6f351a1b 100644 --- a/addons/membership/i18n/ar_AR.po +++ b/addons/membership/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/bg_BG.po b/addons/membership/i18n/bg_BG.po index 87041f66cd7..bbed800ce85 100644 --- a/addons/membership/i18n/bg_BG.po +++ b/addons/membership/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/bs_BS.po b/addons/membership/i18n/bs_BS.po index b2f45321fa5..bf4c090a471 100644 --- a/addons/membership/i18n/bs_BS.po +++ b/addons/membership/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/ca_ES.po b/addons/membership/i18n/ca_ES.po index c246f7df643..328c1d20cd0 100644 --- a/addons/membership/i18n/ca_ES.po +++ b/addons/membership/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "Associació empresa" msgid "Invoiced members" msgstr "Socis facturats" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Factura a soci" msgid "Membership product" msgstr "Producte per socis" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No podeu tenir 2 versions de tarifes que es superposin!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/cs_CS.po b/addons/membership/i18n/cs_CS.po index 33db474ba71..d1b7845db14 100644 --- a/addons/membership/i18n/cs_CS.po +++ b/addons/membership/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,6 +31,11 @@ msgstr "" msgid "Paid Member" msgstr "" +#. module: membership +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: membership #: field:report.partner_member.year,currency:0 #: field:report.partner_member.year_new,currency:0 @@ -87,6 +92,11 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: membership +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." +msgstr "" + #. module: membership #: field:product.product,membership_date_from:0 msgid "Date from" @@ -153,6 +163,12 @@ msgstr "" msgid "Start membership date" msgstr "" +#. module: membership +#: code:addons/membership/wizard/invoice_membership.py:0 +#, python-format +msgid "Error !" +msgstr "" + #. module: membership #: model:process.node,name:membership.process_node_paidmember0 msgid "Paid member" @@ -279,6 +295,11 @@ msgstr "" msgid "Associated member" msgstr "" +#. module: membership +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + #. module: membership #: field:res.partner,membership_cancel:0 msgid "Cancel membership date" @@ -340,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -434,6 +460,12 @@ msgstr "" msgid "Member Price" msgstr "" +#. module: membership +#: code:addons/membership/wizard/invoice_membership.py:0 +#, python-format +msgid "No Address defined for this partner" +msgstr "" + #. module: membership #: field:res.partner,free_member:0 msgid "Free member" @@ -483,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/cs_CZ.po b/addons/membership/i18n/cs_CZ.po index f18ca7b8d93..f7b3954c1a3 100644 --- a/addons/membership/i18n/cs_CZ.po +++ b/addons/membership/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/de_DE.po b/addons/membership/i18n/de_DE.po index bbdd4d2b1ad..82093237cc1 100644 --- a/addons/membership/i18n/de_DE.po +++ b/addons/membership/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "aufgenommener Partner" msgid "Invoiced members" msgstr "Abgerechnete Mitglieder" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Berechne Mitgliederbeitrag" msgid "Membership product" msgstr "Mitgliedschaft Produkt" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sie können keine sich zeitlich überlappende Versionen von Preislisten haben." - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index 02ba69bb5bb..d431fa54784 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/es_ES.po b/addons/membership/i18n/es_ES.po index f97def1395c..1a3f166566d 100644 --- a/addons/membership/i18n/es_ES.po +++ b/addons/membership/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "Asociación empresa" msgid "Invoiced members" msgstr "Socios facturados" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Facturar a socio" msgid "Membership product" msgstr "Producto para socios" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No puede tener 2 versiones de tarifas que se superpongan!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/et_EE.po b/addons/membership/i18n/et_EE.po index b4c2ff0eb3a..6f643657b74 100644 --- a/addons/membership/i18n/et_EE.po +++ b/addons/membership/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,23 +18,23 @@ msgstr "" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 msgid "invoice to associate" -msgstr "" +msgstr "arve osanikule" #. module: membership #: model:process.process,name:membership.process_process_membershipprocess0 msgid "Membership Process" -msgstr "" +msgstr "Liikmelisuse protsess" #. module: membership #: selection:membership.membership_line,state:0 #: selection:res.partner,membership_state:0 msgid "Paid Member" -msgstr "" +msgstr "Makstud liige" #. module: membership #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: membership #: field:report.partner_member.year,currency:0 @@ -45,52 +45,52 @@ msgstr "Valuuta" #. module: membership #: model:process.node,note:membership.process_node_setassociation0 msgid "Set an associate member of partner." -msgstr "" +msgstr "Sea partneri osanikliige" #. module: membership #: model:process.transition,note:membership.process_transition_invoicetopaid0 msgid "Invoice is be paid." -msgstr "" +msgstr "Arve tuleb maksta." #. module: membership #: model:process.node,note:membership.process_node_membershipproduct0 msgid "Define membership product." -msgstr "" +msgstr "Määratle liikmelisuse toode." #. module: membership #: field:product.product,membership_date_to:0 msgid "Date to" -msgstr "" +msgstr "Kuupäevani" #. module: membership #: model:process.transition,name:membership.process_transition_waitingtoinvoice0 msgid "Waiting to invoice" -msgstr "" +msgstr "Arveldamise ootel" #. module: membership #: model:process.transition,name:membership.process_transition_producttomember0 msgid "Product to member" -msgstr "" +msgstr "Toode liikmele" #. module: membership #: field:res.partner,associate_member:0 msgid "Associate member" -msgstr "" +msgstr "Osanikliige" #. module: membership #: model:process.node,note:membership.process_node_associatedmember0 msgid "Member is associated." -msgstr "" +msgstr "Liige on assotsieeritud." #. module: membership #: model:process.transition,note:membership.process_transition_associationpartner0 msgid "Associated partner." -msgstr "" +msgstr "Assotsieeritud partner." #. module: membership #: constraint:account.account:0 msgid "Error ! You can not create recursive accounts." -msgstr "" +msgstr "Viga! Sa ei saa luua rekursiivseid kontosid." #. module: membership #: constraint:account.invoice:0 @@ -100,23 +100,23 @@ msgstr "" #. module: membership #: field:product.product,membership_date_from:0 msgid "Date from" -msgstr "" +msgstr "Kuupäevast" #. module: membership #: field:membership.membership_line,partner:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_free #: model:ir.ui.menu,name:membership.menu_members_free msgid "Free members" -msgstr "" +msgstr "Tasuta liikmed" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetopaid0 msgid "Invoice to paid" -msgstr "" +msgstr "Makstav arve" #. module: membership #: view:res.partner:0 @@ -131,7 +131,7 @@ msgstr "Saatja" #. module: membership #: constraint:membership.membership_line:0 msgid "Error, this membership product is out of date" -msgstr "" +msgstr "Viga, see liikmelisuse toode on aegunud" #. module: membership #: wizard_button:wizard_invoice_membership,init,ok:0 @@ -141,7 +141,7 @@ msgstr "Kinnita" #. module: membership #: model:process.transition.action,name:membership.process_transition_action_create0 msgid "Create" -msgstr "" +msgstr "Loo" #. module: membership #: constraint:ir.ui.view:0 @@ -151,35 +151,35 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: membership #: model:ir.model,name:membership.model_membership_membership_line msgid "Member line" -msgstr "" +msgstr "Liikme rida" #. module: membership #: field:membership.membership_line,state:0 msgid "State" -msgstr "" +msgstr "Olek" #. module: membership #: field:res.partner,membership_start:0 msgid "Start membership date" -msgstr "" +msgstr "Liikmelisuse alguskuupäev" #. module: membership #: code:addons/membership/wizard/invoice_membership.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Viga !" #. module: membership #: model:process.node,name:membership.process_node_paidmember0 msgid "Paid member" -msgstr "" +msgstr "Makstud liige" #. module: membership #: model:ir.model,name:membership.model_report_partner_member_year #: model:ir.ui.menu,name:membership.menu_report_partner_member_year #: view:report.partner_member.year:0 msgid "Membership by Years" -msgstr "" +msgstr "Liikmelisus aastate kaupa" #. module: membership #: model:ir.ui.menu,name:membership.menu_reporting @@ -189,18 +189,18 @@ msgstr "Aruandlus" #. module: membership #: view:res.partner:0 msgid "Members" -msgstr "" +msgstr "Liikmed" #. module: membership #: selection:membership.membership_line,state:0 #: selection:res.partner,membership_state:0 msgid "Non Member" -msgstr "" +msgstr "Mitte liige" #. module: membership #: model:process.node,note:membership.process_node_invoicedmember0 msgid "Open invoice." -msgstr "" +msgstr "Lahtine arve." #. module: membership #: model:ir.ui.menu,name:membership.menu_conf @@ -210,43 +210,43 @@ msgstr "Seadistus" #. module: membership #: model:process.transition,note:membership.process_transition_producttomember0 msgid "Define product for membership." -msgstr "" +msgstr "Määratle toode liikmelisusele." #. module: membership #: model:process.transition,note:membership.process_transition_invoicetoassociate0 msgid "Invoiced member may be Associated member." -msgstr "" +msgstr "Arveldatud liige võib olla assotsieeritud liige." #. module: membership #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: membership #: model:ir.ui.menu,name:membership.menu_membership_products #: view:product.product:0 msgid "Membership products" -msgstr "" +msgstr "Liikmelisuse tooted" #. module: membership #: model:ir.ui.menu,name:membership.menu_members_waiting msgid "Future members (invoice not confirmed)" -msgstr "" +msgstr "Tulevased liikmed (arve kinnitamata)" #. module: membership #: model:process.node,name:membership.process_node_setassociation0 msgid "Set association" -msgstr "" +msgstr "Sea assotsiatsioon" #. module: membership #: model:product.template,name:membership.member_product_1_product_template msgid "Membership Product - 2" -msgstr "" +msgstr "Liikmelisuse toode - 2" #. module: membership #: model:product.template,name:membership.member_product_0_product_template msgid "Membership Product - 1" -msgstr "" +msgstr "Liikmelisuse toode - 1" #. module: membership #: field:report.partner_member.year,canceled_amount:0 @@ -254,12 +254,12 @@ msgstr "" #: field:report.partner_member.year_new,canceled_amount:0 #: field:report.partner_member.year_new,canceled_number:0 msgid "Canceled" -msgstr "" +msgstr "Tühistatud" #. module: membership #: model:product.pricelist,name:membership.list1m msgid "Member Sale Pricelist" -msgstr "" +msgstr "Liikme müügi hinnakiri" #. module: membership #: field:report.partner_member.year,invoiced_amount:0 @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,15 +515,10 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sul ei saa olla 2 hinnakirja versiooni mis kattuvad!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: membership #: field:report.partner_member.year,year:0 diff --git a/addons/membership/i18n/fr_FR.po b/addons/membership/i18n/fr_FR.po index 502dfc753b1..1c8f83ca84f 100644 --- a/addons/membership/i18n/fr_FR.po +++ b/addons/membership/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "Membres Facturés" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Vous en pouvez pas avoir 2 listes de prix avec des dates qui se chevauchent" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/hr_HR.po b/addons/membership/i18n/hr_HR.po index 3032ad79cba..6426b94d79d 100644 --- a/addons/membership/i18n/hr_HR.po +++ b/addons/membership/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/hu_HU.po b/addons/membership/i18n/hu_HU.po index 47f1f174221..4dabc818c4e 100644 --- a/addons/membership/i18n/hu_HU.po +++ b/addons/membership/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/it_IT.po b/addons/membership/i18n/it_IT.po index db908542f64..4714d04b58a 100644 --- a/addons/membership/i18n/it_IT.po +++ b/addons/membership/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "Membro per cui è stata emessa Fattura" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Fatturazione Iscrizione" msgid "Membership product" msgstr "Prodotto Iscrizione" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Non puoi avere due versioni dello stesso listino che si sovrappongono" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/lt_LT.po b/addons/membership/i18n/lt_LT.po index 8897a810f5d..7e9a77d8aa8 100644 --- a/addons/membership/i18n/lt_LT.po +++ b/addons/membership/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/membership.pot b/addons/membership/i18n/membership.pot index 5af09e643e5..c854de22c85 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index 090684a791a..d8ae0927691 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/nl_NL.po b/addons/membership/i18n/nl_NL.po index dcd835ac631..e7d0ece9304 100644 --- a/addons/membership/i18n/nl_NL.po +++ b/addons/membership/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Twee overlappende prijslijsten is niet mogelijk!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/pl_PL.po b/addons/membership/i18n/pl_PL.po index 74f28633de9..b70f979ad2c 100644 --- a/addons/membership/i18n/pl_PL.po +++ b/addons/membership/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index 9ad279b0512..2c04da50ce7 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter 2 listas de preços que sobrepoem!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/pt_PT.po b/addons/membership/i18n/pt_PT.po index c1d8d319817..49aab6721d3 100644 --- a/addons/membership/i18n/pt_PT.po +++ b/addons/membership/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "Membros facturados" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Facturar sociedade" msgid "Membership product" msgstr "Produto da sociedade" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter duas versões da lista de preços que se sobrepõem!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/ro_RO.po b/addons/membership/i18n/ro_RO.po index 7d89c9f1cd2..c57757569e8 100644 --- a/addons/membership/i18n/ro_RO.po +++ b/addons/membership/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/ru_RU.po b/addons/membership/i18n/ru_RU.po index ddf150e7d7b..fbffe61a578 100644 --- a/addons/membership/i18n/ru_RU.po +++ b/addons/membership/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "Члены, которым выставлены счета" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "Счет за членство" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Невозможно использовать 2 перекрывающиеся версии каталогов!" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/sl_SL.po b/addons/membership/i18n/sl_SL.po index 63ffce8a973..545348f6ca7 100644 --- a/addons/membership/i18n/sl_SL.po +++ b/addons/membership/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Ne morete imeti 2 različic cenika, ki se prekrivata." - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/sv_SE.po b/addons/membership/i18n/sv_SE.po index 791e1619014..4b4f38b64c9 100644 --- a/addons/membership/i18n/sv_SE.po +++ b/addons/membership/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/sv_SV.po b/addons/membership/i18n/sv_SV.po index 0f79c4c9fd0..535589f3a43 100644 --- a/addons/membership/i18n/sv_SV.po +++ b/addons/membership/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,6 +31,11 @@ msgstr "" msgid "Paid Member" msgstr "" +#. module: membership +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: membership #: field:report.partner_member.year,currency:0 #: field:report.partner_member.year_new,currency:0 @@ -87,6 +92,11 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: membership +#: constraint:account.invoice:0 +msgid "Error: BVR reference is required." +msgstr "" + #. module: membership #: field:product.product,membership_date_from:0 msgid "Date from" @@ -153,6 +163,12 @@ msgstr "" msgid "Start membership date" msgstr "" +#. module: membership +#: code:addons/membership/wizard/invoice_membership.py:0 +#, python-format +msgid "Error !" +msgstr "" + #. module: membership #: model:process.node,name:membership.process_node_paidmember0 msgid "Paid member" @@ -168,7 +184,7 @@ msgstr "" #. module: membership #: model:ir.ui.menu,name:membership.menu_reporting msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: membership #: view:res.partner:0 @@ -279,6 +295,11 @@ msgstr "" msgid "Associated member" msgstr "" +#. module: membership +#: constraint:account.invoice:0 +msgid "Error: Invalid Bvr Number (wrong checksum)." +msgstr "" + #. module: membership #: field:res.partner,membership_cancel:0 msgid "Cancel membership date" @@ -340,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -434,6 +460,12 @@ msgstr "" msgid "Member Price" msgstr "" +#. module: membership +#: code:addons/membership/wizard/invoice_membership.py:0 +#, python-format +msgid "No Address defined for this partner" +msgstr "" + #. module: membership #: field:res.partner,free_member:0 msgid "Free member" @@ -483,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/tr_TR.po b/addons/membership/i18n/tr_TR.po index 9f17ea2f0f5..b8ff7e4dd39 100644 --- a/addons/membership/i18n/tr_TR.po +++ b/addons/membership/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/uk_UK.po b/addons/membership/i18n/uk_UK.po index 3658cdca3f4..2bce4db3579 100644 --- a/addons/membership/i18n/uk_UK.po +++ b/addons/membership/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 686f06fe48b..5dfbcf4ec0b 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index 3ce5f946fe4..b71f21dd575 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -361,6 +361,11 @@ msgstr "" msgid "Invoiced members" msgstr "" +#. module: membership +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members_old #: model:ir.ui.menu,name:membership.menu_members_old @@ -510,11 +515,6 @@ msgstr "" msgid "Membership product" msgstr "" -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: membership #: constraint:product.product:0 msgid "Error: Invalid ean code" diff --git a/addons/mrp/i18n/ar_AR.po b/addons/mrp/i18n/ar_AR.po index 79d2800253d..395adda1e7a 100644 --- a/addons/mrp/i18n/ar_AR.po +++ b/addons/mrp/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/bg_BG.po b/addons/mrp/i18n/bg_BG.po index f6b977decfb..dfb8b54aa00 100644 --- a/addons/mrp/i18n/bg_BG.po +++ b/addons/mrp/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/bs_BS.po b/addons/mrp/i18n/bs_BS.po index 64aa9da298e..162a8a6751c 100644 --- a/addons/mrp/i18n/bs_BS.po +++ b/addons/mrp/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ca_ES.po b/addons/mrp/i18n/ca_ES.po index 1ffdb79a74d..33646deb71d 100644 --- a/addons/mrp/i18n/ca_ES.po +++ b/addons/mrp/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/cs_CS.po b/addons/mrp/i18n/cs_CS.po index cc314d98ce4..cddf0c55890 100644 --- a/addons/mrp/i18n/cs_CS.po +++ b/addons/mrp/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "Manufacturing Resource Planning" msgstr "" +#. module: mrp +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: mrp #: field:mrp.bom.revision,indice:0 msgid "Revision" @@ -53,13 +58,13 @@ msgid "Exceptions Procurements" msgstr "" #. module: mrp -#: view:mrp.routing.workcenter:0 -msgid "Routing Workcenters" +#: field:mrp.procurement,product_uos_qty:0 +msgid "UoS Quantity" msgstr "" #. module: mrp -#: rml:bom.structure:0 -msgid "UoM" +#: view:mrp.routing.workcenter:0 +msgid "Routing Workcenters" msgstr "" #. module: mrp @@ -83,6 +88,12 @@ msgstr "" msgid "Stockable Stock" msgstr "" +#. module: mrp +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Warning !" +msgstr "" + #. module: mrp #: field:mrp.procurement,origin:0 #: field:mrp.production,origin:0 @@ -177,7 +188,6 @@ msgstr "" #: wizard_field:change_production_qty,confirm,product_qty:0 #: field:mrp.bom,product_qty:0 #: field:mrp.production,product_qty:0 -#: field:mrp.production,product_uos_qty:0 #: field:mrp.production.product.line,product_qty:0 msgid "Product Qty" msgstr "" @@ -651,8 +661,10 @@ msgid "Per month" msgstr "" #. module: mrp -#: field:mrp.procurement,product_uos_qty:0 -msgid "UoS Quantity" +#: code:addons/mrp/mrp.py:0 +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Couldn't find bill of material for product" msgstr "" #. module: mrp @@ -888,6 +900,12 @@ msgstr "" msgid "Description of the workcenter. Explain here what's a cycle according to this workcenter." msgstr "" +#. module: mrp +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "The production is in \"%s\" state. You can not change the production quantity anymore" +msgstr "" + #. module: mrp #: rml:bom.structure:0 msgid "-" @@ -1053,6 +1071,11 @@ msgstr "" msgid "Nbr of hour" msgstr "" +#. module: mrp +#: view:mrp.procurement:0 +msgid "Notes" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_bom #: view:mrp.bom:0 @@ -1230,6 +1253,7 @@ msgid "Procurement for raw materials." msgstr "" #. module: mrp +#: view:mrp.procurement:0 #: field:mrp.procurement,note:0 #: rml:mrp.production.order:0 msgid "Note" @@ -1408,7 +1432,6 @@ msgstr "" #. module: mrp #: field:mrp.bom,product_uom:0 #: field:mrp.production,product_uom:0 -#: field:mrp.production,product_uos:0 #: field:mrp.production.product.line,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product UOM" @@ -1438,6 +1461,7 @@ msgstr "" #. module: mrp #: field:mrp.procurement,product_uos:0 +#: field:mrp.production,product_uos:0 msgid "Product UoS" msgstr "" @@ -1596,6 +1620,11 @@ msgstr "" msgid "Compute Procurements Only" msgstr "" +#. module: mrp +#: field:mrp.production,product_uos_qty:0 +msgid "Product UoS Qty" +msgstr "" + #. module: mrp #: rml:bom.structure:0 #: model:ir.actions.report.xml,name:mrp.report_bom_structure @@ -1839,6 +1868,13 @@ msgstr "" msgid "Order to Max" msgstr "" +#. module: mrp +#: code:addons/mrp/mrp.py:0 +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Error" +msgstr "" + #. module: mrp #: model:ir.actions.act_window,name:mrp.act_product_product_2_mrp_bom #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action diff --git a/addons/mrp/i18n/cs_CZ.po b/addons/mrp/i18n/cs_CZ.po index ce0edbc9608..d787d9a09cc 100644 --- a/addons/mrp/i18n/cs_CZ.po +++ b/addons/mrp/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/de_DE.po b/addons/mrp/i18n/de_DE.po index 19358437273..504713f6675 100644 --- a/addons/mrp/i18n/de_DE.po +++ b/addons/mrp/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index c6193059f2f..563fb357d50 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/es_ES.po b/addons/mrp/i18n/es_ES.po index 55632b59dfc..b4c8acdccbd 100644 --- a/addons/mrp/i18n/es_ES.po +++ b/addons/mrp/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/et_EE.po b/addons/mrp/i18n/et_EE.po index 8528ac17314..eb17f5354ef 100644 --- a/addons/mrp/i18n/et_EE.po +++ b/addons/mrp/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #. module: mrp #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: mrp #: field:mrp.bom.revision,indice:0 @@ -415,7 +415,7 @@ msgstr "" #. module: mrp #: field:mrp.procurement,move_id:0 msgid "Reservation" -msgstr "Reserveerimine" +msgstr "Reserveering" #. module: mrp #: model:ir.actions.act_window,name:mrp.action2 @@ -477,7 +477,7 @@ msgstr "" #. module: mrp #: field:mrp.routing,location_id:0 msgid "Production Location" -msgstr "Tootmise Asukoht" +msgstr "Tootmise asukoht" #. module: mrp #: view:mrp.production:0 @@ -687,7 +687,7 @@ msgstr "Prinimise kuupäev" #: model:process.node,name:mrp.process_node_orderrfq0 #: model:process.node,name:mrp.process_node_rfq0 msgid "RFQ" -msgstr "" +msgstr "Noteerimisnõue" #. module: mrp #: field:mrp.bom,revision_type:0 @@ -1435,7 +1435,7 @@ msgstr "Tooteühikute struktuur" #: field:mrp.production.product.line,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product UOM" -msgstr "Tooteühik" +msgstr "Toote MÜ" #. module: mrp #: help:mrp.procurement,origin:0 diff --git a/addons/mrp/i18n/fr_FR.po b/addons/mrp/i18n/fr_FR.po index 51ad1b41199..f480ae1f0c7 100644 --- a/addons/mrp/i18n/fr_FR.po +++ b/addons/mrp/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/hr_HR.po b/addons/mrp/i18n/hr_HR.po index 67262ae48fd..402655f67f5 100644 --- a/addons/mrp/i18n/hr_HR.po +++ b/addons/mrp/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/hu_HU.po b/addons/mrp/i18n/hu_HU.po index 1aafac89140..bdca817c9d4 100644 --- a/addons/mrp/i18n/hu_HU.po +++ b/addons/mrp/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/it_IT.po b/addons/mrp/i18n/it_IT.po index 37f14711b86..998889e3086 100644 --- a/addons/mrp/i18n/it_IT.po +++ b/addons/mrp/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/lt_LT.po b/addons/mrp/i18n/lt_LT.po index e17284c0de5..2fb1fa3da8a 100644 --- a/addons/mrp/i18n/lt_LT.po +++ b/addons/mrp/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+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 ea33cb3ceed..905232c3c75 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 363eb8bd5a5..27cf29d8a5c 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/nl_NL.po b/addons/mrp/i18n/nl_NL.po index aaf7364e56d..e6c5f7acd6b 100644 --- a/addons/mrp/i18n/nl_NL.po +++ b/addons/mrp/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pl_PL.po b/addons/mrp/i18n/pl_PL.po index ed84382d3c6..04a205d2a75 100644 --- a/addons/mrp/i18n/pl_PL.po +++ b/addons/mrp/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 633ccd77f25..f2a17a67d36 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pt_PT.po b/addons/mrp/i18n/pt_PT.po index 5e8684f8aa3..49fcfaa6693 100644 --- a/addons/mrp/i18n/pt_PT.po +++ b/addons/mrp/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ro_RO.po b/addons/mrp/i18n/ro_RO.po index cf21603d6e1..c6c18b6098a 100644 --- a/addons/mrp/i18n/ro_RO.po +++ b/addons/mrp/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ru_RU.po b/addons/mrp/i18n/ru_RU.po index 9f6b1d2bc97..79666c62236 100644 --- a/addons/mrp/i18n/ru_RU.po +++ b/addons/mrp/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/sl_SL.po b/addons/mrp/i18n/sl_SL.po index 372d01565d2..8d436b9fd3a 100644 --- a/addons/mrp/i18n/sl_SL.po +++ b/addons/mrp/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/sv_SE.po b/addons/mrp/i18n/sv_SE.po index af4ca703662..8fe5f05a801 100644 --- a/addons/mrp/i18n/sv_SE.po +++ b/addons/mrp/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/sv_SV.po b/addons/mrp/i18n/sv_SV.po index 3857a7d90b4..c0633a3ab48 100644 --- a/addons/mrp/i18n/sv_SV.po +++ b/addons/mrp/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "Manufacturing Resource Planning" msgstr "" +#. module: mrp +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: mrp #: field:mrp.bom.revision,indice:0 msgid "Revision" @@ -53,13 +58,13 @@ msgid "Exceptions Procurements" msgstr "" #. module: mrp -#: view:mrp.routing.workcenter:0 -msgid "Routing Workcenters" +#: field:mrp.procurement,product_uos_qty:0 +msgid "UoS Quantity" msgstr "" #. module: mrp -#: rml:bom.structure:0 -msgid "UoM" +#: view:mrp.routing.workcenter:0 +msgid "Routing Workcenters" msgstr "" #. module: mrp @@ -83,6 +88,12 @@ msgstr "" msgid "Stockable Stock" msgstr "" +#. module: mrp +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Warning !" +msgstr "" + #. module: mrp #: field:mrp.procurement,origin:0 #: field:mrp.production,origin:0 @@ -177,7 +188,6 @@ msgstr "" #: wizard_field:change_production_qty,confirm,product_qty:0 #: field:mrp.bom,product_qty:0 #: field:mrp.production,product_qty:0 -#: field:mrp.production,product_uos_qty:0 #: field:mrp.production.product.line,product_qty:0 msgid "Product Qty" msgstr "Produktkvantitet" @@ -651,8 +661,10 @@ msgid "Per month" msgstr "" #. module: mrp -#: field:mrp.procurement,product_uos_qty:0 -msgid "UoS Quantity" +#: code:addons/mrp/mrp.py:0 +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Couldn't find bill of material for product" msgstr "" #. module: mrp @@ -888,6 +900,12 @@ msgstr "" msgid "Description of the workcenter. Explain here what's a cycle according to this workcenter." msgstr "" +#. module: mrp +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "The production is in \"%s\" state. You can not change the production quantity anymore" +msgstr "" + #. module: mrp #: rml:bom.structure:0 msgid "-" @@ -1053,6 +1071,11 @@ msgstr "" msgid "Nbr of hour" msgstr "Antal timmar" +#. module: mrp +#: view:mrp.procurement:0 +msgid "Notes" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_bom #: view:mrp.bom:0 @@ -1230,6 +1253,7 @@ msgid "Procurement for raw materials." msgstr "" #. module: mrp +#: view:mrp.procurement:0 #: field:mrp.procurement,note:0 #: rml:mrp.production.order:0 msgid "Note" @@ -1408,7 +1432,6 @@ msgstr "" #. module: mrp #: field:mrp.bom,product_uom:0 #: field:mrp.production,product_uom:0 -#: field:mrp.production,product_uos:0 #: field:mrp.production.product.line,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product UOM" @@ -1438,6 +1461,7 @@ msgstr "" #. module: mrp #: field:mrp.procurement,product_uos:0 +#: field:mrp.production,product_uos:0 msgid "Product UoS" msgstr "" @@ -1596,6 +1620,11 @@ msgstr "" msgid "Compute Procurements Only" msgstr "" +#. module: mrp +#: field:mrp.production,product_uos_qty:0 +msgid "Product UoS Qty" +msgstr "" + #. module: mrp #: rml:bom.structure:0 #: model:ir.actions.report.xml,name:mrp.report_bom_structure @@ -1839,6 +1868,13 @@ msgstr "" msgid "Order to Max" msgstr "" +#. module: mrp +#: code:addons/mrp/mrp.py:0 +#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 +#, python-format +msgid "Error" +msgstr "" + #. module: mrp #: model:ir.actions.act_window,name:mrp.act_product_product_2_mrp_bom #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action diff --git a/addons/mrp/i18n/tr_TR.po b/addons/mrp/i18n/tr_TR.po index 66b8eb837a2..29594bab13c 100644 --- a/addons/mrp/i18n/tr_TR.po +++ b/addons/mrp/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/uk_UK.po b/addons/mrp/i18n/uk_UK.po index ca36a462704..fc0c98fedae 100644 --- a/addons/mrp/i18n/uk_UK.po +++ b/addons/mrp/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 7fb29df7845..b89ab7d0912 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 277ae3957c4..1659c7f7485 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ar_AR.po b/addons/mrp_jit/i18n/ar_AR.po index 8fad6e7534a..34ac8493c03 100644 --- a/addons/mrp_jit/i18n/ar_AR.po +++ b/addons/mrp_jit/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/bg_BG.po b/addons/mrp_jit/i18n/bg_BG.po index 4485af4616e..d1df9ae650d 100644 --- a/addons/mrp_jit/i18n/bg_BG.po +++ b/addons/mrp_jit/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/bs_BS.po b/addons/mrp_jit/i18n/bs_BS.po index ce329ac8bae..0c5694eac03 100644 --- a/addons/mrp_jit/i18n/bs_BS.po +++ b/addons/mrp_jit/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ca_ES.po b/addons/mrp_jit/i18n/ca_ES.po index 609fff76941..e7b577559cf 100644 --- a/addons/mrp_jit/i18n/ca_ES.po +++ b/addons/mrp_jit/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/cs_CS.po b/addons/mrp_jit/i18n/cs_CS.po index 607e3ac6765..071331ace9a 100644 --- a/addons/mrp_jit/i18n/cs_CS.po +++ b/addons/mrp_jit/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/cs_CZ.po b/addons/mrp_jit/i18n/cs_CZ.po index 72a3d78deef..5617663e8b8 100644 --- a/addons/mrp_jit/i18n/cs_CZ.po +++ b/addons/mrp_jit/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/de_DE.po b/addons/mrp_jit/i18n/de_DE.po index ccc51a8e166..b84d5e78392 100644 --- a/addons/mrp_jit/i18n/de_DE.po +++ b/addons/mrp_jit/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index 11e13c1e4cf..7edc54574bb 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/es_ES.po b/addons/mrp_jit/i18n/es_ES.po index 4b5f125f9be..073ebbc3d92 100644 --- a/addons/mrp_jit/i18n/es_ES.po +++ b/addons/mrp_jit/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/et_EE.po b/addons/mrp_jit/i18n/et_EE.po index f66e3841931..4f3bf8a9db5 100644 --- a/addons/mrp_jit/i18n/et_EE.po +++ b/addons/mrp_jit/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information msgid "MRP JIT" -msgstr "" +msgstr "MRP JIT" diff --git a/addons/mrp_jit/i18n/fr_FR.po b/addons/mrp_jit/i18n/fr_FR.po index c5000735331..e88d4cdfbb1 100644 --- a/addons/mrp_jit/i18n/fr_FR.po +++ b/addons/mrp_jit/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/hr_HR.po b/addons/mrp_jit/i18n/hr_HR.po index b9a7a532482..d11c27d1667 100644 --- a/addons/mrp_jit/i18n/hr_HR.po +++ b/addons/mrp_jit/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/hu_HU.po b/addons/mrp_jit/i18n/hu_HU.po index 813c4e2eba6..c0d732cc2ed 100644 --- a/addons/mrp_jit/i18n/hu_HU.po +++ b/addons/mrp_jit/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/it_IT.po b/addons/mrp_jit/i18n/it_IT.po index 983f2facb8b..aeb2bd1fb21 100644 --- a/addons/mrp_jit/i18n/it_IT.po +++ b/addons/mrp_jit/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/lt_LT.po b/addons/mrp_jit/i18n/lt_LT.po index 445db0ef4e2..a4fbdb64caa 100644 --- a/addons/mrp_jit/i18n/lt_LT.po +++ b/addons/mrp_jit/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/mrp_jit.pot b/addons/mrp_jit/i18n/mrp_jit.pot index 6172015e5a0..914b5ca7276 100644 --- a/addons/mrp_jit/i18n/mrp_jit.pot +++ b/addons/mrp_jit/i18n/mrp_jit.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index 19f81c9ae64..bb3059b1f33 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/nl_NL.po b/addons/mrp_jit/i18n/nl_NL.po index 81bcf6edc3b..e25b342d100 100644 --- a/addons/mrp_jit/i18n/nl_NL.po +++ b/addons/mrp_jit/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pl_PL.po b/addons/mrp_jit/i18n/pl_PL.po index 2a46c1cbe40..95f2f12073d 100644 --- a/addons/mrp_jit/i18n/pl_PL.po +++ b/addons/mrp_jit/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index fcaa6ed8ada..2bc84ecbe92 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pt_PT.po b/addons/mrp_jit/i18n/pt_PT.po index f9a85aff054..1a104d20b0a 100644 --- a/addons/mrp_jit/i18n/pt_PT.po +++ b/addons/mrp_jit/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ro_RO.po b/addons/mrp_jit/i18n/ro_RO.po index 273ea33d715..cc82979ee02 100644 --- a/addons/mrp_jit/i18n/ro_RO.po +++ b/addons/mrp_jit/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ru_RU.po b/addons/mrp_jit/i18n/ru_RU.po index 6bd8850d757..e5d68a3fcce 100644 --- a/addons/mrp_jit/i18n/ru_RU.po +++ b/addons/mrp_jit/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sl_SL.po b/addons/mrp_jit/i18n/sl_SL.po index 86a73ddc1ab..df0d166f3c6 100644 --- a/addons/mrp_jit/i18n/sl_SL.po +++ b/addons/mrp_jit/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sv_SE.po b/addons/mrp_jit/i18n/sv_SE.po index 9d8a6e12506..1bb572c8cc7 100644 --- a/addons/mrp_jit/i18n/sv_SE.po +++ b/addons/mrp_jit/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sv_SV.po b/addons/mrp_jit/i18n/sv_SV.po index 20e86963566..c5185b73c83 100644 --- a/addons/mrp_jit/i18n/sv_SV.po +++ b/addons/mrp_jit/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/tr_TR.po b/addons/mrp_jit/i18n/tr_TR.po index 8a76d87dd9b..71a34b44537 100644 --- a/addons/mrp_jit/i18n/tr_TR.po +++ b/addons/mrp_jit/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/uk_UK.po b/addons/mrp_jit/i18n/uk_UK.po index 2f0d2d66fa1..4bf19c43578 100644 --- a/addons/mrp_jit/i18n/uk_UK.po +++ b/addons/mrp_jit/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index 8a87d2bf30f..d22b5f7c2b1 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 9bd79ea6d60..462fdeefdde 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ar_AR.po b/addons/mrp_operations/i18n/ar_AR.po index 19ac7fef256..94f522ea548 100644 --- a/addons/mrp_operations/i18n/ar_AR.po +++ b/addons/mrp_operations/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/bg_BG.po b/addons/mrp_operations/i18n/bg_BG.po index b1306e4a181..9f5dd4bc683 100644 --- a/addons/mrp_operations/i18n/bg_BG.po +++ b/addons/mrp_operations/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/bs_BS.po b/addons/mrp_operations/i18n/bs_BS.po index 0441ade7eab..7a680bc6532 100644 --- a/addons/mrp_operations/i18n/bs_BS.po +++ b/addons/mrp_operations/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ca_ES.po b/addons/mrp_operations/i18n/ca_ES.po index 84ec91a1af4..ad76d31dc5c 100644 --- a/addons/mrp_operations/i18n/ca_ES.po +++ b/addons/mrp_operations/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/cs_CS.po b/addons/mrp_operations/i18n/cs_CS.po index ed0e2fb22aa..e89124d72f8 100644 --- a/addons/mrp_operations/i18n/cs_CS.po +++ b/addons/mrp_operations/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -99,6 +99,11 @@ msgstr "" msgid "Work Center" msgstr "" +#. module: mrp_operations +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action msgid "Work Order Events Using Bar Codes" diff --git a/addons/mrp_operations/i18n/cs_CZ.po b/addons/mrp_operations/i18n/cs_CZ.po index 36405cf6533..0b57ec344db 100644 --- a/addons/mrp_operations/i18n/cs_CZ.po +++ b/addons/mrp_operations/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/de_DE.po b/addons/mrp_operations/i18n/de_DE.po index ed31ba85ff0..943c17238bc 100644 --- a/addons/mrp_operations/i18n/de_DE.po +++ b/addons/mrp_operations/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index e8624a08e18..b657942aed9 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/es_ES.po b/addons/mrp_operations/i18n/es_ES.po index 465d44a146d..9a1ef676225 100644 --- a/addons/mrp_operations/i18n/es_ES.po +++ b/addons/mrp_operations/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/et_EE.po b/addons/mrp_operations/i18n/et_EE.po index 5300a9ee528..b5a7454bbcc 100644 --- a/addons/mrp_operations/i18n/et_EE.po +++ b/addons/mrp_operations/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Alusta tööd" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action msgid "Operations Code" -msgstr "" +msgstr "Operatsioonide kood" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 @@ -66,7 +66,7 @@ msgstr "Töökorraldust ei saa alustada [%s] staatusest" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operation Process" -msgstr "" +msgstr "TVP operatsioonide protsess" #. module: mrp_operations #: field:mrp.production.workcenter.line,state:0 @@ -102,7 +102,7 @@ msgstr "Töökeskus" #. module: mrp_operations #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action @@ -138,7 +138,7 @@ msgstr "Tootmisoperatsiooni kood" #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format msgid " You cannot Resume the operation other then Pause state !" -msgstr "" +msgstr " Sa ei saa jätkata operatsiooni muus kui peatatud olekus !" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_productionstart0 @@ -169,7 +169,7 @@ msgstr "(" #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_draft_action #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_draft_action msgid "Future Work Orders" -msgstr "" +msgstr "Tulevased töökorraldused" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode @@ -209,7 +209,7 @@ msgstr "Lõpetatud" #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form #: view:mrp.production.workcenter.line:0 msgid "Work Orders" -msgstr "" +msgstr "Töökorraldused" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_start:0 @@ -252,7 +252,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_operations_operation_code msgid "mrp_operations.operation.code" -msgstr "" +msgstr "mrp_operations.operation.code" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 @@ -290,7 +290,7 @@ msgstr "Viga!" #. module: mrp_operations #: field:mrp.production.workcenter.line,production_state:0 msgid "Prod.State" -msgstr "" +msgstr "Tootmise olek" #. module: mrp_operations #: field:mrp_operations.operation,order_date:0 @@ -344,7 +344,7 @@ msgstr "Kood" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action msgid "Confirmed Work Orders" -msgstr "" +msgstr "Kinnitatud töökorraldused" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_confirm_action @@ -386,7 +386,7 @@ msgstr "Kogus" #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action msgid "All Work Orders" -msgstr "" +msgstr "Kõik töökorraldused" #. module: mrp_operations #: view:mrp_operations.operation:0 @@ -396,18 +396,18 @@ msgstr "Tootmise operatsioon" #. module: mrp_operations #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" -msgstr "Valmis" +msgstr "Tehtud" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_operations_operation msgid "mrp_operations.operation" -msgstr "" +msgstr "mrp_operations.operation" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Cancel" -msgstr "Loobu" +msgstr "Tühista" #. module: mrp_operations #: selection:mrp.production.workcenter.line,state:0 diff --git a/addons/mrp_operations/i18n/fr_FR.po b/addons/mrp_operations/i18n/fr_FR.po index ba48390f611..b3b70cddf52 100644 --- a/addons/mrp_operations/i18n/fr_FR.po +++ b/addons/mrp_operations/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/hr_HR.po b/addons/mrp_operations/i18n/hr_HR.po index 9eae1373b4a..941530d8145 100644 --- a/addons/mrp_operations/i18n/hr_HR.po +++ b/addons/mrp_operations/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/hu_HU.po b/addons/mrp_operations/i18n/hu_HU.po index b2413785f3a..1bd5795ffab 100644 --- a/addons/mrp_operations/i18n/hu_HU.po +++ b/addons/mrp_operations/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/it_IT.po b/addons/mrp_operations/i18n/it_IT.po index 33d591576e9..03b0145d5a8 100644 --- a/addons/mrp_operations/i18n/it_IT.po +++ b/addons/mrp_operations/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/lt_LT.po b/addons/mrp_operations/i18n/lt_LT.po index 5ca900613f3..55ecc0af047 100644 --- a/addons/mrp_operations/i18n/lt_LT.po +++ b/addons/mrp_operations/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index b41a23abd7c..a3ae84e03df 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index 4527426d899..6bc9a88eb54 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/nl_NL.po b/addons/mrp_operations/i18n/nl_NL.po index 07e627d35a8..d0fd7f603a9 100644 --- a/addons/mrp_operations/i18n/nl_NL.po +++ b/addons/mrp_operations/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pl_PL.po b/addons/mrp_operations/i18n/pl_PL.po index b323719c21a..1343304bd27 100644 --- a/addons/mrp_operations/i18n/pl_PL.po +++ b/addons/mrp_operations/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index d5b6a67422c..2b2306b5dc4 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pt_PT.po b/addons/mrp_operations/i18n/pt_PT.po index ec2ebe102ce..a2b66a9f4e2 100644 --- a/addons/mrp_operations/i18n/pt_PT.po +++ b/addons/mrp_operations/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ro_RO.po b/addons/mrp_operations/i18n/ro_RO.po index 2828abe2cd5..c142c06c81e 100644 --- a/addons/mrp_operations/i18n/ro_RO.po +++ b/addons/mrp_operations/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ru_RU.po b/addons/mrp_operations/i18n/ru_RU.po index 2bd54df5f7d..528d5136c3a 100644 --- a/addons/mrp_operations/i18n/ru_RU.po +++ b/addons/mrp_operations/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sl_SL.po b/addons/mrp_operations/i18n/sl_SL.po index c6f4cb11501..3d70596b132 100644 --- a/addons/mrp_operations/i18n/sl_SL.po +++ b/addons/mrp_operations/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sv_SE.po b/addons/mrp_operations/i18n/sv_SE.po index 30ff30b7227..c15d99a09fe 100644 --- a/addons/mrp_operations/i18n/sv_SE.po +++ b/addons/mrp_operations/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sv_SV.po b/addons/mrp_operations/i18n/sv_SV.po index 189a0fe6b3a..33faa5fa66d 100644 --- a/addons/mrp_operations/i18n/sv_SV.po +++ b/addons/mrp_operations/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -99,6 +99,11 @@ msgstr "" msgid "Work Center" msgstr "" +#. module: mrp_operations +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action msgid "Work Order Events Using Bar Codes" diff --git a/addons/mrp_operations/i18n/tr_TR.po b/addons/mrp_operations/i18n/tr_TR.po index 4b2d9c521bb..9df03367a36 100644 --- a/addons/mrp_operations/i18n/tr_TR.po +++ b/addons/mrp_operations/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/uk_UK.po b/addons/mrp_operations/i18n/uk_UK.po index cb1e9be495e..23e69e11d11 100644 --- a/addons/mrp_operations/i18n/uk_UK.po +++ b/addons/mrp_operations/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index 25ebbe98d05..5662e36ce2e 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index 995c168fe92..a1fa865e371 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ar_AR.po b/addons/mrp_repair/i18n/ar_AR.po index f2b4621c043..177ba730409 100644 --- a/addons/mrp_repair/i18n/ar_AR.po +++ b/addons/mrp_repair/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/bg_BG.po b/addons/mrp_repair/i18n/bg_BG.po index baef2a33e85..07ce32a8c28 100644 --- a/addons/mrp_repair/i18n/bg_BG.po +++ b/addons/mrp_repair/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/bs_BS.po b/addons/mrp_repair/i18n/bs_BS.po index 3f3db7ff41a..152ac5ac7cf 100644 --- a/addons/mrp_repair/i18n/bs_BS.po +++ b/addons/mrp_repair/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ca_ES.po b/addons/mrp_repair/i18n/ca_ES.po index c75907d901b..1fa20accae1 100644 --- a/addons/mrp_repair/i18n/ca_ES.po +++ b/addons/mrp_repair/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/cs_CS.po b/addons/mrp_repair/i18n/cs_CS.po index ec05f9b1b42..8705627ffe6 100644 --- a/addons/mrp_repair/i18n/cs_CS.po +++ b/addons/mrp_repair/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,8 +32,8 @@ msgid "Inventory Move" msgstr "" #. module: mrp_repair -#: view:mrp.repair:0 -msgid "Recreate Invoice" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: mrp_repair @@ -152,6 +152,11 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: mrp_repair +#: view:mrp.repair:0 +msgid "Recreate Invoice" +msgstr "" + #. module: mrp_repair #: view:mrp.repair:0 msgid "Repairs order" @@ -324,6 +329,12 @@ msgstr "" msgid "Invoiced" msgstr "" +#. module: mrp_repair +#: code:addons/mrp_repair/mrp_repair.py:0 +#, python-format +msgid "You have to select a partner in the repair form !" +msgstr "" + #. module: mrp_repair #: wizard_button:mrp.repair.cancel,display,end:0 msgid "No" @@ -646,3 +657,9 @@ msgstr "" msgid "Ready to Repair" msgstr "" +#. module: mrp_repair +#: code:addons/mrp_repair/mrp_repair.py:0 +#, python-format +msgid "No partner !" +msgstr "" + diff --git a/addons/mrp_repair/i18n/cs_CZ.po b/addons/mrp_repair/i18n/cs_CZ.po index 4724088da66..6044e8abbf0 100644 --- a/addons/mrp_repair/i18n/cs_CZ.po +++ b/addons/mrp_repair/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/de_DE.po b/addons/mrp_repair/i18n/de_DE.po index b270b1c503e..e4f7c266dcd 100644 --- a/addons/mrp_repair/i18n/de_DE.po +++ b/addons/mrp_repair/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index 58d24c403fb..b41b0511bf3 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/es_ES.po b/addons/mrp_repair/i18n/es_ES.po index cf6486d959d..cee56ed9483 100644 --- a/addons/mrp_repair/i18n/es_ES.po +++ b/addons/mrp_repair/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/et_EE.po b/addons/mrp_repair/i18n/et_EE.po index 1c60f8c178a..3d00a788b41 100644 --- a/addons/mrp_repair/i18n/et_EE.po +++ b/addons/mrp_repair/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,12 +29,12 @@ msgstr "Remonditellimuse viide" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 msgid "Inventory Move" -msgstr "" +msgstr "Inventuuri liikumine" #. module: mrp_repair #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: mrp_repair #: view:mrp.repair:0 @@ -98,7 +98,7 @@ msgstr "Garantiiaeg" #: field:mrp.repair.fee,tax_id:0 #: field:mrp.repair.line,tax_id:0 msgid "Taxes" -msgstr "" +msgstr "Maksud" #. module: mrp_repair #: rml:repair.order:0 @@ -211,7 +211,7 @@ msgstr "Alusta remonti" #. module: mrp_repair #: field:mrp.repair.line,product_uom_qty:0 msgid "Quantity (UoM)" -msgstr "Kogus (mõõtühik)" +msgstr "Kogus (MÜ)" #. module: mrp_repair #: field:mrp.repair.fee,to_invoice:0 @@ -264,7 +264,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: mrp_repair #: help:mrp.repair,guarantee_limit:0 msgid "The garantee limit is computed as: last move date + warranty defined on selected product. If the current date is below the garantee limit, each operation and fee you will add will be set as 'not to invoiced' by default. Note that you can change manually afterwards." -msgstr "" +msgstr "Garantiilimiit on arvutatud nii: viimase liikumise kuupäev + määratletud garantii valitud tootel. Kui käesolev kuupäev on allpool garantiilimiiti siis iga lisatav operatsioon ja tasu seatakse vaikimisi 'mitte arveldada'. Sa saad seda hiljem käsitsi muuta." #. module: mrp_repair #: view:mrp.repair:0 @@ -305,7 +305,7 @@ msgstr "Kogusumma" #. module: mrp_repair #: selection:mrp.repair.line,state:0 msgid "Canceled" -msgstr "Loobutud" +msgstr "Tühistatud" #. module: mrp_repair #: selection:mrp.repair,invoice_method:0 @@ -327,13 +327,13 @@ msgstr "Jah" #: field:mrp.repair.fee,invoiced:0 #: field:mrp.repair.line,invoiced:0 msgid "Invoiced" -msgstr "Arve tegemine" +msgstr "Arveldatud" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:0 #, python-format msgid "You have to select a partner in the repair form !" -msgstr "" +msgstr "Sa pead valima partneri remondi vormil!" #. module: mrp_repair #: wizard_button:mrp.repair.cancel,display,end:0 @@ -371,7 +371,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: mrp_repair #: field:mrp.repair,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "Maksustamatta summa" +msgstr "Maksustamata summa" #. module: mrp_repair #: field:mrp.repair.line,state:0 @@ -455,7 +455,7 @@ msgstr "Valmis" #: model:ir.actions.act_window,name:mrp_repair.action_repair_2binvoiced_tree #: model:ir.ui.menu,name:mrp_repair.menu_repair_2binvoiced msgid "Repairs to be invoiced" -msgstr "Remondid arvete tegemiseks" +msgstr "Remondid arveldamiseks" #. module: mrp_repair #: field:mrp.repair,invoice_id:0 @@ -496,12 +496,12 @@ msgstr "Tarnea asukoht" #. module: mrp_repair #: model:ir.module.module,shortdesc:mrp_repair.module_meta_information msgid "Products Repairs Module" -msgstr "" +msgstr "Toodete remondi moodul" #. module: mrp_repair #: help:mrp.repair,invoice_method:0 msgid "This field allow you to change the workflow of the repair order. If value selected is different from 'No Invoice', it also allow you to select the pricelist and invoicing address." -msgstr "" +msgstr "See väli võimaldab sul muuta remondikorralduse töövoogu. Kui valitud väärtus pole 'Arveta' siis võimaldab see sul valida hinnakirja ja arveldamise aadressi." #. module: mrp_repair #: field:mrp.repair.fee,price_unit:0 @@ -661,5 +661,5 @@ msgstr "Valmis remondiks" #: code:addons/mrp_repair/mrp_repair.py:0 #, python-format msgid "No partner !" -msgstr "" +msgstr "Partner puudub!" diff --git a/addons/mrp_repair/i18n/fr_FR.po b/addons/mrp_repair/i18n/fr_FR.po index 46fba0fce23..cd78a1bf789 100644 --- a/addons/mrp_repair/i18n/fr_FR.po +++ b/addons/mrp_repair/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/hr_HR.po b/addons/mrp_repair/i18n/hr_HR.po index b7324fc90c7..850a1405d5a 100644 --- a/addons/mrp_repair/i18n/hr_HR.po +++ b/addons/mrp_repair/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/hu_HU.po b/addons/mrp_repair/i18n/hu_HU.po index c05b8a120bd..fd4589185b4 100644 --- a/addons/mrp_repair/i18n/hu_HU.po +++ b/addons/mrp_repair/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/it_IT.po b/addons/mrp_repair/i18n/it_IT.po index e537525f8d1..fb8b2ebf8cd 100644 --- a/addons/mrp_repair/i18n/it_IT.po +++ b/addons/mrp_repair/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/lt_LT.po b/addons/mrp_repair/i18n/lt_LT.po index 45248efde1c..5493cbe2ae0 100644 --- a/addons/mrp_repair/i18n/lt_LT.po +++ b/addons/mrp_repair/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/mrp_repair.pot b/addons/mrp_repair/i18n/mrp_repair.pot index 167da377144..2e0e6ae61f1 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index cf3cde564a2..e1d6da181d3 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/nl_NL.po b/addons/mrp_repair/i18n/nl_NL.po index fbb66711f1d..4eee0c08051 100644 --- a/addons/mrp_repair/i18n/nl_NL.po +++ b/addons/mrp_repair/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pl_PL.po b/addons/mrp_repair/i18n/pl_PL.po index ca745c2da4a..1c38589ae7f 100644 --- a/addons/mrp_repair/i18n/pl_PL.po +++ b/addons/mrp_repair/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index 863915ab401..92c91a39c6f 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pt_PT.po b/addons/mrp_repair/i18n/pt_PT.po index f3ebd62650c..61d6a508195 100644 --- a/addons/mrp_repair/i18n/pt_PT.po +++ b/addons/mrp_repair/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ro_RO.po b/addons/mrp_repair/i18n/ro_RO.po index 45dc9aaa025..50b01493506 100644 --- a/addons/mrp_repair/i18n/ro_RO.po +++ b/addons/mrp_repair/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ru_RU.po b/addons/mrp_repair/i18n/ru_RU.po index 31728a9e1e9..1442de193a4 100644 --- a/addons/mrp_repair/i18n/ru_RU.po +++ b/addons/mrp_repair/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sl_SL.po b/addons/mrp_repair/i18n/sl_SL.po index a192d759b3b..5435bfed399 100644 --- a/addons/mrp_repair/i18n/sl_SL.po +++ b/addons/mrp_repair/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sv_SE.po b/addons/mrp_repair/i18n/sv_SE.po index 9dee72044e0..24775284d51 100644 --- a/addons/mrp_repair/i18n/sv_SE.po +++ b/addons/mrp_repair/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sv_SV.po b/addons/mrp_repair/i18n/sv_SV.po index efe2bbfd41b..7e74c3fc456 100644 --- a/addons/mrp_repair/i18n/sv_SV.po +++ b/addons/mrp_repair/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,8 +32,8 @@ msgid "Inventory Move" msgstr "" #. module: mrp_repair -#: view:mrp.repair:0 -msgid "Recreate Invoice" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: mrp_repair @@ -152,6 +152,11 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: mrp_repair +#: view:mrp.repair:0 +msgid "Recreate Invoice" +msgstr "" + #. module: mrp_repair #: view:mrp.repair:0 msgid "Repairs order" @@ -324,6 +329,12 @@ msgstr "" msgid "Invoiced" msgstr "" +#. module: mrp_repair +#: code:addons/mrp_repair/mrp_repair.py:0 +#, python-format +msgid "You have to select a partner in the repair form !" +msgstr "" + #. module: mrp_repair #: wizard_button:mrp.repair.cancel,display,end:0 msgid "No" @@ -646,3 +657,9 @@ msgstr "" msgid "Ready to Repair" msgstr "" +#. module: mrp_repair +#: code:addons/mrp_repair/mrp_repair.py:0 +#, python-format +msgid "No partner !" +msgstr "" + diff --git a/addons/mrp_repair/i18n/tr_TR.po b/addons/mrp_repair/i18n/tr_TR.po index d46b131c12c..863f26194ec 100644 --- a/addons/mrp_repair/i18n/tr_TR.po +++ b/addons/mrp_repair/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/uk_UK.po b/addons/mrp_repair/i18n/uk_UK.po index 7b25df35506..45ece62de8d 100644 --- a/addons/mrp_repair/i18n/uk_UK.po +++ b/addons/mrp_repair/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index 26c4e47b7d2..013c1b9987d 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index 82c3726c1aa..a7026c58e46 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ar_AR.po b/addons/mrp_subproduct/i18n/ar_AR.po index 624073e5b0a..41b86c18665 100644 --- a/addons/mrp_subproduct/i18n/ar_AR.po +++ b/addons/mrp_subproduct/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/bg_BG.po b/addons/mrp_subproduct/i18n/bg_BG.po index 2e427408e92..58b9d8b8851 100644 --- a/addons/mrp_subproduct/i18n/bg_BG.po +++ b/addons/mrp_subproduct/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/bs_BS.po b/addons/mrp_subproduct/i18n/bs_BS.po index d5a15f843e9..a8d92c47938 100644 --- a/addons/mrp_subproduct/i18n/bs_BS.po +++ b/addons/mrp_subproduct/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ca_ES.po b/addons/mrp_subproduct/i18n/ca_ES.po index 70f607b478e..1d4a87332c0 100644 --- a/addons/mrp_subproduct/i18n/ca_ES.po +++ b/addons/mrp_subproduct/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/cs_CS.po b/addons/mrp_subproduct/i18n/cs_CS.po index 5621c4a759b..4c033ec9b40 100644 --- a/addons/mrp_subproduct/i18n/cs_CS.po +++ b/addons/mrp_subproduct/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Mrp Sub Product" msgstr "" +#. module: mrp_subproduct +#: field:mrp.subproduct,subproduct_type:0 +msgid "Quantity Type" +msgstr "" + #. module: mrp_subproduct #: field:mrp.subproduct,product_qty:0 msgid "Product Qty" @@ -60,11 +65,21 @@ msgstr "" msgid "Sub Products" msgstr "" +#. module: mrp_subproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Variable" +msgstr "" + #. module: mrp_subproduct #: field:mrp.bom,sub_products:0 msgid "sub_products" msgstr "" +#. module: mrp_subproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Fixed" +msgstr "" + #. module: mrp_subproduct #: model:ir.module.module,shortdesc:mrp_subproduct.module_meta_information msgid "MRP Sub Product" diff --git a/addons/mrp_subproduct/i18n/cs_CZ.po b/addons/mrp_subproduct/i18n/cs_CZ.po index e4e2e5dd85c..9fe285cdd96 100644 --- a/addons/mrp_subproduct/i18n/cs_CZ.po +++ b/addons/mrp_subproduct/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/de_DE.po b/addons/mrp_subproduct/i18n/de_DE.po index 287159e9777..87da02e0445 100644 --- a/addons/mrp_subproduct/i18n/de_DE.po +++ b/addons/mrp_subproduct/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/es_AR.po b/addons/mrp_subproduct/i18n/es_AR.po index 18e60c5fb8f..e85ec74b66a 100644 --- a/addons/mrp_subproduct/i18n/es_AR.po +++ b/addons/mrp_subproduct/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/es_ES.po b/addons/mrp_subproduct/i18n/es_ES.po index 6a6ceb5d8d4..2ac852a2326 100644 --- a/addons/mrp_subproduct/i18n/es_ES.po +++ b/addons/mrp_subproduct/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/et_EE.po b/addons/mrp_subproduct/i18n/et_EE.po index 00902f72ab8..4511e617f03 100644 --- a/addons/mrp_subproduct/i18n/et_EE.po +++ b/addons/mrp_subproduct/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,60 +28,60 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: mrp_subproduct #: view:mrp.bom:0 msgid "sub products" -msgstr "" +msgstr "alamtooted" #. module: mrp_subproduct #: field:mrp.subproduct,product_id:0 msgid "Product" -msgstr "" +msgstr "Toode" #. module: mrp_subproduct #: model:ir.model,name:mrp_subproduct.model_mrp_subproduct msgid "Mrp Sub Product" -msgstr "" +msgstr "TVP alamtoode" #. module: mrp_subproduct #: field:mrp.subproduct,subproduct_type:0 msgid "Quantity Type" -msgstr "" +msgstr "Koguse tüüp" #. module: mrp_subproduct #: field:mrp.subproduct,product_qty:0 msgid "Product Qty" -msgstr "" +msgstr "Toote kogus" #. module: mrp_subproduct #: field:mrp.subproduct,product_uom:0 msgid "Product UOM" -msgstr "" +msgstr "Toote MõÜ" #. module: mrp_subproduct #: field:mrp.subproduct,bom_id:0 msgid "BoM" -msgstr "" +msgstr "Materjaliandmik" #. module: mrp_subproduct #: view:mrp.bom:0 msgid "Sub Products" -msgstr "" +msgstr "Alamtooted" #. module: mrp_subproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Variable" -msgstr "" +msgstr "Muutuv" #. module: mrp_subproduct #: field:mrp.bom,sub_products:0 msgid "sub_products" -msgstr "" +msgstr "sub_products" #. module: mrp_subproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Fixed" -msgstr "" +msgstr "Fikseeritud" #. module: mrp_subproduct #: model:ir.module.module,shortdesc:mrp_subproduct.module_meta_information msgid "MRP Sub Product" -msgstr "" +msgstr "TVP alamtoode" diff --git a/addons/mrp_subproduct/i18n/fr_FR.po b/addons/mrp_subproduct/i18n/fr_FR.po index 8bbe2408b37..4d02b4dc91b 100644 --- a/addons/mrp_subproduct/i18n/fr_FR.po +++ b/addons/mrp_subproduct/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/hr_HR.po b/addons/mrp_subproduct/i18n/hr_HR.po index 5a5fe585e87..341390cb678 100644 --- a/addons/mrp_subproduct/i18n/hr_HR.po +++ b/addons/mrp_subproduct/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/hu_HU.po b/addons/mrp_subproduct/i18n/hu_HU.po index 7f4b187f005..4deb2621123 100644 --- a/addons/mrp_subproduct/i18n/hu_HU.po +++ b/addons/mrp_subproduct/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/it_IT.po b/addons/mrp_subproduct/i18n/it_IT.po index 848d2328935..a8a9f9e1246 100644 --- a/addons/mrp_subproduct/i18n/it_IT.po +++ b/addons/mrp_subproduct/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/lt_LT.po b/addons/mrp_subproduct/i18n/lt_LT.po index 1e6b7d40e55..ad91c4d074b 100644 --- a/addons/mrp_subproduct/i18n/lt_LT.po +++ b/addons/mrp_subproduct/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+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 5f45b5c8bf8..784f44df7fc 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/nl_BE.po b/addons/mrp_subproduct/i18n/nl_BE.po index b6f85d4c9d9..0f218b51820 100644 --- a/addons/mrp_subproduct/i18n/nl_BE.po +++ b/addons/mrp_subproduct/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/nl_NL.po b/addons/mrp_subproduct/i18n/nl_NL.po index 3a60a205e98..bbca620ccbc 100644 --- a/addons/mrp_subproduct/i18n/nl_NL.po +++ b/addons/mrp_subproduct/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pl_PL.po b/addons/mrp_subproduct/i18n/pl_PL.po index ac8a38b0840..9b68745f972 100644 --- a/addons/mrp_subproduct/i18n/pl_PL.po +++ b/addons/mrp_subproduct/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pt_BR.po b/addons/mrp_subproduct/i18n/pt_BR.po index 9c6c6ce48a5..db65f569dd0 100644 --- a/addons/mrp_subproduct/i18n/pt_BR.po +++ b/addons/mrp_subproduct/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pt_PT.po b/addons/mrp_subproduct/i18n/pt_PT.po index 39af8658a57..ecb07d6af72 100644 --- a/addons/mrp_subproduct/i18n/pt_PT.po +++ b/addons/mrp_subproduct/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ro_RO.po b/addons/mrp_subproduct/i18n/ro_RO.po index 60581a9eaa2..e85b5ffa455 100644 --- a/addons/mrp_subproduct/i18n/ro_RO.po +++ b/addons/mrp_subproduct/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ru_RU.po b/addons/mrp_subproduct/i18n/ru_RU.po index f190089fbfe..b9df1a98bd3 100644 --- a/addons/mrp_subproduct/i18n/ru_RU.po +++ b/addons/mrp_subproduct/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sl_SL.po b/addons/mrp_subproduct/i18n/sl_SL.po index 632566d616a..2f8e61a51ef 100644 --- a/addons/mrp_subproduct/i18n/sl_SL.po +++ b/addons/mrp_subproduct/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sv_SE.po b/addons/mrp_subproduct/i18n/sv_SE.po index 42559a981f9..6eb26ad93ad 100644 --- a/addons/mrp_subproduct/i18n/sv_SE.po +++ b/addons/mrp_subproduct/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sv_SV.po b/addons/mrp_subproduct/i18n/sv_SV.po index 50221c430bf..d647d92745b 100644 --- a/addons/mrp_subproduct/i18n/sv_SV.po +++ b/addons/mrp_subproduct/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Mrp Sub Product" msgstr "" +#. module: mrp_subproduct +#: field:mrp.subproduct,subproduct_type:0 +msgid "Quantity Type" +msgstr "" + #. module: mrp_subproduct #: field:mrp.subproduct,product_qty:0 msgid "Product Qty" @@ -60,11 +65,21 @@ msgstr "" msgid "Sub Products" msgstr "" +#. module: mrp_subproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Variable" +msgstr "" + #. module: mrp_subproduct #: field:mrp.bom,sub_products:0 msgid "sub_products" msgstr "" +#. module: mrp_subproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Fixed" +msgstr "" + #. module: mrp_subproduct #: model:ir.module.module,shortdesc:mrp_subproduct.module_meta_information msgid "MRP Sub Product" diff --git a/addons/mrp_subproduct/i18n/tr_TR.po b/addons/mrp_subproduct/i18n/tr_TR.po index b6cb2f2762f..70e3be29cb3 100644 --- a/addons/mrp_subproduct/i18n/tr_TR.po +++ b/addons/mrp_subproduct/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/uk_UK.po b/addons/mrp_subproduct/i18n/uk_UK.po index ead5c357c0c..284e190c44f 100644 --- a/addons/mrp_subproduct/i18n/uk_UK.po +++ b/addons/mrp_subproduct/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/zh_CN.po b/addons/mrp_subproduct/i18n/zh_CN.po index e10203a87c3..30cd91de52f 100644 --- a/addons/mrp_subproduct/i18n/zh_CN.po +++ b/addons/mrp_subproduct/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/zh_TW.po b/addons/mrp_subproduct/i18n/zh_TW.po index f06d512f23a..94751637f50 100644 --- a/addons/mrp_subproduct/i18n/zh_TW.po +++ b/addons/mrp_subproduct/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/ar_AR.po b/addons/point_of_sale/i18n/ar_AR.po index 272782bb8c4..042f9fd2e7f 100644 --- a/addons/point_of_sale/i18n/ar_AR.po +++ b/addons/point_of_sale/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/bg_BG.po b/addons/point_of_sale/i18n/bg_BG.po index 14c7a5a88b5..d4cba0ce002 100644 --- a/addons/point_of_sale/i18n/bg_BG.po +++ b/addons/point_of_sale/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/bs_BS.po b/addons/point_of_sale/i18n/bs_BS.po index 93a4e9644cb..de3a92bb4a9 100644 --- a/addons/point_of_sale/i18n/bs_BS.po +++ b/addons/point_of_sale/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/ca_ES.po b/addons/point_of_sale/i18n/ca_ES.po index 914892cb565..cc901e040d2 100644 --- a/addons/point_of_sale/i18n/ca_ES.po +++ b/addons/point_of_sale/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/cs_CS.po b/addons/point_of_sale/i18n/cs_CS.po index 6abfc2d86df..b76f41ffcb9 100644 --- a/addons/point_of_sale/i18n/cs_CS.po +++ b/addons/point_of_sale/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -47,6 +47,11 @@ msgstr "" msgid "Piece number" msgstr "" +#. module: point_of_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: point_of_sale #: field:pos.order,name:0 msgid "Order Description" @@ -67,14 +72,20 @@ msgstr "" msgid "Add product :" msgstr "" +#. module: point_of_sale +#: rml:pos.lines:0 +msgid "Net Total" +msgstr "" + #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree2 msgid "Orders of the day" msgstr "" #. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary -msgid "Sales (summary)" +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No Pricelist !" msgstr "" #. module: point_of_sale @@ -82,14 +93,20 @@ msgstr "" msgid "Select an Open Sale Order" msgstr "" +#. module: point_of_sale +#: rml:pos.lines:0 +msgid "Company" +msgstr "" + #. module: point_of_sale #: rml:pos.invoice:0 msgid "Invoice Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "," +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "Cannot create invoice without a partner." msgstr "" #. module: point_of_sale @@ -163,17 +180,14 @@ msgid "Sale line" msgstr "" #. module: point_of_sale -#: rml:pos.invoice:0 -#: field:pos.payment,amount:0 -#: wizard_field:pos.payment,ask_pay,amount:0 -#: field:report.transaction.pos,amount:0 -msgid "Amount" +#: rml:pos.lines:0 +msgid "No. Of Articles" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: code:addons/point_of_sale/report/pos_invoice.py:0 +#, python-format +msgid "Please create an invoice for this sale." msgstr "" #. module: point_of_sale @@ -189,6 +203,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 +#: rml:pos.lines:0 msgid "VAT" msgstr "" @@ -227,11 +242,6 @@ msgstr "" msgid "Disc" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Journal:" -msgstr "" - #. module: point_of_sale #: rml:pos.invoice:0 msgid "Fax :" @@ -323,13 +333,15 @@ msgid "Qty" msgstr "" #. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Sold" +#: model:ir.module.module,shortdesc:point_of_sale.module_meta_information +msgid "Point Of Sale" msgstr "" #. module: point_of_sale -#: model:ir.module.module,shortdesc:point_of_sale.module_meta_information -msgid "Point Of Sale" +#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/report/pos_invoice.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: point_of_sale @@ -378,11 +390,6 @@ msgstr "" msgid "Default journal" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Product Name" -msgstr "" - #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format @@ -431,6 +438,12 @@ msgstr "" msgid "Default journals" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No valid pricelist line found !" +msgstr "" + #. module: point_of_sale #: rml:pos.invoice:0 msgid "Draft Invoice" @@ -466,6 +479,12 @@ msgstr "" msgid "Define default journals" msgstr "" +#. module: point_of_sale +#: field:pos.order,amount_paid:0 +#: field:pos.order,amount_return:0 +msgid "unknown" +msgstr "" + #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree2 #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree3 @@ -492,11 +511,6 @@ msgstr "" msgid "Tel :" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total No. of Articles" -msgstr "" - #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal_rebate:0 msgid "Default rebate journal" @@ -512,6 +526,17 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No order lines defined for this sale." +msgstr "" + +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "," +msgstr "" + #. module: point_of_sale #: wizard_button:pos.scan_product,init,add:0 msgid "Add" @@ -527,11 +552,6 @@ msgstr "" msgid "Paid" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Taxes" -msgstr "" - #. module: point_of_sale #: rml:pos.invoice:0 msgid "VAT :" @@ -559,9 +579,9 @@ msgid "Sales of the day" msgstr "" #. module: point_of_sale -#: field:pos.order,amount_paid:0 -#: field:pos.order,amount_return:0 -msgid "unknown" +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "Please provide a partner for the sale." msgstr "" #. module: point_of_sale @@ -596,7 +616,6 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 -#: rml:pos.lines:0 #: field:report.transaction.pos,date_create:0 msgid "Date" msgstr "" @@ -615,8 +634,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid ":" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -646,6 +665,12 @@ msgstr "" msgid "Picking" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 +#, python-format +msgid "You can't modify this order. It has already been paid" +msgstr "" + #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format @@ -660,6 +685,7 @@ msgstr "" #. module: point_of_sale #: wizard_field:pos.add_product,init,quantity:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: field:pos.order.line,qty:0 msgid "Quantity" msgstr "" @@ -681,13 +707,9 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Paid" +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" msgstr "" #. module: point_of_sale @@ -844,6 +866,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid ":" +msgstr "" + #. module: point_of_sale #: field:pos.config.journal,journal_id:0 #: field:pos.order,sale_journal:0 @@ -904,11 +931,6 @@ msgstr "" msgid "Sale Order" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Name" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_month msgid "Sales of the month" @@ -934,6 +956,17 @@ msgstr "" msgid "Payments" msgstr "" +#. module: point_of_sale +#: rml:pos.invoice:0 +msgid "Supplier Refund" +msgstr "" + +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 @@ -943,11 +976,17 @@ msgstr "" #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: field:pos.payment,name:0 #: rml:pos.receipt:0 msgid "Description" msgstr "" +#. module: point_of_sale +#: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary +msgid "Sales (summary)" +msgstr "" + #. module: point_of_sale #: field:pos.order,account_move:0 msgid "Account Entry" @@ -960,9 +999,11 @@ msgid "Payment Term" msgstr "" #. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Mode of Taxes" +#: rml:pos.invoice:0 +#: field:pos.payment,amount:0 +#: wizard_field:pos.payment,ask_pay,amount:0 +#: field:report.transaction.pos,amount:0 +msgid "Amount" msgstr "" #. module: point_of_sale @@ -973,23 +1014,28 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 -#: rml:pos.lines:0 +msgid "Mode of Taxes" +msgstr "" + +#. module: point_of_sale +#: rml:pos.details:0 +#: rml:pos.details_summary:0 msgid "Print Date:" msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 -#: rml:pos.lines:0 msgid "Company:" msgstr "" #. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Supplier Refund" +#: rml:pos.lines:0 +msgid "Print Date" msgstr "" #. module: point_of_sale +#: rml:pos.lines:0 #: field:pos.order,amount_total:0 msgid "Total" msgstr "" @@ -997,6 +1043,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: rml:pos.receipt:0 msgid "Price" msgstr "" diff --git a/addons/point_of_sale/i18n/cs_CZ.po b/addons/point_of_sale/i18n/cs_CZ.po index 80cbd958c28..91d4e8ca9e3 100644 --- a/addons/point_of_sale/i18n/cs_CZ.po +++ b/addons/point_of_sale/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/de_DE.po b/addons/point_of_sale/i18n/de_DE.po index 439b8b03057..ca24fa8a7df 100644 --- a/addons/point_of_sale/i18n/de_DE.po +++ b/addons/point_of_sale/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 334ef27734d..a15c759d495 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/es_ES.po b/addons/point_of_sale/i18n/es_ES.po index 5733521b96d..5188f51efb6 100644 --- a/addons/point_of_sale/i18n/es_ES.po +++ b/addons/point_of_sale/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/et_EE.po b/addons/point_of_sale/i18n/et_EE.po index 9c011b0c034..036b78b0544 100644 --- a/addons/point_of_sale/i18n/et_EE.po +++ b/addons/point_of_sale/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "Tüki number" #. module: point_of_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: point_of_sale #: field:pos.order,name:0 @@ -75,7 +75,7 @@ msgstr "Lisa toode :" #. module: point_of_sale #: rml:pos.lines:0 msgid "Net Total" -msgstr "" +msgstr "Netosumma" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree2 @@ -86,7 +86,7 @@ msgstr "Päevatellimused" #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "No Pricelist !" -msgstr "" +msgstr "Puudub hinnakiri !" #. module: point_of_sale #: wizard_view:pos.sale.get,init:0 @@ -96,7 +96,7 @@ msgstr "Vali Avatud Müügitellimus" #. module: point_of_sale #: rml:pos.lines:0 msgid "Company" -msgstr "" +msgstr "Ettevõte" #. module: point_of_sale #: rml:pos.invoice:0 @@ -107,7 +107,7 @@ msgstr "Arve Kuupäev" #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Cannot create invoice without a partner." -msgstr "" +msgstr "Ei saa luua arvet ilma partnerita." #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_lines_detail @@ -137,7 +137,7 @@ msgstr "Partneri viide." #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" -msgstr "" +msgstr "Rea kirjeldus" #. module: point_of_sale #: field:pos.order,shop_id:0 @@ -182,19 +182,19 @@ msgstr "Müügi rida" #. module: point_of_sale #: rml:pos.lines:0 msgid "No. Of Articles" -msgstr "" +msgstr "Artiklite arv" #. module: point_of_sale #: code:addons/point_of_sale/report/pos_invoice.py:0 #, python-format msgid "Please create an invoice for this sale." -msgstr "" +msgstr "Palun loo arve sellele müügile." #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 msgid "Validity Date" -msgstr "" +msgstr "Kehtivuse kuupäev" #. module: point_of_sale #: rml:pos.receipt:0 @@ -210,7 +210,7 @@ msgstr "Käibemaks" #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_refund msgid "Refund Orders" -msgstr "" +msgstr "Maksa orderid tagasi" #. module: point_of_sale #: field:pos.order,last_out_picking:0 @@ -220,7 +220,7 @@ msgstr "" #. module: point_of_sale #: wizard_view:pos.config.journal,init:0 msgid "Select default journals" -msgstr "" +msgstr "Vali väikimisi päevikud" #. module: point_of_sale #: rml:pos.details:0 @@ -240,17 +240,17 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 msgid "Disc" -msgstr "" +msgstr "Disk" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Fax :" -msgstr "" +msgstr "Faks :" #. module: point_of_sale #: wizard_view:pos.scan_product,init:0 msgid "Scan Barcode" -msgstr "" +msgstr "Skaneeri ribakood" #. module: point_of_sale #: field:pos.order,partner_id:0 @@ -281,7 +281,7 @@ msgstr "Kinnita" #. module: point_of_sale #: view:pos.order:0 msgid "POS Orders" -msgstr "" +msgstr "Kassa Orderid" #. module: point_of_sale #: rml:pos.invoice:0 @@ -293,18 +293,18 @@ msgstr "Allahindl. (%)" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Sales total" -msgstr "" +msgstr "Müük kokku" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Supplier Invoice" -msgstr "" +msgstr "Tarnija arve" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Modify line failed !" -msgstr "" +msgstr "Rea muudatus ebaõnnestunud !" #. module: point_of_sale #: view:pos.order.line:0 @@ -314,35 +314,35 @@ msgstr "" #. module: point_of_sale #: wizard_field:pos.payment,ask_pay,payment_date:0 msgid "Payment date" -msgstr "" +msgstr "Makse kuupäev" #. module: point_of_sale #: wizard_field:pos.payment,ask_pay,payment_name:0 msgid "Payment name" -msgstr "" +msgstr "Makse nimetus" #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" -msgstr "" +msgstr "Orderi read" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.receipt:0 msgid "Qty" -msgstr "" +msgstr "kogus" #. module: point_of_sale #: model:ir.module.module,shortdesc:point_of_sale.module_meta_information msgid "Point Of Sale" -msgstr "" +msgstr "Kassa" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #: code:addons/point_of_sale/report/pos_invoice.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Viga !" #. module: point_of_sale #: rml:pos.receipt:0 @@ -352,7 +352,7 @@ msgstr "Kasutaja :" #. module: point_of_sale #: field:pos.order.line,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Loomise kuupäev" #. module: point_of_sale #: rml:pos.invoice:0 @@ -377,24 +377,24 @@ msgstr "POS " #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_config_journal msgid "Point of Sale journal configuration." -msgstr "" +msgstr "Kassa päeviku konfiguratsioon." #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Create line failed !" -msgstr "" +msgstr "Rea loomine ebaõnnestus !" #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal:0 msgid "Default journal" -msgstr "" +msgstr "Vaikimisi päevik" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Invalid action !" -msgstr "" +msgstr "Vale tegevus!" #. module: point_of_sale #: field:pos.order,account_receivable:0 @@ -426,7 +426,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" -msgstr "" +msgstr "Kassa read päevas" #. module: point_of_sale #: field:pos.order,nb_print:0 @@ -436,18 +436,18 @@ msgstr "" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_wizard_default_journal msgid "Default journals" -msgstr "" +msgstr "Vaikimisi päevikud" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "No valid pricelist line found !" -msgstr "" +msgstr "Kehtiv hinnakirja rida ei ole leitud !" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Draft Invoice" -msgstr "" +msgstr "Arve mustand" #. module: point_of_sale #: field:pos.order.line,discount:0 @@ -457,33 +457,33 @@ msgstr "Allahindlus (%)" #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_add_product msgid "Add products" -msgstr "" +msgstr "Lisa tooted" #. module: point_of_sale #: view:pos.order.line:0 msgid "Total qty" -msgstr "" +msgstr "Üldkogus" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line msgid "POS Lines" -msgstr "" +msgstr "Kassa read" #. module: point_of_sale #: view:pos.order:0 msgid "Sales Order POS" -msgstr "" +msgstr "Kassa müügiorder" #. module: point_of_sale #: wizard_button:pos.config.journal,init,set_default_journal:0 msgid "Define default journals" -msgstr "" +msgstr "Vali vaikimisi päevikud" #. module: point_of_sale #: field:pos.order,amount_paid:0 #: field:pos.order,amount_return:0 msgid "unknown" -msgstr "" +msgstr "teadmata" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree2 @@ -504,7 +504,7 @@ msgstr "Müügimees" #: rml:pos.details:0 #: selection:pos.order,state:0 msgid "Invoiced" -msgstr "" +msgstr "Arve esitatud" #. module: point_of_sale #: rml:pos.receipt:0 @@ -535,12 +535,12 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 msgid "," -msgstr "" +msgstr "," #. module: point_of_sale #: wizard_button:pos.scan_product,init,add:0 msgid "Add" -msgstr "" +msgstr "Lisa" #. module: point_of_sale #: selection:pos.order,state:0 @@ -555,12 +555,12 @@ msgstr "Tasutud" #. module: point_of_sale #: rml:pos.invoice:0 msgid "VAT :" -msgstr "" +msgstr "KM :" #. module: point_of_sale #: view:pos.order.line:0 msgid "POS Order lines" -msgstr "" +msgstr "Kassaorderi read" #. module: point_of_sale #: rml:pos.receipt:0 @@ -571,23 +571,23 @@ msgstr "E-post :" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Total invoiced" -msgstr "" +msgstr "Kokku arves" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_today msgid "Sales of the day" -msgstr "" +msgstr "Päeva müük" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Please provide a partner for the sale." -msgstr "" +msgstr "Palun lisa müügipartnerit" #. module: point_of_sale #: view:pos.order.line:0 msgid "POS Order line" -msgstr "" +msgstr "Kassaorderi rida" #. module: point_of_sale #: rml:pos.receipt:0 @@ -607,12 +607,12 @@ msgstr "Kasutaja" #. module: point_of_sale #: field:pos.payment,payment_date:0 msgid "Payment Date" -msgstr "" +msgstr "Makse kuupäev" #. module: point_of_sale #: field:pos.payment,payment_name:0 msgid "Payment Name" -msgstr "" +msgstr "Makse nimetus" #. module: point_of_sale #: rml:pos.details:0 @@ -625,13 +625,13 @@ msgstr "Kuupäev" #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_month #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_today msgid "Sales by user" -msgstr "" +msgstr "Müük kasutaja kohta" #. module: point_of_sale #: wizard_button:pos.add_product,init,add:0 #: view:pos.order:0 msgid "_Add product" -msgstr "" +msgstr "_Lisa toode" #. module: point_of_sale #: wizard_button:pos.discount,init,apply_discount:0 @@ -647,7 +647,7 @@ msgstr "Periood:" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree msgid "All the sales" -msgstr "" +msgstr "Kogu müük" #. module: point_of_sale #: view:pos.order:0 @@ -657,7 +657,7 @@ msgstr "Arvuta" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Total:" -msgstr "" +msgstr "Kokku:" #. module: point_of_sale #: view:pos.order:0 @@ -669,18 +669,18 @@ msgstr "" #: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 #, python-format msgid "You can't modify this order. It has already been paid" -msgstr "" +msgstr "Sa ei saa seda orderit muuta. See on juba makstud" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format msgid "Error" -msgstr "" +msgstr "Viga" #. module: point_of_sale #: view:pos.order:0 msgid "Create _Invoice" -msgstr "" +msgstr "Loo _arve" #. module: point_of_sale #: wizard_field:pos.add_product,init,quantity:0 @@ -693,13 +693,13 @@ msgstr "Kogus" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Refund" -msgstr "" +msgstr "Tagasimaksmine" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Mode of payment" -msgstr "" +msgstr "Makseviis" #. module: point_of_sale #: wizard_button:pos.payment,ask_pay,add_pay:0 @@ -735,7 +735,7 @@ msgstr "Olek" #. module: point_of_sale #: wizard_view:pos.refund_order,init:0 msgid "Refund order :" -msgstr "" +msgstr "Tagasimakse order:" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -745,7 +745,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Net Total:" -msgstr "" +msgstr "Netosumma:" #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 @@ -793,13 +793,13 @@ msgstr "Sulge" #. module: point_of_sale #: view:pos.order:0 msgid "Order lines" -msgstr "" +msgstr "Orderi read" #. module: point_of_sale #: field:pos.order.line,order_id:0 #: field:pos.payment,order_id:0 msgid "Order Ref" -msgstr "" +msgstr "Orderi ref" #. module: point_of_sale #: wizard_view:pos.payment,ask_pay:0 @@ -815,7 +815,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Total of the day" -msgstr "" +msgstr "Päevasumma" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_payment @@ -826,17 +826,17 @@ msgstr "" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Total discount" -msgstr "" +msgstr "Kokku allahindlus" #. module: point_of_sale #: field:pos.order,invoice_wanted:0 msgid "Create Invoice" -msgstr "" +msgstr "Loo arve" #. module: point_of_sale #: wizard_view:pos.refund_order,init:0 msgid "Refund " -msgstr "" +msgstr "Tagasimakse " #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_order_line @@ -852,7 +852,7 @@ msgstr "Maksud:" #: view:pos.order:0 #: view:report.transaction.pos:0 msgid "Amount total" -msgstr "" +msgstr "Kogusumma" #. module: point_of_sale #: wizard_field:pos.add_product,init,product:0 @@ -864,7 +864,7 @@ msgstr "Toode" #. module: point_of_sale #: view:pos.order:0 msgid "Invoicing" -msgstr "" +msgstr "Arveldus" #. module: point_of_sale #: rml:pos.receipt:0 @@ -878,17 +878,17 @@ msgstr ":" #: field:pos.payment,journal_id:0 #: field:report.transaction.pos,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Päevik" #. module: point_of_sale #: wizard_field:pos.scan_product,init,gencod:0 msgid "Barcode" -msgstr "" +msgstr "Ribakood" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Canceled Invoice" -msgstr "" +msgstr "Tühistatud arved" #. module: point_of_sale #: view:report.transaction.pos:0 @@ -903,48 +903,48 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Tel. :" -msgstr "" +msgstr "Tel:" #. module: point_of_sale #: field:pos.payment,payment_nb:0 msgid "Piece Number" -msgstr "" +msgstr "Tüki nr." #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal_gift:0 msgid "Default gift journal" -msgstr "" +msgstr "Vaikimisi kingituste päevik" #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_payment #: view:pos.order:0 msgid "Payment" -msgstr "" +msgstr "Makse" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree3 msgid "All orders" -msgstr "" +msgstr "Kõik orderid" #. module: point_of_sale #: wizard_field:pos.sale.get,init,picking_id:0 msgid "Sale Order" -msgstr "" +msgstr "Müügiorder" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_month msgid "Sales of the month" -msgstr "" +msgstr "Kuu müük" #. module: point_of_sale #: view:pos.order:0 msgid "D_iscount" -msgstr "" +msgstr "A_llahindlus" #. module: point_of_sale #: field:pos.order,date_order:0 msgid "Date Ordered" -msgstr "" +msgstr "Tellimuse kuupäev" #. module: point_of_sale #: rml:pos.receipt:0 @@ -959,19 +959,19 @@ msgstr "Maksed" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Supplier Refund" -msgstr "" +msgstr "Tarnija tagasimakse" #. module: point_of_sale #: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 #, python-format msgid "UserError" -msgstr "" +msgstr "Kasutaja Viga" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Summary" -msgstr "" +msgstr "Üldistus" #. module: point_of_sale #: field:pos.config.journal,name:0 @@ -985,18 +985,18 @@ msgstr "Kirjeldus" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary msgid "Sales (summary)" -msgstr "" +msgstr "Müük (üldistus)" #. module: point_of_sale #: field:pos.order,account_move:0 msgid "Account Entry" -msgstr "" +msgstr "Konto kirje" #. module: point_of_sale #: wizard_field:pos.payment,ask_pay,payment_id:0 #: field:pos.payment,payment_id:0 msgid "Payment Term" -msgstr "" +msgstr "Maksetingimus" #. module: point_of_sale #: rml:pos.invoice:0 @@ -1009,7 +1009,7 @@ msgstr "Kogus" #. module: point_of_sale #: view:pos.order:0 msgid "Actions" -msgstr "" +msgstr "Tegevused" #. module: point_of_sale #: rml:pos.details:0 @@ -1032,7 +1032,7 @@ msgstr "Firma:" #. module: point_of_sale #: rml:pos.lines:0 msgid "Print Date" -msgstr "" +msgstr "Trükkimise kuupäev" #. module: point_of_sale #: rml:pos.lines:0 diff --git a/addons/point_of_sale/i18n/fr_FR.po b/addons/point_of_sale/i18n/fr_FR.po index 183fe34ca7e..a5cb9718508 100644 --- a/addons/point_of_sale/i18n/fr_FR.po +++ b/addons/point_of_sale/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/hr_HR.po b/addons/point_of_sale/i18n/hr_HR.po index b0a4b4577d2..02c34c9cbfd 100644 --- a/addons/point_of_sale/i18n/hr_HR.po +++ b/addons/point_of_sale/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/hu_HU.po b/addons/point_of_sale/i18n/hu_HU.po index 63bb5cea2f8..17ce49955e1 100644 --- a/addons/point_of_sale/i18n/hu_HU.po +++ b/addons/point_of_sale/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/it_IT.po b/addons/point_of_sale/i18n/it_IT.po index 6dc4d7ba98b..773e3f398e9 100644 --- a/addons/point_of_sale/i18n/it_IT.po +++ b/addons/point_of_sale/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/lt_LT.po b/addons/point_of_sale/i18n/lt_LT.po index 66678293992..ff1d3b6f7c1 100644 --- a/addons/point_of_sale/i18n/lt_LT.po +++ b/addons/point_of_sale/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index 6e46740fb15..207e4ac294c 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/nl_NL.po b/addons/point_of_sale/i18n/nl_NL.po index cbdc0965c27..2f58733483c 100644 --- a/addons/point_of_sale/i18n/nl_NL.po +++ b/addons/point_of_sale/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/pl_PL.po b/addons/point_of_sale/i18n/pl_PL.po index 3adf72f5647..f0f3815057c 100644 --- a/addons/point_of_sale/i18n/pl_PL.po +++ b/addons/point_of_sale/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 513b8fe44d0..6decae99d53 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index dbc14eb7d28..3d144e94e0b 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/pt_PT.po b/addons/point_of_sale/i18n/pt_PT.po index 6bd22d22bf2..52f9fd54b4f 100644 --- a/addons/point_of_sale/i18n/pt_PT.po +++ b/addons/point_of_sale/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/ro_RO.po b/addons/point_of_sale/i18n/ro_RO.po index b5783c9b218..9dadaf1fc4e 100644 --- a/addons/point_of_sale/i18n/ro_RO.po +++ b/addons/point_of_sale/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/ru_RU.po b/addons/point_of_sale/i18n/ru_RU.po index dbbe8bd354a..38cae9af2bc 100644 --- a/addons/point_of_sale/i18n/ru_RU.po +++ b/addons/point_of_sale/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/sl_SL.po b/addons/point_of_sale/i18n/sl_SL.po index e185a89c444..d899713cd06 100644 --- a/addons/point_of_sale/i18n/sl_SL.po +++ b/addons/point_of_sale/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/sv_SE.po b/addons/point_of_sale/i18n/sv_SE.po index 8de6d313f68..2f2fa59e9ad 100644 --- a/addons/point_of_sale/i18n/sv_SE.po +++ b/addons/point_of_sale/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/sv_SV.po b/addons/point_of_sale/i18n/sv_SV.po index ead39003d04..e05f97d80ca 100644 --- a/addons/point_of_sale/i18n/sv_SV.po +++ b/addons/point_of_sale/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -47,6 +47,11 @@ msgstr "" msgid "Piece number" msgstr "" +#. module: point_of_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: point_of_sale #: field:pos.order,name:0 msgid "Order Description" @@ -67,14 +72,20 @@ msgstr "" msgid "Add product :" msgstr "" +#. module: point_of_sale +#: rml:pos.lines:0 +msgid "Net Total" +msgstr "" + #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree2 msgid "Orders of the day" msgstr "" #. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary -msgid "Sales (summary)" +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No Pricelist !" msgstr "" #. module: point_of_sale @@ -82,14 +93,20 @@ msgstr "" msgid "Select an Open Sale Order" msgstr "" +#. module: point_of_sale +#: rml:pos.lines:0 +msgid "Company" +msgstr "" + #. module: point_of_sale #: rml:pos.invoice:0 msgid "Invoice Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "," +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "Cannot create invoice without a partner." msgstr "" #. module: point_of_sale @@ -163,17 +180,14 @@ msgid "Sale line" msgstr "" #. module: point_of_sale -#: rml:pos.invoice:0 -#: field:pos.payment,amount:0 -#: wizard_field:pos.payment,ask_pay,amount:0 -#: field:report.transaction.pos,amount:0 -msgid "Amount" +#: rml:pos.lines:0 +msgid "No. Of Articles" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: code:addons/point_of_sale/report/pos_invoice.py:0 +#, python-format +msgid "Please create an invoice for this sale." msgstr "" #. module: point_of_sale @@ -189,6 +203,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 +#: rml:pos.lines:0 msgid "VAT" msgstr "" @@ -227,11 +242,6 @@ msgstr "" msgid "Disc" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Journal:" -msgstr "" - #. module: point_of_sale #: rml:pos.invoice:0 msgid "Fax :" @@ -323,13 +333,15 @@ msgid "Qty" msgstr "" #. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Sold" +#: model:ir.module.module,shortdesc:point_of_sale.module_meta_information +msgid "Point Of Sale" msgstr "" #. module: point_of_sale -#: model:ir.module.module,shortdesc:point_of_sale.module_meta_information -msgid "Point Of Sale" +#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/report/pos_invoice.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: point_of_sale @@ -355,7 +367,7 @@ msgstr "" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_rep msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: point_of_sale #: view:report.transaction.pos:0 @@ -378,11 +390,6 @@ msgstr "" msgid "Default journal" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Product Name" -msgstr "" - #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format @@ -431,6 +438,12 @@ msgstr "" msgid "Default journals" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No valid pricelist line found !" +msgstr "" + #. module: point_of_sale #: rml:pos.invoice:0 msgid "Draft Invoice" @@ -466,6 +479,12 @@ msgstr "" msgid "Define default journals" msgstr "" +#. module: point_of_sale +#: field:pos.order,amount_paid:0 +#: field:pos.order,amount_return:0 +msgid "unknown" +msgstr "" + #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree2 #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree3 @@ -492,11 +511,6 @@ msgstr "" msgid "Tel :" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total No. of Articles" -msgstr "" - #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal_rebate:0 msgid "Default rebate journal" @@ -512,6 +526,17 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "No order lines defined for this sale." +msgstr "" + +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "," +msgstr "" + #. module: point_of_sale #: wizard_button:pos.scan_product,init,add:0 msgid "Add" @@ -527,11 +552,6 @@ msgstr "" msgid "Paid" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Taxes" -msgstr "" - #. module: point_of_sale #: rml:pos.invoice:0 msgid "VAT :" @@ -559,9 +579,9 @@ msgid "Sales of the day" msgstr "" #. module: point_of_sale -#: field:pos.order,amount_paid:0 -#: field:pos.order,amount_return:0 -msgid "unknown" +#: code:addons/point_of_sale/pos.py:0 +#, python-format +msgid "Please provide a partner for the sale." msgstr "" #. module: point_of_sale @@ -596,7 +616,6 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 -#: rml:pos.lines:0 #: field:report.transaction.pos,date_create:0 msgid "Date" msgstr "" @@ -615,8 +634,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid ":" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -646,6 +665,12 @@ msgstr "" msgid "Picking" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 +#, python-format +msgid "You can't modify this order. It has already been paid" +msgstr "" + #. module: point_of_sale #: code:addons/point_of_sale/pos.py:0 #, python-format @@ -660,6 +685,7 @@ msgstr "" #. module: point_of_sale #: wizard_field:pos.add_product,init,quantity:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: field:pos.order.line,qty:0 msgid "Quantity" msgstr "" @@ -681,13 +707,9 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Paid" +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" msgstr "" #. module: point_of_sale @@ -844,6 +866,11 @@ msgstr "" msgid "Invoicing" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid ":" +msgstr "" + #. module: point_of_sale #: field:pos.config.journal,journal_id:0 #: field:pos.order,sale_journal:0 @@ -904,11 +931,6 @@ msgstr "" msgid "Sale Order" msgstr "" -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Name" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_month msgid "Sales of the month" @@ -934,6 +956,17 @@ msgstr "" msgid "Payments" msgstr "" +#. module: point_of_sale +#: rml:pos.invoice:0 +msgid "Supplier Refund" +msgstr "" + +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/wizard_get_sale.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 @@ -943,11 +976,17 @@ msgstr "" #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: field:pos.payment,name:0 #: rml:pos.receipt:0 msgid "Description" msgstr "" +#. module: point_of_sale +#: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary +msgid "Sales (summary)" +msgstr "" + #. module: point_of_sale #: field:pos.order,account_move:0 msgid "Account Entry" @@ -960,9 +999,11 @@ msgid "Payment Term" msgstr "" #. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Mode of Taxes" +#: rml:pos.invoice:0 +#: field:pos.payment,amount:0 +#: wizard_field:pos.payment,ask_pay,amount:0 +#: field:report.transaction.pos,amount:0 +msgid "Amount" msgstr "" #. module: point_of_sale @@ -973,23 +1014,28 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 -#: rml:pos.lines:0 +msgid "Mode of Taxes" +msgstr "" + +#. module: point_of_sale +#: rml:pos.details:0 +#: rml:pos.details_summary:0 msgid "Print Date:" msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 -#: rml:pos.lines:0 msgid "Company:" msgstr "" #. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Supplier Refund" +#: rml:pos.lines:0 +msgid "Print Date" msgstr "" #. module: point_of_sale +#: rml:pos.lines:0 #: field:pos.order,amount_total:0 msgid "Total" msgstr "" @@ -997,6 +1043,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.invoice:0 +#: rml:pos.lines:0 #: rml:pos.receipt:0 msgid "Price" msgstr "" diff --git a/addons/point_of_sale/i18n/tr_TR.po b/addons/point_of_sale/i18n/tr_TR.po index 2a1c374a8d7..e59b05d8cf4 100644 --- a/addons/point_of_sale/i18n/tr_TR.po +++ b/addons/point_of_sale/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/uk_UK.po b/addons/point_of_sale/i18n/uk_UK.po index 3114b8febef..86bfbd89b06 100644 --- a/addons/point_of_sale/i18n/uk_UK.po +++ b/addons/point_of_sale/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index 30b160222a7..17c24bc511a 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index c98ba73788a..cc404e7f161 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ar_AR.po b/addons/process/i18n/ar_AR.po index 21fc94d60ce..e4e13025397 100644 --- a/addons/process/i18n/ar_AR.po +++ b/addons/process/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/bg_BG.po b/addons/process/i18n/bg_BG.po index 729df93c534..5d5396def81 100644 --- a/addons/process/i18n/bg_BG.po +++ b/addons/process/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/bs_BS.po b/addons/process/i18n/bs_BS.po index 07b73697a58..dc1edec2f96 100644 --- a/addons/process/i18n/bs_BS.po +++ b/addons/process/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ca_ES.po b/addons/process/i18n/ca_ES.po index 24da5b9e7c3..40ad0c653b8 100644 --- a/addons/process/i18n/ca_ES.po +++ b/addons/process/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/cs_CS.po b/addons/process/i18n/cs_CS.po index 1443dd565ab..72ebc5fe928 100644 --- a/addons/process/i18n/cs_CS.po +++ b/addons/process/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: process +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: process #: view:process.node:0 #: view:process.process:0 diff --git a/addons/process/i18n/cs_CZ.po b/addons/process/i18n/cs_CZ.po index c293c4b9a67..c038de5ecec 100644 --- a/addons/process/i18n/cs_CZ.po +++ b/addons/process/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/de_DE.po b/addons/process/i18n/de_DE.po index 1be34e013a0..4448e6e3312 100644 --- a/addons/process/i18n/de_DE.po +++ b/addons/process/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index 0d26e79f7f6..00148c5aa97 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/es_ES.po b/addons/process/i18n/es_ES.po index 33cb3829933..c4e3657c917 100644 --- a/addons/process/i18n/es_ES.po +++ b/addons/process/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/et_EE.po b/addons/process/i18n/et_EE.po index d9c47c899fa..5d0b555b19e 100644 --- a/addons/process/i18n/et_EE.po +++ b/addons/process/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: process #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: process #: view:process.node:0 @@ -247,7 +247,7 @@ msgstr "Protsess" #. module: process #: model:ir.module.module,shortdesc:process.module_meta_information msgid "Enterprise Process" -msgstr "" +msgstr "Ettevõtluse protsess" #. module: process #: view:process.node:0 diff --git a/addons/process/i18n/fr_FR.po b/addons/process/i18n/fr_FR.po index e646743b53d..65382214672 100644 --- a/addons/process/i18n/fr_FR.po +++ b/addons/process/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/hr_HR.po b/addons/process/i18n/hr_HR.po index f894a876083..c57e1400cbb 100644 --- a/addons/process/i18n/hr_HR.po +++ b/addons/process/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/hu_HU.po b/addons/process/i18n/hu_HU.po index 965c9af0434..ee9dfe5732b 100644 --- a/addons/process/i18n/hu_HU.po +++ b/addons/process/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/it_IT.po b/addons/process/i18n/it_IT.po index 1a5effd39ea..00491c5f29d 100644 --- a/addons/process/i18n/it_IT.po +++ b/addons/process/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/lt_LT.po b/addons/process/i18n/lt_LT.po index 50582a61e25..991bfd8f177 100644 --- a/addons/process/i18n/lt_LT.po +++ b/addons/process/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index 8f206c78f5d..52107384c23 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/nl_NL.po b/addons/process/i18n/nl_NL.po index 3161091f9b5..c498fc4d766 100644 --- a/addons/process/i18n/nl_NL.po +++ b/addons/process/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pl_PL.po b/addons/process/i18n/pl_PL.po index 0e3dffbff8a..88138ed914b 100644 --- a/addons/process/i18n/pl_PL.po +++ b/addons/process/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 8139d68cbc0..b318052622d 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index 0a10b5deed8..98284ca7f6d 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pt_PT.po b/addons/process/i18n/pt_PT.po index 3def949ce73..885c2f0fdf0 100644 --- a/addons/process/i18n/pt_PT.po +++ b/addons/process/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ro_RO.po b/addons/process/i18n/ro_RO.po index c5e0e804e6b..96427685276 100644 --- a/addons/process/i18n/ro_RO.po +++ b/addons/process/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ru_RU.po b/addons/process/i18n/ru_RU.po index 13da5a28c89..2942fe9c3a7 100644 --- a/addons/process/i18n/ru_RU.po +++ b/addons/process/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sl_SL.po b/addons/process/i18n/sl_SL.po index 46845f6a40a..e1e19fbae39 100644 --- a/addons/process/i18n/sl_SL.po +++ b/addons/process/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sv_SE.po b/addons/process/i18n/sv_SE.po index 26f7585ca27..a06ebf728a6 100644 --- a/addons/process/i18n/sv_SE.po +++ b/addons/process/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sv_SV.po b/addons/process/i18n/sv_SV.po index a7904d080ac..0c49b2e932e 100644 --- a/addons/process/i18n/sv_SV.po +++ b/addons/process/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#. module: process +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: process #: view:process.node:0 #: view:process.process:0 diff --git a/addons/process/i18n/tr_TR.po b/addons/process/i18n/tr_TR.po index 5f667844346..b107226561b 100644 --- a/addons/process/i18n/tr_TR.po +++ b/addons/process/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/uk_UK.po b/addons/process/i18n/uk_UK.po index 379dbfd7bfb..8f3e6c146a1 100644 --- a/addons/process/i18n/uk_UK.po +++ b/addons/process/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index 2fd3dab1856..0b05779445a 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index 0d39c29c86a..72e874ed236 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/ar_AR.po b/addons/product/i18n/ar_AR.po index 24425ed2a13..ca43022fd22 100644 --- a/addons/product/i18n/ar_AR.po +++ b/addons/product/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/bg_BG.po b/addons/product/i18n/bg_BG.po index ac448a538d6..e9162b4961e 100644 --- a/addons/product/i18n/bg_BG.po +++ b/addons/product/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "Продукти" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Информация" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/bs_BS.po b/addons/product/i18n/bs_BS.po index 461c6ca5297..a7b8ea9fad6 100644 --- a/addons/product/i18n/bs_BS.po +++ b/addons/product/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/ca_ES.po b/addons/product/i18n/ca_ES.po index 77402738db2..7eaef8c3c33 100644 --- a/addons/product/i18n/ca_ES.po +++ b/addons/product/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Tarifa alternativa" msgid "Products" msgstr "Productes" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unitats de mesura" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unitat d'enviament" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "Kits de components TI" msgid "Units of Measure categories" msgstr "Categorias d'unitats de mesura" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Seqüència" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Taxa" msgid "Products Listprices Items" msgstr "Elements de llista de preus de productes" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d unitat" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Informació d'un proveïdor de producte" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Actiu" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Indica diferents maneres d'empaquetar el mateix producte. No influeix en l'albarà i s'utilitza principalment si s'usa el mòdul EDI." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Pes brut" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Indica diferents maneres d'empaquetar el mateix producte. No influeix en l'albarà i s'utilitza principalment si s'usa el mòdul EDI." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No podeu tenir 2 versions de tarifes que es superposin!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Actiu" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Plantilla de producte" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unitat d'enviament" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Seqüència" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Quantitat-2" msgid "Information" msgstr "Informació" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d unitats" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Obtenir sota comanda" msgid "Price Surcharge" msgstr "Sobrecàrrega preu" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Preus & Proveïdors" msgid "The weight of a full of products palet or box." msgstr "El pes d'un palet o caixa plena de productes." +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Privat" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "Termini en dies entre la confirmació de l'ordre de compra i la recepció dels productes en el vostre magatzem. Utilitzat pel planificador pel càlcul automàtic de l'ordre de compra." +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unitats de mesura" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/cs_CS.po b/addons/product/i18n/cs_CS.po index ac2669cb59e..da13aafe86b 100644 --- a/addons/product/i18n/cs_CS.po +++ b/addons/product/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -90,6 +90,11 @@ msgstr "" msgid "Procure Method" msgstr "" +#. module: product +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: product #: model:process.process,name:product.process_process_productprocess0 msgid "Product Process" @@ -643,6 +648,11 @@ msgstr "Produkty podle kategorie" msgid "HDD Seagate 7200.8 80GB" msgstr "" +#. module: product +#: help:product.pricelist.version,active:0 +msgid "When a version is duplicated it is set to non active, so that the dates do not overlaps with original version. You should change the dates and reactivate the pricelist" +msgstr "" + #. module: product #: model:product.template,name:product.product_product_hdd3_product_template msgid "HDD Seagate 7200.8 160GB" @@ -852,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1062,11 +1066,6 @@ msgstr "" msgid "Active" msgstr "Aktivní" -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: product #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 @@ -1243,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Informace" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1407,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" diff --git a/addons/product/i18n/cs_CZ.po b/addons/product/i18n/cs_CZ.po index 460621e075f..1aedfd6e239 100644 --- a/addons/product/i18n/cs_CZ.po +++ b/addons/product/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Sekvence" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktivní" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktivní" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Šablona produktu" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Sekvence" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Informace" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/de_DE.po b/addons/product/i18n/de_DE.po index 775813e53dc..77ac0f15e61 100644 --- a/addons/product/i18n/de_DE.po +++ b/addons/product/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Basis Preisliste" msgid "Products" msgstr "Produkte" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Mengeneinheit" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Versand Mengeneinheit (UoM)" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "IT components kits" msgid "Units of Measure categories" msgstr "UoM Kategorien" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Sequenzer" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "1/Faktor" msgid "Products Listprices Items" msgstr "Elemente in Produktpreisliste" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d unit" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Informationen zum Produktlieferanten" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktiv" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Bietet unterschiedliche Möglichkeiten das Produkt zu verpacken. Diese wirkt sich nicht auf den Packauftrag (Packliste) aus und wird primär bei Verwendung des EDI Moduls benötigt." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Gewicht" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Bietet unterschiedliche Möglichkeiten das Produkt zu verpacken. Diese wirkt sich nicht auf den Packauftrag (Packliste) aus und wird primär bei Verwendung des EDI Moduls benötigt." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sie können keine sich zeitlich überlappende Versionen von Preislisten haben." +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktiv" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Produktvorlage" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Versand Mengeneinheit (UoM)" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Sequenzer" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Menge2" msgid "Information" msgstr "Information" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d Einheiten" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Produziere von Auftrag (MtO)" msgid "Price Surcharge" msgstr "Aufschlag" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Preise & Lieferanten" msgid "The weight of a full of products palet or box." msgstr "Gewicht der beladenen Palette oder Box-" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Privat" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "Zeit in Tagen zwischen Bestätigung des Beschaffungsauftrags und dem Empfang der Waren im Zentrallager (Warehouse). Diese Zeit wird verwendet bei der Berechnung des automatischen Bestellvorschlags." +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Mengeneinheit" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index e619064062e..88d061c321a 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Información" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/es_ES.po b/addons/product/i18n/es_ES.po index 04b5c748c9a..28b115c0cb0 100644 --- a/addons/product/i18n/es_ES.po +++ b/addons/product/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Lista Precios Base" msgid "Products" msgstr "Productos" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unidades de medida" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unidad de envío" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "Kits de componentes TI" msgid "Units of Measure categories" msgstr "Categorías de unidades de medida" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Tasa" msgid "Products Listprices Items" msgstr "Elementos de las tarifas de productos" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d unidad" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Información de un proveedor de producto" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Activo" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Indica diferente maneras de empaquetar el mismo producto. No influye en el albarán y es utilizado si se usa el módulo EDI." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Peso bruto" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Indica diferente maneras de empaquetar el mismo producto. No influye en el albarán y es utilizado si se usa el módulo EDI." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No puede tener 2 versiones de tarifas que se superpongan!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Activo" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Plantilla de producto" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unidad de envío" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Secuencia" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Cantidad-2" msgid "Information" msgstr "Información" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d unidades" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Obtener bajo pedido" msgid "Price Surcharge" msgstr "Sobrecarga precio" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Precios & Proveedores" msgid "The weight of a full of products palet or box." msgstr "El peso de un palet o caja llena de productos." +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Privado" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "Plazo en días entre la confirmación de la orden de compra y la recepción de los productos en su almacén. Utilizado por el planificador para el cálculo automático de la orden de compra." +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unidades de medida" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/et_EE.po b/addons/product/i18n/et_EE.po index 909f249e3c6..078b9c60cd0 100644 --- a/addons/product/i18n/et_EE.po +++ b/addons/product/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Max. Margin" -msgstr "" +msgstr "Maks. marginaal" #. module: product #: view:product.pricelist.item:0 @@ -28,7 +28,7 @@ msgstr "Baashind" #. module: product #: help:product.template,standard_price:0 msgid "The cost of the product for accounting stock valuation. It can serves as a base price for supplier price." -msgstr "" +msgstr "Toote maksumus ramatupidamise laoseisu väärtustamiseks. See võib teenida baashinda tarnija hinnale." #. module: product #: selection:product.template,type:0 @@ -38,7 +38,7 @@ msgstr "Teenus" #. 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 "" +msgstr "Määra, kas toode on nähtav toodete nimekirjas ostutellimuse reale valimiseks." #. module: product #: help:product.supplierinfo,name:0 @@ -53,12 +53,12 @@ msgstr "DDR 512MB PC400" #. module: product #: model:product.template,name:product.product_product_0_product_template msgid "Onsite Senior Intervention" -msgstr "" +msgstr "Kohapealne kõrgem sekkumine" #. module: product #: help:product.supplierinfo,qty:0 msgid "The minimal quantity to purchase for this supplier, expressed in the default unit of measure." -msgstr "" +msgstr "Minimaalne ostukogus sellele tarnijale, väljendatuna vaikimisi mõõtühikuga." #. module: product #: field:product.template,weight_net:0 @@ -68,12 +68,12 @@ msgstr "Netokaal" #. module: product #: help:product.product,incoming_qty:0 msgid "Quantities of products that are planned to arrive in selected locations or all internal if none have been selected." -msgstr "" +msgstr "Toodete kogused, mille saabumine on planeeritud valitud asukohtades või kõigis sisemistes asukohtades, kui ühtegi pole valitud" #. module: product #: help:product.product,virtual_available:0 msgid "Futur stock for this product according to the selected location or all internal if none have been selected. Computed as: Real Stock - Outgoing + Incoming." -msgstr "" +msgstr "Tulevane laoseis sellele tootele lähtudes valitud asukohast või kõigist asukohtadest, kui ühtegi pole valitud. Arvututuskäik: Tegelik laoseis - Väljuvad + Sisenevad." #. module: product #: field:product.packaging,width:0 @@ -83,7 +83,7 @@ msgstr "Laius" #. module: product #: help:product.pricelist.item,product_tmpl_id:0 msgid "Set a template if this rule only apply to a template of product. Keep empty for all products" -msgstr "" +msgstr "Määra mall, kui see reegel rakendub ainult toote mallile. Hoia tühjana kõigi toodete jaoks." #. module: product #: field:product.template,procure_method:0 @@ -93,12 +93,12 @@ msgstr "Hankimise viis" #. module: product #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: product #: model:process.process,name:product.process_process_productprocess0 msgid "Product Process" -msgstr "" +msgstr "Toote protsess" #. module: product #: help:product.price.type,field:0 @@ -154,7 +154,7 @@ msgstr "Ettevõte" #. module: product #: field:product.template,rental:0 msgid "Rentable Product" -msgstr "" +msgstr "Renditav toode" #. module: product #: field:product.product,lst_price:0 @@ -170,7 +170,7 @@ msgstr "Hinnatüübid" #. module: product #: selection:product.template,type:0 msgid "Stockable Product" -msgstr "Laostatav toode" +msgstr "Ladustatav toode" #. module: product #: model:product.category,name:product.product_category_services @@ -186,7 +186,7 @@ msgstr "Baashind arvutamaks kliendihinda. Vahetevahel kutsutakse kui kataloogihi #: code:addons/product/pricelist.py:0 #, python-format msgid "Partner section of the product form" -msgstr "" +msgstr "Partneri sektsioon toote vormil" #. module: product #: model:product.template,name:product.product_product_cpu3_product_template @@ -196,12 +196,12 @@ msgstr "Processor AMD Athlon XP 2200+" #. module: product #: help:product.price.type,name:0 msgid "Name of this kind of price." -msgstr "Nimi sedatüüpi hinnajaoks." +msgstr "Seda tüüpi hinna nimi." #. module: product #: help:product.pricelist.version,date_start:0 msgid "Starting date for this pricelist version to be valid." -msgstr "" +msgstr "Selle hinnakirja kehtivuse algus" #. module: product #: field:product.product,incoming_qty:0 @@ -211,33 +211,33 @@ msgstr "Sissetulev" #. module: product #: selection:product.template,procure_method:0 msgid "Make to Stock" -msgstr "" +msgstr "Loo lattu" #. module: product #: view:product.product:0 #: view:product.template:0 msgid "Weigths" -msgstr "" +msgstr "Kaalud" #. module: product #: model:product.template,name:product.product_product_fan2_product_template msgid "Silent fan" -msgstr "Vaikne fan" +msgstr "Vaikne ventilaator" #. module: product #: help:product.template,supply_method:0 msgid "Produce will generate production order or tasks, according to the product type. Purchase will trigger purchase orders when requested." -msgstr "" +msgstr "Tooda genereerib tootmiskorralduse või ülesanded vastavalt toote tüübile. Osta käivitab ostutellimused, kui nõutakse." #. module: product #: model:process.transition,note:product.process_transition_supplierofproduct0 msgid "You can see the list of suppliers for that product." -msgstr "" +msgstr "Sa saad näha tarnijate nimekirja sellele tootele" #. module: product #: help:product.packaging,rows:0 msgid "The number of layer on a palet or box" -msgstr "" +msgstr "Kihtide arv kaubaalusel või kastis" #. module: product #: model:product.pricelist.type,name:product.pricelist_type_sale @@ -259,13 +259,6 @@ msgstr "kui Muu hinnakiri" msgid "Products" msgstr "Tooted" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -285,12 +278,12 @@ msgstr "Fikseeritud" #: model:ir.actions.act_window,name:product.product_uom_categ_form_action #: model:ir.ui.menu,name:product.menu_product_uom_categ_form_action msgid "Units of Measure Categories" -msgstr "" +msgstr "Mõõtühikute kategooriad" #. 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" -msgstr "" +msgstr "Määra toode, kui see reegel rakendub ainult ühele tootele. Hoia tühjana kõigi toodete jaoks," #. module: product #: model:ir.model,name:product.model_product_pricelist_type @@ -323,7 +316,7 @@ msgstr "Seadistus" #. module: product #: field:product.packaging,rows:0 msgid "Number of Layer" -msgstr "" +msgstr "Kihtide arv" #. module: product #: constraint:product.category:0 @@ -338,7 +331,7 @@ msgstr "Vaikimisi mõõtühik" #. module: product #: field:product.template,produce_delay:0 msgid "Manufacturing Lead Time" -msgstr "" +msgstr "Tootmise teostusaeg" #. module: product #: field:product.supplierinfo,pricelist_ids:0 @@ -349,7 +342,7 @@ msgstr "Tarnija hinnakiri" #: view:product.packaging:0 #: view:product.product:0 msgid "Pallet Dimension" -msgstr "" +msgstr "Kaubaaluse mõõdud" #. module: product #: field:product.pricelist.item,base:0 @@ -369,7 +362,7 @@ msgstr "Partner" #. module: product #: field:product.template,sale_delay:0 msgid "Customer Lead Time" -msgstr "" +msgstr "Kliendi teostusaeg" #. module: product #: model:product.template,name:product.product_product_25_product_template @@ -379,7 +372,7 @@ msgstr "Hiir" #. module: product #: help:product.template,cost_method:0 msgid "Standard Price: the cost price is fixed and recomputed periodically (usually at the end of the year), Average Price: the cost price is recomputed at each reception of products." -msgstr "" +msgstr "Tavahind: omahind on fikseeritud ja ümberarvutatud perioodiliselt (tavaliselt aasta lõpus). Keskmine hind: omahind arvutatakse ümber igal toote vastuvõtmisel." #. module: product #: field:product.pricelist,name:0 @@ -404,12 +397,12 @@ msgstr "Loo uus toode" #. module: product #: help:product.pricelist.item,name:0 msgid "Explicit rule name for this pricelist line." -msgstr "" +msgstr "Täpne reegli nimi sellele hinnakirja reale." #. module: product #: view:product.pricelist.item:0 msgid "Min. Margin" -msgstr "" +msgstr "Min marginaal" #. module: product #: view:product.pricelist.item:0 @@ -429,7 +422,7 @@ msgstr "Tootmises" #. module: product #: field:product.category,child_id:0 msgid "Child Categories" -msgstr "" +msgstr "Alamkategooriad" #. module: product #: model:product.category,name:product.product_category_accessories @@ -481,7 +474,7 @@ msgstr "Mõõtühik" #. module: product #: model:product.uom,name:product.product_uom_unit msgid "PCE" -msgstr "" +msgstr "TK" #. module: product #: model:ir.actions.act_window,name:product.product_pricelist_action2 @@ -504,15 +497,12 @@ msgstr "Mitmesugune" #. module: product #: help:product.pricelist.item,base:0 msgid "The mode for computing the price for this rule." -msgstr "" +msgstr "Sellele reeglile hinna arvutamise viis" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Saatmisüksus" #. module: product #: field:product.product,partner_ref:0 @@ -537,12 +527,12 @@ msgstr "Kogus" #. module: product #: field:product.template,seller_delay:0 msgid "Supplier Lead Time" -msgstr "" +msgstr "Tarnija teostusaeg" #. module: product #: model:product.pricelist.version,name:product.ver0 msgid "Default Public Pricelist Version" -msgstr "" +msgstr "Vaikimisi avaliku hinnakirja versioon" #. module: product #: field:product.pricelist.type,key:0 @@ -557,7 +547,7 @@ msgstr "Hinnakirja versioon" #. module: product #: view:product.pricelist.item:0 msgid "Rules Test Match" -msgstr "" +msgstr "Reegli testi vaste" #. module: product #: help:res.partner,property_product_pricelist:0 @@ -578,7 +568,7 @@ msgstr "Tarbekaup" #. module: product #: help:product.price.type,currency_id:0 msgid "The currency the field is expressed in." -msgstr "" +msgstr "Valuuta, milles välja väljendatakse." #. module: product #: code:addons/product/pricelist.py:0 @@ -589,7 +579,7 @@ msgstr "Muu hinnakiri" #. module: product #: help:product.template,weight:0 msgid "The gross weight in Kg." -msgstr "" +msgstr "Brutokaal kilodes" #. module: product #: selection:product.ul,type:0 @@ -604,12 +594,12 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: product #: help:product.template,sale_ok:0 msgid "Determine if the product can be visible in the list of product within a selection from a sale order line." -msgstr "" +msgstr "Määra, kas toode on nähtav toodete nimekirjas müügikorralduse reale valimiseks." #. module: product #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: product #: field:product.category,parent_id:0 @@ -624,22 +614,22 @@ msgstr "Arendamisel" #. module: product #: help:product.pricelist.type,key:0 msgid "Used in the code to select specific prices based on the context. Keep unchanged." -msgstr "" +msgstr "Kasutatakse koodis, et valida erihinnad kontekstil põhinedes. Hoia muutmatult." #. module: product #: help:product.product,outgoing_qty:0 msgid "Quantities of products that are planned to leave in selected locations or all internal if none have been selected." -msgstr "" +msgstr "Toodete kogused, mille lahkumine on planeeritud valitud asukohtades või kõigis sisemistes asukohtades, kui ühtegi pole valitud" #. module: product #: field:product.packaging,weight:0 msgid "Total Package Weight" -msgstr "" +msgstr "Pakendi kogukaal" #. module: product #: help:product.template,procure_method:0 msgid "'Make to Stock': When needed, take from the stock or wait until re-supplying. 'Make to Order': When needed, purchase or produce for the procurement request." -msgstr "" +msgstr "'Loo lattu': Vajadusel võta laost või oota taasvarustamist. 'Loo tellimusele': Vajadusel osta või tooda hanketellimusele." #. module: product #: view:product.product:0 @@ -651,7 +641,7 @@ msgstr "Hankimine" #: model:ir.actions.act_window,name:product.product_category_action #: model:ir.ui.menu,name:product.menu_product_category_action msgid "Products by Category" -msgstr "Tooted kategooriajärgi" +msgstr "Tooted kategooria järgi" #. module: product #: model:product.template,name:product.product_product_hdd1_product_template @@ -661,7 +651,7 @@ msgstr "HDD Seagate 7200.8 80GB" #. module: product #: help:product.pricelist.version,active:0 msgid "When a version is duplicated it is set to non active, so that the dates do not overlaps with original version. You should change the dates and reactivate the pricelist" -msgstr "" +msgstr "Versiooni paljundamisel seatakse see mitteaktiivseks, et kuupäevad ei kattuks originaalversiooniga. Sa peaksid muutma kuupäevad ja aktiveerima hinnakirja." #. module: product #: model:product.template,name:product.product_product_hdd3_product_template @@ -686,7 +676,7 @@ msgstr "Riiul" #. module: product #: field:product.uom,category_id:0 msgid "UoM Category" -msgstr "Mõõtühikute kategooria" +msgstr "Mõõtühiku kategooria" #. module: product #: selection:product.ul,type:0 @@ -708,7 +698,7 @@ msgstr "Müügiselgitus" #. module: product #: field:product.template,uos_id:0 msgid "Unit of Sale" -msgstr "" +msgstr "Müügiühik" #. module: product #: field:product.template,mes_type:0 @@ -718,7 +708,7 @@ msgstr "Mõõdu tüüp" #. module: product #: model:product.uom.categ,name:product.product_uom_categ_kgm msgid "Weight" -msgstr "" +msgstr "Kaal" #. module: product #: model:product.template,name:product.product_product_22_product_template @@ -728,7 +718,7 @@ msgstr "Protsessor nõudmisel" #. module: product #: help:product.supplierinfo,product_name:0 msgid "Name of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one." -msgstr "" +msgstr "Tootenimetus sellele partnerile. Kasutatakse hinnapakkumise printimisel. Jäta tühjaks, kui soovid kasutada sisemist nime." #. module: product #: field:product.template,supply_method:0 @@ -743,14 +733,7 @@ msgstr "IT komponentide komplektid" #. module: product #: view:product.uom.categ:0 msgid "Units of Measure categories" -msgstr "" - -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Jada" +msgstr "Mõõtühikute kategooriad" #. module: product #: view:product.supplierinfo:0 @@ -787,7 +770,7 @@ msgstr "Kirjeldused" #. module: product #: model:process.transition,name:product.process_transition_supplierofproduct0 msgid "Suppliers of Product" -msgstr "" +msgstr "Toote tarnijad" #. module: product #: field:product.pricelist.version,date_start:0 @@ -822,7 +805,7 @@ msgstr "Kategooria" #. module: product #: help:product.pricelist.item,min_quantity:0 msgid "The rule only applies if the partner buys/sells more than this quantity." -msgstr "" +msgstr "Reegel rakendub, kui partner ostab/müüb sellest kogusest rohkem." #. module: product #: model:product.template,name:product.product_product_ram_product_template @@ -842,12 +825,12 @@ msgstr "Toote kategooriad" #. module: product #: help:product.uom,category_id:0 msgid "Unit of Measure of a category can be converted between each others in the same category." -msgstr "" +msgstr "Sama kategooria mõõtühikut saab vastastikku ümber arvestada." #. module: product #: model:ir.model,name:product.model_product_uom msgid "Product Unit of Measure" -msgstr "" +msgstr "Toote mõõtühik" #. module: product #: field:product.template,sale_ok:0 @@ -872,18 +855,12 @@ msgstr "Emaplaat ASUStek A7V8X-X" #. module: product #: field:product.uom,factor:0 msgid "Rate" -msgstr "" +msgstr "Määr" #. module: product #: view:product.pricelist.item:0 msgid "Products Listprices Items" -msgstr "" - -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" +msgstr "Toodete hinnakirjahindade esemed" #. module: product #: field:product.uom,rounding:0 @@ -903,7 +880,7 @@ msgstr "Pakkide kogus" #. module: product #: help:product.template,uos_id:0 msgid "Used by companies that manages two unit of measure: invoicing and stock management. For example, in food industries, you will manage a stock of ham but invoice in Kg. Keep empty to use the default UOM." -msgstr "" +msgstr "Kasutusel ettetvõtete poolt, mis haldavad kahte mõõtühikut: arveldmine ja laohaldus. Näiteks toiduainetööstuses haldad sa singivarusid aga arveldad kilodes. Hoia tühjana, et kasutada vaikimisi möötühikut." #. module: product #: view:product.product:0 @@ -948,7 +925,7 @@ msgstr "Avalik hind" #. module: product #: field:product.pricelist.item,price_max_margin:0 msgid "Max. Price Margin" -msgstr "" +msgstr "Maks. hinnamarginaal" #. module: product #: view:res.partner:0 @@ -963,12 +940,12 @@ msgstr "IT komponendid" #. module: product #: help:product.packaging,weight_ul:0 msgid "The weight of the empty UL" -msgstr "" +msgstr "Tühja logistilise üksuse kaal" #. module: product #: help:product.packaging,code:0 msgid "The code of the transport unit." -msgstr "" +msgstr "Transpordiüksuse kood" #. module: product #: field:product.template,uom_po_id:0 @@ -988,31 +965,27 @@ msgstr "Toote müügijuht" #. module: product #: field:product.product,price_extra:0 msgid "Variant Price Extra" -msgstr "" +msgstr "Variandi hinnalisa" #. module: product #: model:product.template,name:product.product_product_fan_product_template msgid "Regular case fan 80mm" -msgstr "Tavaline korpuse fan 80mm" +msgstr "Tavaline korpuse ventilaator 80mm" #. module: product #: model:ir.model,name:product.model_product_supplierinfo msgid "Information about a product supplier" -msgstr "" +msgstr "Info toote tarnija kohta" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktiivne" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Pakub erinevaid viise sama toote pakendamiseks. Sellel puudub mõju pakendamiskorrldusele ja kasutatakse peamiselt, kui sa kasutad EDI moodulit." #. module: product #: field:product.product,price_margin:0 msgid "Variant Price Margin" -msgstr "" +msgstr "Variandi hinnamarginaal" #. module: product #: wizard_view:product.price_list,init:0 @@ -1027,7 +1000,7 @@ msgstr "Keskmine PC" #. module: product #: model:ir.model,name:product.model_pricelist_partnerinfo msgid "pricelist.partnerinfo" -msgstr "" +msgstr "pricelist.partnerinfo" #. module: product #: model:product.price.type,name:product.standard_price @@ -1051,7 +1024,7 @@ msgstr "Teine mõõtühik" #. module: product #: help:product.template,seller_delay:0 msgid "This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the scheduler to order requests based on reordering delays." -msgstr "" +msgstr "See on keskmine viivitus päevades ostutellimuse kinnitamise ja kaupade vastuvõtmise vahel sellele tootele ja vaikimisi tarnijale. Seda kasutatakse planeerija poolt tellimuse jaoks põhinedes taastellimise viivitustel." #. module: product #: model:product.category,name:product.product_category_4 @@ -1072,12 +1045,12 @@ msgstr "Paki pikkus" #. module: product #: field:product.pricelist.item,price_min_margin:0 msgid "Min. Price Margin" -msgstr "" +msgstr "Min.hinnamarginaal" #. module: product #: help:product.packaging,ean:0 msgid "The EAN code of the package unit." -msgstr "" +msgstr "Pakendi EAN kood." #. module: product #: field:product.template,weight:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Brutokaal" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sul ei saa olla 2 hinnakirja versiooni mis kattuvad!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktiivne" #. module: product #: model:ir.model,name:product.model_product_category @@ -1103,7 +1075,7 @@ msgstr "Toote kategooria" #. module: product #: field:product.price.type,field:0 msgid "Product Field" -msgstr "" +msgstr "Toote väli" #. module: product #: model:ir.actions.act_window,name:product.product_pricelist_type_action @@ -1137,7 +1109,8 @@ msgstr "Tootekood" #: help:product.uom,factor_inv:0 msgid "The coefficient for the formula:\n" "coeff (base unit) = 1 (this unit). Factor = 1 / Rate." -msgstr "" +msgstr "Koefitsent valemile:\n" +"koef (baasühik) = 1 (see ühik). Faktor = 1 / määr" #. module: product #: view:product.supplierinfo:0 @@ -1165,17 +1138,19 @@ msgstr "Vaikimisi mõõtühik kasutatakse kõigis laooperatsioonides." #: field:product.product,product_tmpl_id:0 #: view:product.template:0 msgid "Product Template" -msgstr "" +msgstr "Toote mall" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Jada" #. module: product #: help:product.uom,rounding:0 msgid "The computed quantity will be a multiple of this value. Use 1.0 for products that can not be split." -msgstr "" +msgstr "Arvutatud kogus on selle väärtuse kordne. Kasuta 1.0 toodetel, mida ei saa poolitada." #. module: product #: field:product.packaging,height:0 @@ -1190,7 +1165,7 @@ msgstr "Kohandatav PC" #. module: product #: help:product.pricelist.version,date_end:0 msgid "Ending date for this pricelist version to be valid." -msgstr "" +msgstr "Selle hinnakirja versiooni kehtivuse lõpp" #. module: product #: field:pricelist.partnerinfo,suppinfo_id:0 @@ -1208,7 +1183,7 @@ msgstr "Toote tüüp" #: model:product.category,name:product.product_category_7 #: model:product.template,name:product.product_product_1_product_template msgid "Onsite Intervention" -msgstr "" +msgstr "Kohapealne sekkumine" #. module: product #: model:product.category,name:product.cat0 @@ -1223,12 +1198,12 @@ msgstr "Loobu" #. module: product #: help:product.packaging,qty:0 msgid "The total number of products you can put by palet or box." -msgstr "" +msgstr "Toodete koguarv, mis mahub kaubaalusele või kasti." #. module: product #: model:ir.model,name:product.model_product_pricelist_item msgid "Pricelist item" -msgstr "" +msgstr "Hinnakirja ese" #. module: product #: model:ir.actions.wizard,name:product.report_wizard_price @@ -1268,16 +1243,10 @@ msgstr "Kogus-2" msgid "Information" msgstr "Informatsioon" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" -msgstr "" +msgstr "Koodid" #. module: product #: constraint:ir.model:0 @@ -1314,7 +1283,7 @@ msgstr "Hinnakirja kirjed" #. module: product #: help:product.supplierinfo,product_code:0 msgid "Code of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one." -msgstr "" +msgstr "Tootekood partneri jaoks. Kasutatakse noteerimispäringu prinitimisel. Hoia tühjana, et kasutada sisemist koodi." #. module: product #: selection:product.template,state:0 @@ -1324,7 +1293,7 @@ msgstr "Vananenud" #. module: product #: selection:product.ul,type:0 msgid "Pallet" -msgstr "" +msgstr "Kaubaalus" #. module: product #: field:pricelist.partnerinfo,price:0 @@ -1339,12 +1308,12 @@ msgstr "Garantii (kuud)" #. module: product #: field:product.packaging,ul_qty:0 msgid "Package by layer" -msgstr "" +msgstr "Pakend kihi kaupa" #. module: product #: help:product.template,type:0 msgid "Will change the way procurements are processed. Consumables are stockable products with infinite stock, or for use when you have no stock management in the system." -msgstr "" +msgstr "Muudab hankimiste töötlemise viisi. Tarvikud on ladustatavad tooted lõputu laoseisuga või ilma laohalduseta süsteemis." #. module: product #: model:process.node,note:product.process_node_supplier0 @@ -1354,7 +1323,7 @@ msgstr "Toote tarnijad, koos nende tootenimede, hinna jne." #. module: product #: model:ir.model,name:product.model_product_price_type msgid "Price type" -msgstr "Hinnatüüp" +msgstr "Hinna tüüp" #. module: product #: model:ir.model,name:product.model_product_product @@ -1395,17 +1364,17 @@ msgstr "Toote kirjeldus" #. module: product #: view:product.pricelist.item:0 msgid " ) + " -msgstr "" +msgstr " ) + " #. module: product #: help:product.template,sale_delay:0 msgid "This is the average time between the confirmation of the customer order and the delivery of the finished products. It's the time you promise to your customers." -msgstr "" +msgstr "See on keskmine aeg kliendi tellimuse kinnitamise ja valmis toote kättetoimetamise vahel. See on aeg, mida sa lubad oma klientidele." #. module: product #: model:ir.model,name:product.model_product_uom_categ msgid "Product uom categ" -msgstr "" +msgstr "Toote MÜ kategooria" #. module: product #: wizard_field:product.price_list,init,qty3:0 @@ -1415,12 +1384,12 @@ msgstr "Kogus-3" #. module: product #: model:product.ul,name:product.product_ul_box msgid "Box 20x20x40" -msgstr "" +msgstr "Kast20x20x40" #. module: product #: selection:product.template,supply_method:0 msgid "Produce" -msgstr "" +msgstr "Tooda" #. module: product #: selection:product.template,procure_method:0 @@ -1430,6 +1399,11 @@ msgstr "Loo tellimus" #. module: product #: field:product.pricelist.item,price_surcharge:0 msgid "Price Surcharge" +msgstr "Hinna lisamaks" + +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" msgstr "" #. module: product @@ -1455,7 +1429,7 @@ msgstr "Emaplaat ASUStek A7N8X" #. module: product #: field:product.template,loc_case:0 msgid "Case" -msgstr "Juhtum" +msgstr "Kast" #. module: product #: field:product.pricelist.version,date_end:0 @@ -1471,7 +1445,7 @@ msgstr "Toodete kategooriad" #. module: product #: field:product.product,packaging:0 msgid "Logistical Units" -msgstr "" +msgstr "Logistilised üksused" #. module: product #: field:product.category,complete_name:0 @@ -1489,17 +1463,18 @@ msgstr "Nimi" #: help:product.template,uos_coeff:0 msgid "Coefficient to convert UOM to UOS\n" " uom = uos * coeff" -msgstr "" +msgstr "Koefitsent, et konventeerida mõõtühik müügiühikuks.\n" +" MõÜ = MüÜ * koef." #. module: product #: field:product.template,purchase_ok:0 msgid "Can be Purchased" -msgstr "" +msgstr "On ostetav" #. module: product #: field:product.template,uos_coeff:0 msgid "UOM -> UOS Coeff" -msgstr "" +msgstr "MõÜ -> MüÜ kordaja" #. module: product #: model:product.template,name:product.product_product_cpu2_product_template @@ -1520,7 +1495,7 @@ msgstr "Kuluarvutusmeetod" #: view:product.packaging:0 #: view:product.product:0 msgid "Palletization" -msgstr "" +msgstr "Kaubaalus" #. module: product #: code:addons/product/pricelist.py:0 @@ -1537,7 +1512,16 @@ msgstr "Hinnad ja Tarnijad" #. module: product #: help:product.packaging,weight:0 msgid "The weight of a full of products palet or box." -msgstr "" +msgstr "Kaubaga täidetud kaubaaluse või kasti kaal." + +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "Määrab hinna nii, et see on selle väärtuse kordne.\n" +"Ümardmine rakendatakse peale allahindlust ja enne lisatasu.\n" +"Et saada hindu, mis lõppevad 9.99, määra ümarduseks 10, lisatasu -0,01" #. module: product #: selection:product.template,state:0 @@ -1547,18 +1531,19 @@ msgstr "Eluea lõpp" #. module: product #: model:ir.module.module,shortdesc:product.module_meta_information msgid "Products & Pricelists" -msgstr "" +msgstr "Tooted ja hinnakirjad" #. module: product #: help:product.uom,factor:0 msgid "The coefficient for the formula:\n" "1 (base unit) = coeff (this unit). Rate = 1 / Factor." -msgstr "" +msgstr "Koefitsent valemile:\n" +"1 (baasühik) = koef. (see ühik). Määr = 1 / faktor" #. module: product #: help:product.template,weight_net:0 msgid "The net weight in Kg." -msgstr "" +msgstr "Netokaal kilodes." #. module: product #: model:product.template,name:product.product_product_tow1_product_template @@ -1580,7 +1565,7 @@ msgstr "Hinnakirja versioonid" #. module: product #: field:product.packaging,weight_ul:0 msgid "Empty Package Weight" -msgstr "" +msgstr "Tühja pakendi kaal" #. module: product #: field:product.template,list_price:0 @@ -1590,7 +1575,7 @@ msgstr "Müügihind" #. module: product #: help:product.template,produce_delay:0 msgid "Average time to produce this product. This is only for the production order and, if it is a multi-level bill of material, it's only for the level of this product. Different delays will be summed for all levels and purchase orders." -msgstr "" +msgstr "Keskmine aeg selle toote tootmiseks. See on ainult tootmiskorralduse jaoks ja kui see on mitmetasandiline kaubakooslus siis on see ainult selle toote tasemele. Erinevad viivitused summeeritakse kõigile tasemetele ja ostutellimustele." #. module: product #: wizard_field:product.price_list,init,qty1:0 @@ -1610,7 +1595,15 @@ msgstr "Privaatne" #. module: product #: help:product.supplierinfo,delay:0 msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." -msgstr "" +msgstr "Viivitus päevades ostutellimuse kinnitamise ja toodete lattu saabumise vahel. Kasutatakse planeerija poolt ostutellimuse planeerimise automaatseks arvutamiseks." + +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Mõõtühikud" #. module: product #: help:product.template,uom_po_id:0 @@ -1620,7 +1613,7 @@ msgstr "Vaikimisi mõõtühik ostutellimusel. See peab olema samas kategooriast #. module: product #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: product #: field:product.pricelist.item,min_quantity:0 @@ -1630,7 +1623,7 @@ msgstr "Vähim kogus" #. module: product #: help:product.pricelist.item,categ_id:0 msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products" -msgstr "" +msgstr "Määra toote kategooria, kui see reegel rakendub ainult kategooria toodetele ja nende alamatele. Hoia tühjana kõigi toodete jaoks." #. module: product #: model:ir.actions.report.xml,name:product.report_product_label @@ -1640,17 +1633,17 @@ msgstr "Tootete sildid" #. module: product #: help:product.template,volume:0 msgid "The volume in m3." -msgstr "" +msgstr "Maht kuupmeetrites." #. module: product #: model:product.ul,name:product.product_ul_big_box msgid "Box 30x40x60" -msgstr "" +msgstr "Kast 30x40x60" #. module: product #: model:product.uom,name:product.product_uom_kgm msgid "KGM" -msgstr "" +msgstr "Kg" #. module: product #: field:product.pricelist.item,price_discount:0 diff --git a/addons/product/i18n/fr_FR.po b/addons/product/i18n/fr_FR.po index d03446759ac..0f8d0293de6 100644 --- a/addons/product/i18n/fr_FR.po +++ b/addons/product/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Si autre liste de prix" msgid "Products" msgstr "Produits" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unités de mesure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unité de livraison" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "Kits de composants IT" msgid "Units of Measure categories" msgstr "Catégories d'unités de mesure" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Séquence" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Rapport" msgid "Products Listprices Items" msgstr "Lignes de liste de prix" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "Unité %d" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Information sur le fournisseur du produit" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Actif" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Donne les différentes manières de coliser le même produit. Ceci n'a pas d'impacte sur l'ordre de colisage et est principalement utilisé si vous utilisez le module EDI." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Poids" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Donne les différentes manières de coliser le même produit. Ceci n'a pas d'impacte sur l'ordre de colisage et est principalement utilisé si vous utilisez le module EDI." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Vous en pouvez pas avoir 2 listes de prix avec des dates qui se chevauchent" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Actif" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Modèle de produit" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unité de livraison" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Séquence" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Quantité-2" msgid "Information" msgstr "Information" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d unités" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Fabrication à la commande" msgid "Price Surcharge" msgstr "Surcharge du prix" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "Prix & fournisseurs" msgid "The weight of a full of products palet or box." msgstr "Le poids d'une palette ou d'une boite de produits remplie" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "Privé" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unités de mesure" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/hr_HR.po b/addons/product/i18n/hr_HR.po index 76f5b8c4756..5de2b4f2fbe 100644 --- a/addons/product/i18n/hr_HR.po +++ b/addons/product/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/hu_HU.po b/addons/product/i18n/hu_HU.po index 490e93535c4..8ec91c63594 100644 --- a/addons/product/i18n/hu_HU.po +++ b/addons/product/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Alapárlista" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktív" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktív" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/it_IT.po b/addons/product/i18n/it_IT.po index 338178fa92b..7a2305fef7f 100644 --- a/addons/product/i18n/it_IT.po +++ b/addons/product/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "In altro Listino" msgid "Products" msgstr "Prodotti" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unità di Misura" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unità di Spedizione" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "Categorie di Unità di Misura" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Sequenza" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Velocità" msgid "Products Listprices Items" msgstr "Oggetto Listino Prodotto" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d unità" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Informazioni su un Fornitore Prodotto" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Attivo" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Definisce i diversi modi di imballare il medesimo prodotto. Non ha alcun effetto sull'ordine di imballaggio e viene utilizzato principalmente se è installato il modulo EDI" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Peso Lordo" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Definisce i diversi modi di imballare il medesimo prodotto. Non ha alcun effetto sull'ordine di imballaggio e viene utilizzato principalmente se è installato il modulo EDI" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Non puoi avere due versioni dello stesso listino che si sovrappongono" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Attivo" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Modello Prodotto" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unità di Spedizione" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Sequenza" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Informazioni" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d unità" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Produzione da Ordine" msgid "Price Surcharge" msgstr "Ricarico Prezzo" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Prezzi & fornitori" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unità di Misura" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/lt_LT.po b/addons/product/i18n/lt_LT.po index 2aa22276b3a..aef7d6fc97e 100644 --- a/addons/product/i18n/lt_LT.po +++ b/addons/product/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "Produktai" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/nb_NB.po b/addons/product/i18n/nb_NB.po index d2f79b2bf1a..e72577b32cc 100644 --- a/addons/product/i18n/nb_NB.po +++ b/addons/product/i18n/nb_NB.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2008-12-08 16:24+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-20 07:27+0000\n" "Last-Translator: Bjørn Olav Samdal \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:28+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:31+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -27,17 +27,6 @@ msgstr "Maksimum Margin" msgid "Base Price" msgstr "Grunnpris" -#. module: product -#: help:product.template,sale_delay:0 -msgid "" -"This is the average time between the confirmation of the customer order and " -"the delivery of the finnished products. It's the time you promise to your " -"customers." -msgstr "" -"Det er en gjennomsnittlig tid mellom bekreftelse av kundes ordre og " -"ferdigstillingen av det ferdige produktet. Dette er tiden du lover deg til " -"ovenfor kunden." - #. module: product #: selection:product.template,type:0 msgid "Service" @@ -52,16 +41,211 @@ msgstr "" "Velg om produktet er vis bart i listen over produkter som innehar den sammen " "ordrerekkefølgen." -#. module: product -#: help:product.supplierinfo,name:0 -msgid "Supplier of this product" -msgstr "" - #. module: product #: model:product.template,name:product.product_product_ram512_product_template msgid "DDR 512MB PC400" msgstr "DDR 512MB PC400" +#. module: product +#: field:product.template,weight_net:0 +msgid "Net weight" +msgstr "Vekt" + +#. module: product +#: field:product.packaging,width:0 +msgid "Width" +msgstr "Bredde" + +#. module: product +#: selection:product.template,cost_method:0 +msgid "Standard Price" +msgstr "Standard pris" + +#. module: product +#: field:product.price.type,name:0 +msgid "Price Name" +msgstr "Kostnadsnavn" + +#. module: product +#: field:product.product,price:0 +msgid "Customer Price" +msgstr "Kundepris" + +#. module: product +#: field:product.product,lst_price:0 +msgid "List Price" +msgstr "Listepris" + +#. module: product +#: model:ir.actions.act_window,name:product.product_price_type_action +#: model:ir.ui.menu,name:product.menu_product_price_type_action +msgid "Prices Types" +msgstr "Pristype" + +#. module: product +#: model:product.template,name:product.product_product_cpu3_product_template +msgid "Processor AMD Athlon XP 2200+" +msgstr "Processor AMD Athlon XP 2200+" + +#. module: product +#: field:product.product,incoming_qty:0 +msgid "Incoming" +msgstr "Innkommende" + +#. module: product +#: view:product.product:0 +#: view:product.template:0 +msgid "Weigths" +msgstr "Vekt" + +#. module: product +#: model:product.template,name:product.product_product_fan2_product_template +msgid "Silent fan" +msgstr "Stille vifte" + +#. module: product +#: field:product.pricelist.item,base_pricelist_id:0 +msgid "If Other Pricelist" +msgstr "Hvis Annen Prisliste" + +#. module: product +#: model:ir.actions.act_window,name:product.product_normal_action +#: model:ir.actions.act_window,name:product.product_normal_action_tree +#: model:ir.ui.menu,name:product.menu_main_product +#: model:ir.ui.menu,name:product.menu_products +#: view:product.product:0 +msgid "Products" +msgstr "Produkter" + +#. module: product +#: view:product.pricelist.item:0 +msgid "New Price =" +msgstr "Ny Pris =" + +#. module: product +#: selection:product.template,mes_type:0 +msgid "Fixed" +msgstr "Fast" + +#. module: product +#: model:ir.model,name:product.model_product_pricelist_type +#: field:product.pricelist,type:0 +#: view:product.pricelist.type:0 +msgid "Pricelist Type" +msgstr "Prisliste Type" + +#. module: product +#: view:product.product:0 +#: view:product.template:0 +msgid "Base Prices" +msgstr "Grunnpris" + +#. module: product +#: model:ir.ui.menu,name:product.menu_config_product +msgid "Configuration" +msgstr "Konfigurasjon" + +#. module: product +#: field:product.pricelist.item,base:0 +msgid "Based on" +msgstr "Basert på" + +#. module: product +#: model:product.template,name:product.product_product_24_product_template +msgid "Keyboard" +msgstr "Tastatur" + +#. module: product +#: field:product.supplierinfo,name:0 +msgid "Partner" +msgstr "Partner" + +#. module: product +#: model:product.template,name:product.product_product_25_product_template +msgid "Mouse" +msgstr "Mus" + +#. module: product +#: field:product.template,seller_ids:0 +msgid "Partners" +msgstr "Partnere" + +#. module: product +#: selection:product.template,cost_method:0 +msgid "Average Price" +msgstr "Gjennomsnittlig Pris" + +#. module: product +#: selection:product.template,state:0 +msgid "In Production" +msgstr "I Produksjon" + +#. module: product +#: field:product.supplierinfo,sequence:0 +msgid "Priority" +msgstr "Prioritet" + +#. module: product +#: model:product.template,name:product.product_product_20_product_template +msgid "HDD on demand" +msgstr "HDD etter etterspørsel" + +#. module: product +#: selection:product.template,type:0 +msgid "Consumable" +msgstr "Konsumerbar" + +#. module: product +#: model:ir.actions.act_window,name:product.product_category_action +#: model:ir.ui.menu,name:product.menu_product_category_action +msgid "Products by Category" +msgstr "Produktkategorier" + +#. module: product +#: field:product.template,uos_id:0 +msgid "Unit of Sale" +msgstr "Mengde på Salg" + +#. module: product +#: model:ir.model,name:product.model_product_pricelist_version +#: view:product.pricelist:0 +#: view:product.pricelist.version:0 +msgid "Pricelist Version" +msgstr "Prislisteversjon" + +#. module: product +#: selection:product.template,mes_type:0 +msgid "Variable" +msgstr "Variabel" + +#. module: product +#: model:ir.actions.wizard,name:product.report_wizard_price +#: field:product.pricelist.version,pricelist_id:0 +msgid "Price List" +msgstr "Prisliste" + +#. module: product +#: model:product.template,name:product.product_product_pc2_product_template +msgid "Basic+ PC (assembly on order)" +msgstr "Basic+ PC (sett sammen ordre)" + +#. module: product +#: selection:product.template,state:0 +msgid "End of Lifecycle" +msgstr "Slutt på livssyklus" + +#. module: product +#: help:product.template,standard_price:0 +msgid "" +"The cost of the product for accounting stock valuation. It can serves as a " +"base price for supplier price." +msgstr "" + +#. module: product +#: help:product.supplierinfo,name:0 +msgid "Supplier of this product" +msgstr "" + #. module: product #: model:product.template,name:product.product_product_0_product_template msgid "Onsite Senior Intervention" @@ -74,11 +258,6 @@ msgid "" "unit of measure." msgstr "" -#. module: product -#: field:product.template,weight_net:0 -msgid "Net weight" -msgstr "Vekt" - #. module: product #: help:product.product,incoming_qty:0 msgid "" @@ -94,11 +273,6 @@ msgid "" "Incoming." msgstr "" -#. module: product -#: field:product.packaging,width:0 -msgid "Width" -msgstr "Bredde" - #. module: product #: help:product.pricelist.item,product_tmpl_id:0 msgid "" @@ -111,6 +285,11 @@ msgstr "" msgid "Procure Method" msgstr "" +#. module: product +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: product #: model:process.process,name:product.process_process_productprocess0 msgid "Product Process" @@ -121,11 +300,6 @@ msgstr "" msgid "Associated field in the product form." msgstr "" -#. module: product -#: selection:product.template,cost_method:0 -msgid "Standard Price" -msgstr "Standard pris" - #. module: product #: code:addons/product/product.py:0 #, python-format @@ -152,40 +326,14 @@ msgstr "" msgid "Kit Keyboard + Mouse" msgstr "" -#. module: product -#: field:product.price.type,name:0 -msgid "Price Name" -msgstr "Kostnadsnavn" - -#. module: product -#: help:product.pricelist.item,base:0 -msgid "The mode of computation of the price for this rule." -msgstr "" - -#. module: product -#: field:product.product,price:0 -msgid "Customer Price" -msgstr "Kundepris" - #. module: product #: field:product.template,company_id:0 msgid "Company" msgstr "" #. module: product -#: field:product.product,lst_price:0 -msgid "List Price" -msgstr "Listepris" - -#. module: product -#: model:ir.actions.act_window,name:product.product_price_type_action -#: model:ir.ui.menu,name:product.menu_product_price_type_action -msgid "Prices Types" -msgstr "Pristype" - -#. module: product -#: selection:product.template,supply_method:0 -msgid "Produce" +#: field:product.template,rental:0 +msgid "Rentable Product" msgstr "" #. module: product @@ -193,11 +341,6 @@ msgstr "" msgid "Stockable Product" msgstr "" -#. module: product -#: model:process.transition,name:product.process_transition_supplierofproduct0 -msgid "Supplier of Product" -msgstr "" - #. module: product #: model:product.category,name:product.product_category_services msgid "Services" @@ -210,52 +353,27 @@ msgid "" "price." msgstr "" -#. module: product -#: help:product.pricelist.version,date_start:0 -msgid "Starting date for validity of this pricelist version." -msgstr "" - #. module: product #: code:addons/product/pricelist.py:0 #, python-format msgid "Partner section of the product form" msgstr "" -#. module: product -#: model:product.template,name:product.product_product_cpu3_product_template -msgid "Processor AMD Athlon XP 2200+" -msgstr "Processor AMD Athlon XP 2200+" - #. module: product #: help:product.price.type,name:0 msgid "Name of this kind of price." msgstr "" #. module: product -#: field:product.product,incoming_qty:0 -msgid "Incoming" -msgstr "Innkommende" +#: help:product.pricelist.version,date_start:0 +msgid "Starting date for this pricelist version to be valid." +msgstr "" #. module: product #: selection:product.template,procure_method:0 msgid "Make to Stock" msgstr "" -#. module: product -#: field:product.category,child_id:0 -msgid "Childs Categories" -msgstr "Barnekategori" - -#. module: product -#: field:product.template,rental:0 -msgid "Rentable product" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_fan2_product_template -msgid "Silent fan" -msgstr "Stille vifte" - #. module: product #: help:product.template,supply_method:0 msgid "" @@ -263,51 +381,35 @@ msgid "" "type. Purchase will trigger purchase orders when requested." msgstr "" +#. module: product +#: model:process.transition,note:product.process_transition_supplierofproduct0 +msgid "You can see the list of suppliers for that product." +msgstr "" + #. module: product #: help:product.packaging,rows:0 msgid "The number of layer on a palet or box" msgstr "" #. module: product +#: model:product.pricelist.type,name:product.pricelist_type_sale #: field:res.partner,property_product_pricelist:0 msgid "Sale Pricelist" msgstr "" #. module: product -#: field:product.pricelist.item,base_pricelist_id:0 -msgid "If Other Pricelist" -msgstr "Hvis Annen Prisliste" - -#. module: product -#: help:product.template,type:0 +#: help:product.pricelist.item,price_round:0 msgid "" -"Will change the way procurements are processed, consumable are stockable " -"products with infinite stock, or without a stock management in the system." +"Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" msgstr "" -#. module: product -#: model:ir.actions.act_window,name:product.product_normal_action -#: model:ir.ui.menu,name:product.menu_main_product -#: model:ir.ui.menu,name:product.menu_products -#: view:product.product:0 -msgid "Products" -msgstr "Produkter" - -#. module: product -#: view:product.pricelist.item:0 -msgid "New Price =" -msgstr "Ny Pris =" - #. module: product #: field:product.product,virtual_available:0 msgid "Virtual Stock" msgstr "" -#. module: product -#: selection:product.template,mes_type:0 -msgid "Fixed" -msgstr "Fast" - #. module: product #: model:ir.actions.act_window,name:product.product_uom_categ_form_action #: model:ir.ui.menu,name:product.menu_product_uom_categ_form_action @@ -315,23 +417,12 @@ msgid "Units of Measure Categories" msgstr "" #. module: product -#: field:product.pricelist.item,price_max_margin:0 -msgid "Price Max. Margin" +#: 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 -#: model:ir.model,name:product.model_product_pricelist_type -#: field:product.pricelist,type:0 -#: view:product.pricelist.type:0 -msgid "Pricelist Type" -msgstr "Prisliste Type" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Base Prices" -msgstr "Grunnpris" - #. module: product #: model:ir.ui.menu,name:product.menu_price msgid "Prices Computations" @@ -342,17 +433,6 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: product -#: model:ir.ui.menu,name:product.menu_config_product -msgid "Configuration" -msgstr "Konfigurasjon" - -#. module: product -#: view:product.packaging:0 -#: view:product.product:0 -msgid "Palette Dimension" -msgstr "" - #. module: product #: field:product.packaging,rows:0 msgid "Number of Layer" @@ -379,38 +459,16 @@ msgid "Supplier Pricelist" msgstr "" #. module: product -#: help:product.pricelist.item,price_round:0 -msgid "" -"Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that ends by 9.99, set rounding 10, surcharge -0.01" +#: view:product.packaging:0 +#: view:product.product:0 +msgid "Pallet Dimension" msgstr "" -#. module: product -#: field:product.pricelist.item,base:0 -msgid "Based on" -msgstr "Basert på" - -#. module: product -#: model:product.template,name:product.product_product_24_product_template -msgid "Keyboard" -msgstr "Tastatur" - -#. module: product -#: field:product.supplierinfo,name:0 -msgid "Partner" -msgstr "Partner" - #. module: product #: field:product.template,sale_delay:0 msgid "Customer Lead Time" msgstr "" -#. module: product -#: model:product.template,name:product.product_product_25_product_template -msgid "Mouse" -msgstr "Mus" - #. module: product #: help:product.template,cost_method:0 msgid "" @@ -424,23 +482,6 @@ msgstr "" msgid "Pricelist Name" msgstr "" -#. module: product -#: field:product.template,seller_ids:0 -msgid "Partners" -msgstr "Partnere" - -#. module: product -#: selection:product.template,cost_method:0 -msgid "Average Price" -msgstr "Gjennomsnittlig Pris" - -#. 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" -msgstr "" - #. module: product #: model:process.node,note:product.process_node_product0 msgid "Create new Product" @@ -467,25 +508,15 @@ msgid "Processor AMD Athlon XP 1800+" msgstr "" #. module: product -#: selection:product.template,state:0 -msgid "In Production" -msgstr "I Produksjon" +#: field:product.category,child_id:0 +msgid "Child Categories" +msgstr "" #. module: product #: model:product.category,name:product.product_category_accessories msgid "Accessories" msgstr "" -#. module: product -#: field:product.supplierinfo,sequence:0 -msgid "Priority" -msgstr "Prioritet" - -#. module: product -#: model:product.template,name:product.product_product_20_product_template -msgid "HDD on demand" -msgstr "HDD etter etterspørsel" - #. module: product #: field:product.uom,factor_inv:0 #: field:product.uom,factor_inv_data:0 @@ -498,8 +529,8 @@ msgid "Print" msgstr "" #. module: product -#: selection:product.ul,type:0 -msgid "Palet" +#: model:process.node,name:product.process_node_supplier0 +msgid "Supplier Info" msgstr "" #. module: product @@ -542,8 +573,16 @@ msgid "Miscelleanous" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: help:product.pricelist.item,base:0 +msgid "The mode for computing the price for this rule." +msgstr "" + +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" msgstr "" #. module: product @@ -571,6 +610,11 @@ msgstr "" msgid "Supplier Lead Time" msgstr "" +#. module: product +#: model:product.pricelist.version,name:product.ver0 +msgid "Default Public Pricelist Version" +msgstr "" + #. module: product #: field:product.pricelist.type,key:0 msgid "Key" @@ -594,14 +638,10 @@ msgid "" msgstr "" #. module: product -#: field:product.pricelist.item,price_min_margin:0 -msgid "Price Min. Margin" -msgstr "Pris Minimums Margin" - -#. module: product -#: selection:product.template,type:0 -msgid "Consumable" -msgstr "Konsumerbar" +#: model:ir.model,name:product.model_product_pricelist +#: view:product.supplierinfo:0 +msgid "Pricelist" +msgstr "" #. module: product #: help:product.price.type,currency_id:0 @@ -624,23 +664,11 @@ msgstr "" msgid "Box" msgstr "" -#. module: product -#: help:product.template,standard_price:0 -msgid "" -"The cost of the product for accounting stock valorisation. It can serves as " -"a base price for supplier price." -msgstr "" - #. module: product #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" -#. module: product -#: model:process.transition,note:product.process_transition_supplierofproduct0 -msgid "You can see the list of supplier for that product." -msgstr "" - #. module: product #: help:product.template,sale_ok:0 msgid "" @@ -648,12 +676,6 @@ msgid "" "selection from a sale order line." msgstr "" -#. module: product -#: help:product.uom,category_id:0 -msgid "" -"Unit of Measure of the same category can be converted between each others." -msgstr "" - #. module: product #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" @@ -688,23 +710,33 @@ msgstr "" msgid "Total Package Weight" msgstr "" +#. module: product +#: help:product.template,procure_method:0 +msgid "" +"'Make to Stock': When needed, take from the stock or wait until re-" +"supplying. 'Make to Order': When needed, purchase or produce for the " +"procurement request." +msgstr "" + #. module: product #: view:product.product:0 #: view:product.template:0 msgid "Procurement" msgstr "" -#. module: product -#: model:ir.actions.act_window,name:product.product_category_action -#: model:ir.ui.menu,name:product.menu_product_category_action -msgid "Products by Category" -msgstr "Produktkategorier" - #. module: product #: model:product.template,name:product.product_product_hdd1_product_template msgid "HDD Seagate 7200.8 80GB" msgstr "" +#. module: product +#: help:product.pricelist.version,active:0 +msgid "" +"When a version is duplicated it is set to non active, so that the dates do " +"not overlaps with original version. You should change the dates and " +"reactivate the pricelist" +msgstr "" + #. module: product #: model:product.template,name:product.product_product_hdd3_product_template msgid "HDD Seagate 7200.8 160GB" @@ -741,9 +773,11 @@ msgid "EAN13" msgstr "" #. module: product -#: field:product.template,uos_id:0 -msgid "Unit of Sale" -msgstr "Mengde på Salg" +#: view:product.product:0 +#: view:product.template:0 +#: field:product.template,description_sale:0 +msgid "Sale Description" +msgstr "" #. module: product #: field:product.template,mes_type:0 @@ -783,10 +817,10 @@ msgid "Units of Measure categories" msgstr "" #. module: product -#: help:product.uom,factor_inv:0 -msgid "" -"The coefficient for the formula:\n" -"coef (base unit) = 1 (this unit)" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -795,9 +829,12 @@ msgid "Supplier Information" msgstr "" #. module: product +#: model:ir.actions.act_window,name:product.product_ul_form_action #: model:ir.model,name:product.model_product_packaging +#: model:ir.ui.menu,name:product.menu_product_ul_form_action #: view:product.packaging:0 #: view:product.product:0 +#: view:product.ul:0 msgid "Packaging" msgstr "" @@ -818,6 +855,11 @@ msgstr "" msgid "Descriptions" msgstr "" +#. module: product +#: model:process.transition,name:product.process_transition_supplierofproduct0 +msgid "Suppliers of Product" +msgstr "" + #. module: product #: field:product.pricelist.version,date_start:0 msgid "Start Date" @@ -850,6 +892,12 @@ msgstr "" msgid "Category" msgstr "" +#. module: product +#: help:product.pricelist.item,min_quantity:0 +msgid "" +"The rule only applies if the partner buys/sells more than this quantity." +msgstr "" + #. module: product #: model:product.template,name:product.product_product_ram_product_template msgid "DDR 256MB PC400" @@ -865,6 +913,13 @@ msgstr "" msgid "Product Categories" msgstr "" +#. module: product +#: help:product.uom,category_id:0 +msgid "" +"Unit of Measure of a category can be converted between each others in the " +"same category." +msgstr "" + #. module: product #: model:ir.model,name:product.model_product_uom msgid "Product Unit of Measure" @@ -897,11 +952,8 @@ msgid "Rate" msgstr "" #. module: product -#: help:product.template,procure_method:0 -msgid "" -"'Make to Stock': When needed, take from the stock or wait until " -"refurnishing. 'Make to Order': When needed, purchase or produce for the " -"procurement request." +#: view:product.pricelist.item:0 +msgid "Products Listprices Items" msgstr "" #. module: product @@ -956,19 +1008,6 @@ msgstr "" msgid "Buy" msgstr "" -#. module: product -#: model:ir.model,name:product.model_product_pricelist_version -#: view:product.pricelist:0 -#: view:product.pricelist.version:0 -msgid "Pricelist Version" -msgstr "Prislisteversjon" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Weigths" -msgstr "Vekt" - #. module: product #: field:product.pricelist.item,price_round:0 msgid "Price Rounding" @@ -979,6 +1018,11 @@ msgstr "" msgid "Public Price" msgstr "" +#. module: product +#: field:product.pricelist.item,price_max_margin:0 +msgid "Max. Price Margin" +msgstr "" + #. module: product #: view:res.partner:0 msgid "Sales & Purchases" @@ -1053,6 +1097,11 @@ msgstr "" msgid "Medium PC" msgstr "" +#. module: product +#: model:ir.model,name:product.model_pricelist_partnerinfo +msgid "pricelist.partnerinfo" +msgstr "" + #. module: product #: model:product.price.type,name:product.standard_price #: field:product.template,standard_price:0 @@ -1096,6 +1145,11 @@ msgstr "" msgid "The length of the package" msgstr "" +#. module: product +#: field:product.pricelist.item,price_min_margin:0 +msgid "Min. Price Margin" +msgstr "" + #. module: product #: help:product.packaging,ean:0 msgid "The EAN code of the package unit." @@ -1114,15 +1168,14 @@ msgid "" msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_ul_form_action -#: model:ir.ui.menu,name:product.menu_product_ul_form_action -#: view:product.ul:0 -msgid "Packagings" +#: constraint:product.pricelist.version:0 +msgid "You can not have 2 pricelist version that overlaps!" msgstr "" #. module: product -#: model:ir.model,name:product.model_pricelist_partnerinfo -msgid "pricelist.partnerinfo" +#: model:ir.model,name:product.model_product_category +#: field:product.pricelist.item,categ_id:0 +msgid "Product Category" msgstr "" #. module: product @@ -1158,6 +1211,13 @@ msgstr "" msgid "Code" msgstr "" +#. module: product +#: help:product.uom,factor_inv:0 +msgid "" +"The coefficient for the formula:\n" +"coeff (base unit) = 1 (this unit). Factor = 1 / Rate." +msgstr "" + #. module: product #: view:product.supplierinfo:0 msgid "Seq" @@ -1168,11 +1228,6 @@ msgstr "" msgid "Phone Help" msgstr "" -#. module: product -#: selection:product.template,mes_type:0 -msgid "Variable" -msgstr "Variabel" - #. module: product #: help:product.template,uom_id:0 msgid "Default Unit of Measure used for all stock operation." @@ -1187,10 +1242,15 @@ msgid "Product Template" msgstr "" #. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "" + +#. module: product +#: help:product.uom,rounding:0 +msgid "" +"The computed quantity will be a multiple of this value. Use 1.0 for products " +"that can not be split." msgstr "" #. module: product @@ -1203,6 +1263,11 @@ msgstr "" msgid "Customizable PC" msgstr "" +#. module: product +#: help:product.pricelist.version,date_end:0 +msgid "Ending date for this pricelist version to be valid." +msgstr "" + #. module: product #: field:pricelist.partnerinfo,suppinfo_id:0 msgid "Partner Information" @@ -1241,12 +1306,6 @@ msgstr "" msgid "Pricelist item" msgstr "" -#. module: product -#: model:ir.actions.wizard,name:product.report_wizard_price -#: field:product.pricelist.version,pricelist_id:0 -msgid "Price List" -msgstr "Prisliste" - #. module: product #: model:product.pricelist,name:product.list0 msgid "Public Pricelist" @@ -1286,8 +1345,8 @@ msgid "%d units" msgstr "" #. module: product -#: view:product.pricelist.item:0 -msgid "Products Listprices Items" +#: view:product.product:0 +msgid "Codes" msgstr "" #. module: product @@ -1335,6 +1394,11 @@ msgstr "" msgid "Obsolete" msgstr "" +#. module: product +#: selection:product.ul,type:0 +msgid "Pallet" +msgstr "" + #. module: product #: field:pricelist.partnerinfo,price:0 msgid "Unit Price" @@ -1346,13 +1410,16 @@ msgid "Warranty (months)" msgstr "" #. module: product -#: model:process.node,name:product.process_node_supplier0 -msgid "Supplier Info" +#: field:product.packaging,ul_qty:0 +msgid "Package by layer" msgstr "" #. module: product -#: field:product.packaging,ul_qty:0 -msgid "Package by layer" +#: help:product.template,type:0 +msgid "" +"Will change the way procurements are processed. Consumables are stockable " +"products with infinite stock, or for use when you have no stock management " +"in the system." msgstr "" #. module: product @@ -1402,16 +1469,16 @@ msgid "Product Description" msgstr "" #. module: product -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,description_sale:0 -msgid "Sale Description" +#: view:product.pricelist.item:0 +msgid " ) + " msgstr "" #. module: product -#: help:product.pricelist.item,min_quantity:0 +#: help:product.template,sale_delay:0 msgid "" -"The rule only apply if the partner buys/sells more than this quantity." +"This is the average time between the confirmation of the customer order and " +"the delivery of the finished products. It's the time you promise to your " +"customers." msgstr "" #. module: product @@ -1419,22 +1486,19 @@ msgstr "" msgid "Product uom categ" msgstr "" -#. module: product -#: help:product.uom,factor:0 -msgid "" -"The coefficient for the formula:\n" -"1 (base unit) = coef (this unit)" -msgstr "" - #. module: product #: wizard_field:product.price_list,init,qty3:0 msgid "Quantity-3" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_pricelist -#: view:product.supplierinfo:0 -msgid "Pricelist" +#: model:product.ul,name:product.product_ul_box +msgid "Box 20x20x40" +msgstr "" + +#. module: product +#: selection:product.template,supply_method:0 +msgid "Produce" msgstr "" #. module: product @@ -1512,13 +1576,6 @@ msgstr "" msgid "Can be Purchased" msgstr "" -#. module: product -#: help:product.uom,rounding:0 -msgid "" -"The computed quantity will be a multiple of this value. Use 1.0 for products " -"that can not be splitted." -msgstr "" - #. module: product #: field:product.template,uos_coeff:0 msgid "UOM -> UOS Coeff" @@ -1529,25 +1586,15 @@ msgstr "" msgid "High speed processor config" msgstr "" -#. module: product -#: model:product.template,name:product.product_product_pc2_product_template -msgid "Basic+ PC (assembly on order)" -msgstr "Basic+ PC (sett sammen ordre)" - #. module: product #: field:product.template,cost_method:0 msgid "Costing Method" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_category -#: field:product.pricelist.item,categ_id:0 -msgid "Product Category" -msgstr "" - -#. module: product -#: help:product.pricelist.version,date_end:0 -msgid "Ending date for validity of this pricelist version." +#: view:product.packaging:0 +#: view:product.product:0 +msgid "Palletization" msgstr "" #. module: product @@ -1556,12 +1603,6 @@ msgstr "" msgid "Warning !" msgstr "" -#. module: product -#: view:product.packaging:0 -#: view:product.product:0 -msgid "Paletization" -msgstr "" - #. module: product #: view:product.product:0 #: view:product.template:0 @@ -1574,13 +1615,15 @@ msgid "The weight of a full of products palet or box." msgstr "" #. module: product -#: selection:product.template,state:0 -msgid "End of Lifecycle" -msgstr "Slutt på livssyklus" +#: model:ir.module.module,shortdesc:product.module_meta_information +msgid "Products & Pricelists" +msgstr "" #. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: help:product.uom,factor:0 +msgid "" +"The coefficient for the formula:\n" +"1 (base unit) = coeff (this unit). Rate = 1 / Factor." msgstr "" #. module: product @@ -1647,14 +1690,6 @@ msgid "" "automatic computation of the purchase order planning." msgstr "" -#. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "" - #. module: product #: help:product.template,uom_po_id:0 msgid "" @@ -1689,6 +1724,11 @@ msgstr "" msgid "The volume in m3." msgstr "" +#. module: product +#: model:product.ul,name:product.product_ul_big_box +msgid "Box 30x40x60" +msgstr "" + #. module: product #: model:product.uom,name:product.product_uom_kgm msgid "KGM" diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index 10ed97a85e4..bef4427b4bb 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/nl_NL.po b/addons/product/i18n/nl_NL.po index 8f85ba42ab4..02bdac2980a 100644 --- a/addons/product/i18n/nl_NL.po +++ b/addons/product/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Advies Prijslijst" msgid "Products" msgstr "Producten" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Afmetingseenheden" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Verzendeenheid" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "IT components kits" msgid "Units of Measure categories" msgstr "Afmetingseenheden categoriën" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Volgorde" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Ratio" msgid "Products Listprices Items" msgstr "Productprijslijst Items" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d eenheid" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Informatie over een leverancier" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Actief" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Geeft de verschillende manieren van verpakken van hetzelfde product aan. Dit heeft geen effect op de verpakkingsvolgorde. Dit wordt voornamelijk gebruikt als er gebruik wordt maakt van de EDI-module." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Massa" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Geeft de verschillende manieren van verpakken van hetzelfde product aan. Dit heeft geen effect op de verpakkingsvolgorde. Dit wordt voornamelijk gebruikt als er gebruik wordt maakt van de EDI-module." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Twee overlappende prijslijsten is niet mogelijk!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Actief" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Productsjabloon" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Verzendeenheid" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Volgorde" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Aantal-2" msgid "Information" msgstr "Informatie" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d eenheden" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Maak Op Order" msgid "Price Surcharge" msgstr "Prijs Toeslag" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Prijzen en leveranciers" msgid "The weight of a full of products palet or box." msgstr "Het gewicht van een een doos/pallet vol met producten" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Privé" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "Vertraging in dagen tussen de bevestiging van de inkooporder en de ontvangst van de producten in het magazijn. Dit gegeven wordt gebruikt bij de inkooporder planning." +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Afmetingseenheden" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/pl_PL.po b/addons/product/i18n/pl_PL.po index dbb55f1cc6a..b9e0e28ceaf 100644 --- a/addons/product/i18n/pl_PL.po +++ b/addons/product/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/product.pot b/addons/product/i18n/product.pot index 2ee402c95c8..cc16568db50 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index 4213b92670d..b143bd3e248 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Se outra lista" msgid "Products" msgstr "Produtos" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unidade de medida" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unidade de transporte" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "Categorias de Unidades de Medida" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Seqüência" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "As informações sobre um fornecedor do produto" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Ativo" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Peso bruto" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter 2 listas de preços que sobrepoem!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Ativo" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unidade de transporte" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Seqüência" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Quantidade-2" msgid "Information" msgstr "Informação" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Faça uma Ordem" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Preços & Fornecedores" msgid "The weight of a full of products palet or box." msgstr "O peso do palet ou da caixa." +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Particular" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "Atraso em dias entre a confirmação da encomenda e a recepção dos produtos em seu armazém. Usado para agendamento automático no cálculo do planejamento de compra." +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unidade de medida" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/pt_PT.po b/addons/product/i18n/pt_PT.po index 37d5ea68ea3..38faaa0d490 100644 --- a/addons/product/i18n/pt_PT.po +++ b/addons/product/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Se outra lista de preços" msgid "Products" msgstr "Produtos" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Unidades de Medida" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Unidade de transporte" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "Categorias de Unidades de Medidas" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Sequência" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Taxa" msgid "Products Listprices Items" msgstr "Itens de lista de preço dos produtos" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "%d unidade" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Informação sobre o fornecedor do produto" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Activo" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Mostra as maneiras diferentes de empacotar o mesmo produto. Isto não tem nenhum impacto na ordem da empacotamento e é utilizado principalmente se você usa o módulo do EDI." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Peso bruto" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Mostra as maneiras diferentes de empacotar o mesmo produto. Isto não tem nenhum impacto na ordem da empacotamento e é utilizado principalmente se você usa o módulo do EDI." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter duas versões da lista de preços que se sobrepõem!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Activo" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Produto modelo" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Unidade de transporte" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Sequência" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "Quantidade-2" msgid "Information" msgstr "Informação" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "%d unidades" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Produzir por encomenda" msgid "Price Surcharge" msgstr "Acréscimo de preço" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "Preços e Fornecedores" msgid "The weight of a full of products palet or box." msgstr "O peso de uma palete ou caixa completa de produtos" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "Confidencial" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Unidades de Medida" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/ro_RO.po b/addons/product/i18n/ro_RO.po index fe3cbd561ea..edaae329002 100644 --- a/addons/product/i18n/ro_RO.po +++ b/addons/product/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Tarif de baza" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "Linii tarife produs" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Activ" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Activ" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/ru_RU.po b/addons/product/i18n/ru_RU.po index bf9b9983f69..a1ecadc4e1a 100644 --- a/addons/product/i18n/ru_RU.po +++ b/addons/product/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "Продукция" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "Единицы измерения" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Единица поставки" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "Категории единиц измерения" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Последовательность" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Курс" msgid "Products Listprices Items" msgstr "Элкменты каталога продукции" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Информация о поставщике продукции" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Активен" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Вес брутто" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Невозможно использовать 2 перекрывающиеся версии каталогов!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Активен" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Шаблон продукта" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Единица поставки" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Последовательность" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Информация" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "Изготовление на заказ" msgid "Price Surcharge" msgstr "Надбавка к цене" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "Единицы измерения" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/sl_SL.po b/addons/product/i18n/sl_SL.po index f77c1d5c9fb..290e780ec0a 100644 --- a/addons/product/i18n/sl_SL.po +++ b/addons/product/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Osnovni cenik" msgid "Products" msgstr "Proizvodi" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "Enota pošiljke" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Zaporedje" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Faktor" msgid "Products Listprices Items" msgstr "Postavke priporočenega cenika" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,10 @@ msgid "Information about a product supplier" msgstr "Informacije o dobavitelju izdelka" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktivno" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Podaja različne načine pakiranja istega izdelka. Ne vpliva na pakirni nalog\n" +"in se v glavnem uporablja, če imate EDI modul." #. module: product #: field:product.product,price_margin:0 @@ -1087,15 +1061,13 @@ msgid "Gross weight" msgstr "Bruto teža" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Podaja različne načine pakiranja istega izdelka. Ne vpliva na pakirni nalog\n" -"in se v glavnem uporablja, če imate EDI modul." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Ne morete imeti 2 različic cenika, ki se prekrivata." +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktivno" #. module: product #: model:ir.model,name:product.model_product_category @@ -1171,9 +1143,11 @@ msgid "Product Template" msgstr "Predloga proizvoda" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "Enota pošiljke" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" #. module: product #: help:product.uom,rounding:0 @@ -1271,12 +1245,6 @@ msgstr "" msgid "Information" msgstr "Informacije" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1435,6 +1403,11 @@ msgstr "Naroči" msgid "Price Surcharge" msgstr "Pribitek" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1543,6 +1516,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1618,6 +1598,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/sv_SE.po b/addons/product/i18n/sv_SE.po index f68bb0e07f6..4304b416a8b 100644 --- a/addons/product/i18n/sv_SE.po +++ b/addons/product/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Aktiv" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Vikt" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Aktiv" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "Produktmall" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/sv_SV.po b/addons/product/i18n/sv_SV.po index 54d6948bd3e..fde90ad6234 100644 --- a/addons/product/i18n/sv_SV.po +++ b/addons/product/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -90,6 +90,11 @@ msgstr "" msgid "Procure Method" msgstr "Inköpsmetod" +#. module: product +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: product #: model:process.process,name:product.process_process_productprocess0 msgid "Product Process" @@ -643,6 +648,11 @@ msgstr "" msgid "HDD Seagate 7200.8 80GB" msgstr "" +#. module: product +#: help:product.pricelist.version,active:0 +msgid "When a version is duplicated it is set to non active, so that the dates do not overlaps with original version. You should change the dates and reactivate the pricelist" +msgstr "" + #. module: product #: model:product.template,name:product.product_product_hdd3_product_template msgid "HDD Seagate 7200.8 160GB" @@ -852,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1062,11 +1066,6 @@ msgstr "Vikt" msgid "Active" msgstr "Aktiv" -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: product #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 @@ -1243,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1407,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" diff --git a/addons/product/i18n/tr_TR.po b/addons/product/i18n/tr_TR.po index ce3ba7c3ac9..573ce969f28 100644 --- a/addons/product/i18n/tr_TR.po +++ b/addons/product/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,12 +978,8 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." msgstr "" #. module: product @@ -1085,13 +1058,12 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" msgstr "" #. module: product @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/uk_UK.po b/addons/product/i18n/uk_UK.po index fd69b84d0dd..6b565e59f33 100644 --- a/addons/product/i18n/uk_UK.po +++ b/addons/product/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "Якщо інший прейскурант" msgid "Products" msgstr "Продукти" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,12 +500,9 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" +msgstr "О.в. для транспотування" #. module: product #: field:product.product,partner_ref:0 @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "Послідовність" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "Коефіцієнт" msgid "Products Listprices Items" msgstr "Позиції списків цін продуктів" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "Інформація про постачальника продукту" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "Активний" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "Надає різні способи пакування того самого продукту. Це не впливає на порядок пакування і загалом використовується для модуля EDI." #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "Вага" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "Надає різні способи пакування того самого продукту. Це не впливає на порядок пакування і загалом використовується для модуля EDI." - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "Активний" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "Шаблон продукту" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "О.в. для транспотування" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "Послідовність" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "Інформація" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "На замовлення" msgid "Price Surcharge" msgstr "Надбавка" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1540,6 +1513,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1613,6 +1593,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index c92d2b67545..5ce60176f6d 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "基础价格表" msgid "Products" msgstr "产品" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "序号" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "产品价格表明细" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "有效" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "毛重" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "有效" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,9 +1140,11 @@ msgid "Product Template" msgstr "产品模板" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" +msgstr "序号" #. module: product #: help:product.uom,rounding:0 @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "信息" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "来单生产" msgid "Price Surcharge" msgstr "其他费用" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index c200236a658..8f84064b1c5 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -259,13 +259,6 @@ msgstr "基础价格表" msgid "Products" msgstr "" -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -507,11 +500,8 @@ msgid "The mode for computing the price for this rule." msgstr "" #. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" +#: model:ir.model,name:product.model_product_ul +msgid "Shipping Unit" msgstr "" #. module: product @@ -745,13 +735,6 @@ msgstr "" msgid "Units of Measure categories" msgstr "" -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - #. module: product #: view:product.supplierinfo:0 msgid "Supplier Information" @@ -879,12 +862,6 @@ msgstr "" msgid "Products Listprices Items" msgstr "产品价格表s项" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" @@ -1001,13 +978,9 @@ msgid "Information about a product supplier" msgstr "" #. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "活动的" +#: help:product.product,packaging:0 +msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1085,14 +1058,13 @@ msgid "Gross weight" msgstr "" #. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" +#: field:product.price.type,active:0 +#: field:product.pricelist,active:0 +#: field:product.pricelist.version,active:0 +#: field:product.product,active:0 +#: field:product.uom,active:0 +msgid "Active" +msgstr "活动的" #. module: product #: model:ir.model,name:product.model_product_category @@ -1168,8 +1140,10 @@ msgid "Product Template" msgstr "" #. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1268,12 +1242,6 @@ msgstr "" msgid "Information" msgstr "" -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - #. module: product #: view:product.product:0 msgid "Codes" @@ -1432,6 +1400,11 @@ msgstr "" msgid "Price Surcharge" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1539,6 +1512,13 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" +#. module: product +#: help:product.pricelist.item,price_round:0 +msgid "Sets the price so that it is a multiple of this value.\n" +"Rounding is applied after the discount and before the surcharge.\n" +"To have prices that end in 9.99, set rounding 10, surcharge -0.01" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -1612,6 +1592,14 @@ msgstr "" msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,name:product.product_uom_form_action +#: model:ir.ui.menu,name:product.menu_product_uom_form_action +#: model:ir.ui.menu,name:product.next_id_16 +#: view:product.uom:0 +msgid "Units of Measure" +msgstr "" + #. module: product #: help:product.template,uom_po_id:0 msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." diff --git a/addons/product_margin/i18n/ar_AR.po b/addons/product_margin/i18n/ar_AR.po index a40af6c1cba..dbc52c6e683 100644 --- a/addons/product_margin/i18n/ar_AR.po +++ b/addons/product_margin/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/bg_BG.po b/addons/product_margin/i18n/bg_BG.po index 85af498379b..497895ce4bf 100644 --- a/addons/product_margin/i18n/bg_BG.po +++ b/addons/product_margin/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/bs_BS.po b/addons/product_margin/i18n/bs_BS.po index 2b0520e9b1c..c064c625d2d 100644 --- a/addons/product_margin/i18n/bs_BS.po +++ b/addons/product_margin/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ca_ES.po b/addons/product_margin/i18n/ca_ES.po index 9b51cd692bc..51f71d42f4b 100644 --- a/addons/product_margin/i18n/ca_ES.po +++ b/addons/product_margin/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/cs_CS.po b/addons/product_margin/i18n/cs_CS.po index 92795bd23bc..85a6c2e3e7b 100644 --- a/addons/product_margin/i18n/cs_CS.po +++ b/addons/product_margin/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/cs_CZ.po b/addons/product_margin/i18n/cs_CZ.po index 4969d45952e..e212e680ce2 100644 --- a/addons/product_margin/i18n/cs_CZ.po +++ b/addons/product_margin/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/de_DE.po b/addons/product_margin/i18n/de_DE.po index fa6b16b7099..38f884a218a 100644 --- a/addons/product_margin/i18n/de_DE.po +++ b/addons/product_margin/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index 3a02928b162..e5142789dcc 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/es_ES.po b/addons/product_margin/i18n/es_ES.po index 281e07a1352..43c30b2496e 100644 --- a/addons/product_margin/i18n/es_ES.po +++ b/addons/product_margin/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/et_EE.po b/addons/product_margin/i18n/et_EE.po index 2c651039fad..04f95a6442f 100644 --- a/addons/product_margin/i18n/et_EE.po +++ b/addons/product_margin/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,38 +18,38 @@ msgstr "" #. module: product_margin #: field:product.product,expected_margin_rate:0 msgid "Expected Margin (%)" -msgstr "" +msgstr "Oodatav marginaal (%)" #. module: product_margin #: wizard_field:product.margins,init,from_date:0 msgid "From" -msgstr "" +msgstr "Alates" #. module: product_margin #: help:product.product,sale_expected:0 msgid "Sum of Multification of Sale Catalog price and quantity of Customer Invoices" -msgstr "" +msgstr "Hinnakirja hinna ja koguse korrutise summa müügiarvetel" #. module: product_margin #: wizard_field:product.margins,init,to_date:0 msgid "To" -msgstr "" +msgstr "Kuni" #. module: product_margin #: field:product.product,date_to:0 msgid "To Date" -msgstr "" +msgstr "Kuupäevani" #. module: product_margin #: field:product.product,date_from:0 msgid "From Date" -msgstr "" +msgstr "Kuupäevast" #. module: product_margin #: selection:product.margins,init,invoice_state:0 #: selection:product.product,invoice_state:0 msgid "Draft, Open and Paid" -msgstr "" +msgstr "Mustand, lahtine ja makstud" #. module: product_margin #: model:ir.ui.menu,name:product_margin.menu_product_reporting @@ -60,71 +60,71 @@ msgstr "Aruandlus" #: field:product.product,purchase_avg_price:0 #: field:product.product,sale_avg_price:0 msgid "Avg. Unit Price" -msgstr "" +msgstr "Keskmine ühiku hind" #. module: product_margin #: model:ir.module.module,shortdesc:product_margin.module_meta_information msgid "Margins in Product" -msgstr "" +msgstr "Marginaalid tootes" #. module: product_margin #: help:product.product,total_cost:0 msgid "Sum of Multification of Invoice price and quantity of Supplier Invoices " -msgstr "" +msgstr "Arveldatud hinna ja koguse korrutise summa ostuarvetel " #. module: product_margin #: view:product.product:0 msgid "Catalog Price" -msgstr "" +msgstr "Hinnakirja hind" #. module: product_margin #: selection:product.margins,init,invoice_state:0 #: selection:product.product,invoice_state:0 msgid "Paid" -msgstr "" +msgstr "Tasutud" #. module: product_margin #: help:product.product,sales_gap:0 msgid "Excepted Sale - Turn Over" -msgstr "" +msgstr "Oodatav müük - Käive" #. module: product_margin #: field:product.product,sale_expected:0 msgid "Expected Sale" -msgstr "" +msgstr "Oodatav müük" #. module: product_margin #: view:product.product:0 msgid "Standard Price" -msgstr "" +msgstr "Standardhind" #. module: product_margin #: help:product.product,purchase_num_invoiced:0 msgid "Sum of Quantity in Supplier Invoices" -msgstr "" +msgstr "Koguste summa ostuarvetes" #. module: product_margin #: help:product.product,normal_cost:0 msgid "Sum of Multification of Cost price and quantity of Supplier Invoices" -msgstr "" +msgstr "Omahinna ja koguse korrutise summa ostuarvetel" #. module: product_margin #: view:product.product:0 #: field:product.product,turnover:0 msgid "Turnover" -msgstr "" +msgstr "Käive" #. module: product_margin #: field:product.product,purchase_num_invoiced:0 #: field:product.product,sale_num_invoiced:0 msgid "# Invoiced" -msgstr "" +msgstr "Arveldatud" #. module: product_margin #: view:product.product:0 #: field:product.product,total_cost:0 msgid "Total Cost" -msgstr "" +msgstr "Üldmaksumus" #. module: product_margin #: constraint:ir.ui.view:0 @@ -134,100 +134,100 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: product_margin #: help:product.product,expected_margin:0 msgid "Excepted Sale - Normal Cost" -msgstr "" +msgstr "Oodatav müük - Tavamaksumus" #. module: product_margin #: field:product.product,expected_margin:0 msgid "Expected Margin" -msgstr "" +msgstr "Oodatav marginaal" #. module: product_margin #: help:product.product,total_margin:0 msgid "Turnorder - Total Cost" -msgstr "" +msgstr "Käive - Üldmaksumus" #. module: product_margin #: view:product.product:0 msgid "#Purchased" -msgstr "" +msgstr "Ostetud" #. module: product_margin #: help:product.product,turnover:0 msgid "Sum of Multification of Invoice price and quantity of Customer Invoices" -msgstr "" +msgstr "Arveldatud hinna ja koguse korrutise summa müügiarvetel" #. module: product_margin #: help:product.product,expected_margin_rate:0 msgid "Expected margin * 100 / Expected Sale" -msgstr "" +msgstr "Oodatav marginaal * 100 / Oodatav müük" #. module: product_margin #: help:product.product,sale_avg_price:0 msgid "Avg. Price in Customer Invoices)" -msgstr "" +msgstr "Keskmine hind müügiarvetes" #. module: product_margin #: wizard_view:product.margins,init:0 msgid "Select " -msgstr "" +msgstr "Valige " #. module: product_margin #: wizard_field:product.margins,init,invoice_state:0 #: field:product.product,invoice_state:0 msgid "Invoice State" -msgstr "" +msgstr "Arve olek" #. module: product_margin #: help:product.product,purchase_gap:0 msgid "Normal Cost - Total Cost" -msgstr "" +msgstr "Tavamaksumus - Üldmaksumus" #. module: product_margin #: view:product.product:0 #: field:product.product,sales_gap:0 msgid "Sales Gap" -msgstr "" +msgstr "Müükide vahe" #. module: product_margin #: field:product.product,normal_cost:0 msgid "Normal Cost" -msgstr "" +msgstr "Tavahind" #. module: product_margin #: view:product.product:0 msgid "Purchases" -msgstr "" +msgstr "Ostud" #. module: product_margin #: help:product.product,purchase_avg_price:0 msgid "Avg. Price in Supplier Invoices " -msgstr "" +msgstr "Keskmine hind ostuarvetes " #. module: product_margin #: field:product.product,total_margin:0 msgid "Total Margin" -msgstr "" +msgstr "Kogu marginaal" #. module: product_margin #: help:product.product,total_margin_rate:0 msgid "Total margin * 100 / Turnover" -msgstr "" +msgstr "Üldmarginaal * 100 / Käive" #. module: product_margin #: view:product.product:0 msgid "Analysis Criteria" -msgstr "" +msgstr "Analüüsi kriteeriumid" #. module: product_margin #: selection:product.margins,init,invoice_state:0 #: selection:product.product,invoice_state:0 msgid "Open and Paid" -msgstr "" +msgstr "Lahtine ja makstud" #. module: product_margin #: view:product.product:0 msgid "Sales" -msgstr "" +msgstr "Müügid" #. module: product_margin #: code:addons/product_margin/wizard/wizard_product_margin.py:0 @@ -236,40 +236,40 @@ msgstr "" #: view:product.product:0 #, python-format msgid "Product Margins" -msgstr "" +msgstr "Toote marginaalid" #. module: product_margin #: field:product.product,purchase_gap:0 msgid "Purchase Gap" -msgstr "" +msgstr "Ostude vahe" #. module: product_margin #: field:product.product,total_margin_rate:0 msgid "Total Margin (%)" -msgstr "" +msgstr "Kogu marginaal (%)" #. module: product_margin #: wizard_button:product.margins,init,open:0 msgid "Open Margins" -msgstr "" +msgstr "Lahtised marginaalid" #. module: product_margin #: wizard_button:product.margins,init,end:0 msgid "Cancel" -msgstr "" +msgstr "Tühista" #. module: product_margin #: view:product.product:0 msgid "Margins" -msgstr "" +msgstr "Marginaalid" #. module: product_margin #: help:product.product,sale_num_invoiced:0 msgid "Sum of Quantity in Customer Invoices" -msgstr "" +msgstr "Koguste summa müügiarvetes" #. module: product_margin #: wizard_view:product.margins,init:0 msgid "View Stock of Products" -msgstr "" +msgstr "Vaata toodete laoseisu" diff --git a/addons/product_margin/i18n/fr_FR.po b/addons/product_margin/i18n/fr_FR.po index d088c78c04f..702ff48249d 100644 --- a/addons/product_margin/i18n/fr_FR.po +++ b/addons/product_margin/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/hr_HR.po b/addons/product_margin/i18n/hr_HR.po index 30e0bd83cfd..6a3574ef2c1 100644 --- a/addons/product_margin/i18n/hr_HR.po +++ b/addons/product_margin/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/hu_HU.po b/addons/product_margin/i18n/hu_HU.po index 67d6b044f1b..468a53c0073 100644 --- a/addons/product_margin/i18n/hu_HU.po +++ b/addons/product_margin/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/it_IT.po b/addons/product_margin/i18n/it_IT.po index 0637701aba5..31ab8148156 100644 --- a/addons/product_margin/i18n/it_IT.po +++ b/addons/product_margin/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/lt_LT.po b/addons/product_margin/i18n/lt_LT.po index 554bbf4f36f..718c1011302 100644 --- a/addons/product_margin/i18n/lt_LT.po +++ b/addons/product_margin/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index 125e711220e..6a4e2aed0be 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/nl_NL.po b/addons/product_margin/i18n/nl_NL.po index 8236cff9575..b10b9e14175 100644 --- a/addons/product_margin/i18n/nl_NL.po +++ b/addons/product_margin/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pl_PL.po b/addons/product_margin/i18n/pl_PL.po index ef797fca3ea..51b7d195e92 100644 --- a/addons/product_margin/i18n/pl_PL.po +++ b/addons/product_margin/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/product_margin.pot b/addons/product_margin/i18n/product_margin.pot index 97bd5490159..144e3d15f27 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index efbc5436d8f..6bd0d24c85a 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pt_PT.po b/addons/product_margin/i18n/pt_PT.po index 29a643de696..005448c3bc7 100644 --- a/addons/product_margin/i18n/pt_PT.po +++ b/addons/product_margin/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ro_RO.po b/addons/product_margin/i18n/ro_RO.po index 56776768b24..e7259ff7dae 100644 --- a/addons/product_margin/i18n/ro_RO.po +++ b/addons/product_margin/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ru_RU.po b/addons/product_margin/i18n/ru_RU.po index 333965a7d72..4e7dc24e155 100644 --- a/addons/product_margin/i18n/ru_RU.po +++ b/addons/product_margin/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sl_SL.po b/addons/product_margin/i18n/sl_SL.po index 50624688f09..b11ab66d833 100644 --- a/addons/product_margin/i18n/sl_SL.po +++ b/addons/product_margin/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sv_SE.po b/addons/product_margin/i18n/sv_SE.po index 8cfff5aa992..3e7cca4d610 100644 --- a/addons/product_margin/i18n/sv_SE.po +++ b/addons/product_margin/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sv_SV.po b/addons/product_margin/i18n/sv_SV.po index 6a29999ac7c..6906c8b2a35 100644 --- a/addons/product_margin/i18n/sv_SV.po +++ b/addons/product_margin/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: product_margin #: model:ir.ui.menu,name:product_margin.menu_product_reporting msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: product_margin #: field:product.product,purchase_avg_price:0 diff --git a/addons/product_margin/i18n/tr_TR.po b/addons/product_margin/i18n/tr_TR.po index c1802356b06..7a9675e7fae 100644 --- a/addons/product_margin/i18n/tr_TR.po +++ b/addons/product_margin/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/uk_UK.po b/addons/product_margin/i18n/uk_UK.po index 7cf7c4d781a..7d64f44053b 100644 --- a/addons/product_margin/i18n/uk_UK.po +++ b/addons/product_margin/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index 8beebd97018..fa055ddaede 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index 6a1af078c55..96ae2dfde1b 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ar_AR.po b/addons/profile_accounting/i18n/ar_AR.po index 8c7eacf5835..97254150294 100644 --- a/addons/profile_accounting/i18n/ar_AR.po +++ b/addons/profile_accounting/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/bg_BG.po b/addons/profile_accounting/i18n/bg_BG.po index 31708a50284..f9db9b90baf 100644 --- a/addons/profile_accounting/i18n/bg_BG.po +++ b/addons/profile_accounting/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/bs_BS.po b/addons/profile_accounting/i18n/bs_BS.po index 9bd1e3e0ad0..2c8c4c8176b 100644 --- a/addons/profile_accounting/i18n/bs_BS.po +++ b/addons/profile_accounting/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ca_ES.po b/addons/profile_accounting/i18n/ca_ES.po index e8ccccc5a8c..e16f8ca8828 100644 --- a/addons/profile_accounting/i18n/ca_ES.po +++ b/addons/profile_accounting/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/cs_CS.po b/addons/profile_accounting/i18n/cs_CS.po index 0acad882605..5729153f5e4 100644 --- a/addons/profile_accounting/i18n/cs_CS.po +++ b/addons/profile_accounting/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." msgstr "" +#. module: profile_accounting +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_accounting #: view:profile.accounting.config.install_modules_wizard:0 msgid "Resources Management" diff --git a/addons/profile_accounting/i18n/cs_CZ.po b/addons/profile_accounting/i18n/cs_CZ.po index c3d2842582f..aca890d524d 100644 --- a/addons/profile_accounting/i18n/cs_CZ.po +++ b/addons/profile_accounting/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/de_DE.po b/addons/profile_accounting/i18n/de_DE.po index eb1f9e32cd5..9896fe24322 100644 --- a/addons/profile_accounting/i18n/de_DE.po +++ b/addons/profile_accounting/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/es_AR.po b/addons/profile_accounting/i18n/es_AR.po index c8bc077a587..71a2cef927e 100644 --- a/addons/profile_accounting/i18n/es_AR.po +++ b/addons/profile_accounting/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/es_ES.po b/addons/profile_accounting/i18n/es_ES.po index 51f46340d10..cf0909a825e 100644 --- a/addons/profile_accounting/i18n/es_ES.po +++ b/addons/profile_accounting/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/et_EE.po b/addons/profile_accounting/i18n/et_EE.po index 99e05c0e264..4c732fe9538 100644 --- a/addons/profile_accounting/i18n/et_EE.po +++ b/addons/profile_accounting/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: profile_accounting #: model:ir.actions.todo,note:profile_accounting.config_install_wizard msgid "Install more modules. A few modules are proposed according to the Account Profile you selected. You will be able to install them based on our requirements." -msgstr "" +msgstr "Paigalda veel mooduleid. Mõned moodulid soovitatakse vastavalt sinu poolt valitud Raamatupidamise profiilile. Sa saad neid paigaldada vastavalt meie vajadustele." #. module: profile_accounting #: constraint:ir.model:0 @@ -38,7 +38,7 @@ msgstr "Open ERP dokumendihaldussüsteem võimaldab sul säilitada, sirvida, aut #. module: profile_accounting #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: profile_accounting #: view:profile.accounting.config.install_modules_wizard:0 @@ -73,7 +73,7 @@ msgstr "Arve analüütiliste kirjete põhjal" #. module: profile_accounting #: model:ir.module.module,description:profile_accounting.module_meta_information msgid "Profile for Accounting" -msgstr "" +msgstr "Profiil raamatupidamiseks" #. module: profile_accounting #: help:profile.accounting.config.install_modules_wizard,account_budget:0 @@ -108,7 +108,7 @@ msgstr "Paigalda lisamoodul" #. module: profile_accounting #: model:ir.module.module,shortdesc:profile_accounting.module_meta_information msgid "Accounting only profile" -msgstr "" +msgstr "Ainult raamatupidamise profiil" #. module: profile_accounting #: field:profile.accounting.config.install_modules_wizard,account_analytic_analysis:0 diff --git a/addons/profile_accounting/i18n/fr_FR.po b/addons/profile_accounting/i18n/fr_FR.po index 72bc09b1b2d..ff2aba18d7c 100644 --- a/addons/profile_accounting/i18n/fr_FR.po +++ b/addons/profile_accounting/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/hr_HR.po b/addons/profile_accounting/i18n/hr_HR.po index d54e845c710..aef7726f2f9 100644 --- a/addons/profile_accounting/i18n/hr_HR.po +++ b/addons/profile_accounting/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/hu_HU.po b/addons/profile_accounting/i18n/hu_HU.po index 51d5c593f5d..33af954bdae 100644 --- a/addons/profile_accounting/i18n/hu_HU.po +++ b/addons/profile_accounting/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/it_IT.po b/addons/profile_accounting/i18n/it_IT.po index 1dea5fa052e..07441391b95 100644 --- a/addons/profile_accounting/i18n/it_IT.po +++ b/addons/profile_accounting/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/lt_LT.po b/addons/profile_accounting/i18n/lt_LT.po index 8435f2f273a..cfd4fc1830b 100644 --- a/addons/profile_accounting/i18n/lt_LT.po +++ b/addons/profile_accounting/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/nl_BE.po b/addons/profile_accounting/i18n/nl_BE.po index 5fa1d33aa5f..54f3131b19f 100644 --- a/addons/profile_accounting/i18n/nl_BE.po +++ b/addons/profile_accounting/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/nl_NL.po b/addons/profile_accounting/i18n/nl_NL.po index 707c81466d6..f0ef06c95b8 100644 --- a/addons/profile_accounting/i18n/nl_NL.po +++ b/addons/profile_accounting/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pl_PL.po b/addons/profile_accounting/i18n/pl_PL.po index 8b40eaabe8f..9ef81578345 100644 --- a/addons/profile_accounting/i18n/pl_PL.po +++ b/addons/profile_accounting/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 ff70bf15876..52488f41295 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pt_BR.po b/addons/profile_accounting/i18n/pt_BR.po index 10c29f41dc2..14623ffacd9 100644 --- a/addons/profile_accounting/i18n/pt_BR.po +++ b/addons/profile_accounting/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pt_PT.po b/addons/profile_accounting/i18n/pt_PT.po index 8fa09e82708..33429194116 100644 --- a/addons/profile_accounting/i18n/pt_PT.po +++ b/addons/profile_accounting/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ro_RO.po b/addons/profile_accounting/i18n/ro_RO.po index dea1bd4592a..04d04e5d4aa 100644 --- a/addons/profile_accounting/i18n/ro_RO.po +++ b/addons/profile_accounting/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ru_RU.po b/addons/profile_accounting/i18n/ru_RU.po index e1bb803b3e2..7300216d0c5 100644 --- a/addons/profile_accounting/i18n/ru_RU.po +++ b/addons/profile_accounting/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sl_SL.po b/addons/profile_accounting/i18n/sl_SL.po index 83d15d49350..58686fbe288 100644 --- a/addons/profile_accounting/i18n/sl_SL.po +++ b/addons/profile_accounting/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sv_SE.po b/addons/profile_accounting/i18n/sv_SE.po index 008a2caa963..b77e8e40026 100644 --- a/addons/profile_accounting/i18n/sv_SE.po +++ b/addons/profile_accounting/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sv_SV.po b/addons/profile_accounting/i18n/sv_SV.po index 79ca15c070c..4f6465ea189 100644 --- a/addons/profile_accounting/i18n/sv_SV.po +++ b/addons/profile_accounting/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." msgstr "" +#. module: profile_accounting +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_accounting #: view:profile.accounting.config.install_modules_wizard:0 msgid "Resources Management" diff --git a/addons/profile_accounting/i18n/tr_TR.po b/addons/profile_accounting/i18n/tr_TR.po index f25acf6457e..14efae11eef 100644 --- a/addons/profile_accounting/i18n/tr_TR.po +++ b/addons/profile_accounting/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/uk_UK.po b/addons/profile_accounting/i18n/uk_UK.po index 48af1b21724..69cf924ec93 100644 --- a/addons/profile_accounting/i18n/uk_UK.po +++ b/addons/profile_accounting/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/zh_CN.po b/addons/profile_accounting/i18n/zh_CN.po index 7bedd57b4b7..c713e0069ab 100644 --- a/addons/profile_accounting/i18n/zh_CN.po +++ b/addons/profile_accounting/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/zh_TW.po b/addons/profile_accounting/i18n/zh_TW.po index 96ae92787dd..3f1bd690812 100644 --- a/addons/profile_accounting/i18n/zh_TW.po +++ b/addons/profile_accounting/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ar_AR.po b/addons/profile_association/i18n/ar_AR.po index 26f2f99285d..12a6cdba919 100644 --- a/addons/profile_association/i18n/ar_AR.po +++ b/addons/profile_association/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/bg_BG.po b/addons/profile_association/i18n/bg_BG.po index 11aef9da092..80262ad5bcb 100644 --- a/addons/profile_association/i18n/bg_BG.po +++ b/addons/profile_association/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/bs_BS.po b/addons/profile_association/i18n/bs_BS.po index 91020759909..83c3252fbd8 100644 --- a/addons/profile_association/i18n/bs_BS.po +++ b/addons/profile_association/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ca_ES.po b/addons/profile_association/i18n/ca_ES.po index 363bddd6ac7..e6b98334b07 100644 --- a/addons/profile_association/i18n/ca_ES.po +++ b/addons/profile_association/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/cs_CS.po b/addons/profile_association/i18n/cs_CS.po index 0d3da2ee094..0e506df8fbb 100644 --- a/addons/profile_association/i18n/cs_CS.po +++ b/addons/profile_association/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." msgstr "" +#. module: profile_association +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" diff --git a/addons/profile_association/i18n/cs_CZ.po b/addons/profile_association/i18n/cs_CZ.po index f6ea730563b..b9bbec3eb25 100644 --- a/addons/profile_association/i18n/cs_CZ.po +++ b/addons/profile_association/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/de_DE.po b/addons/profile_association/i18n/de_DE.po index 7d3549c54dc..59514226fe5 100644 --- a/addons/profile_association/i18n/de_DE.po +++ b/addons/profile_association/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/es_AR.po b/addons/profile_association/i18n/es_AR.po index 1d81cd0187e..3c2dd4173f9 100644 --- a/addons/profile_association/i18n/es_AR.po +++ b/addons/profile_association/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/es_ES.po b/addons/profile_association/i18n/es_ES.po index 33d55cba80e..0888d595bf5 100644 --- a/addons/profile_association/i18n/es_ES.po +++ b/addons/profile_association/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/et_EE.po b/addons/profile_association/i18n/et_EE.po index 37799805016..f0ab0de9a35 100644 --- a/addons/profile_association/i18n/et_EE.po +++ b/addons/profile_association/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,52 +23,52 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Relationship Management" -msgstr "" +msgstr "Suhete haldus" #. module: profile_association #: help:profile.association.config.install_modules_wizard,project_gtd:0 msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management." -msgstr "" +msgstr "GTD on metoodika enda ja oma tööde efektiivseks organiseerimiseks. See moodul integreerib täielikult GTD põhimõtted Open ERP'i projektihaldusega." #. module: profile_association #: help:profile.association.config.install_modules_wizard,board_document:0 msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." -msgstr "" +msgstr "Open ERP dokumendihaldussüsteem võimaldab sul säilitada, sirvida, automaatselt indekseerida, otsida ja eelvaadata kõiki dokumendiliike (sisemised dokumendid, prinditud aruandeid, kalendrisüsteemi). See avab kasutajatele FTP ligipääsu, et lihtsalt sirvida ühingu dokumente." #. module: profile_association #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" -msgstr "" +msgstr "Vahendite haldus" #. module: profile_association #: model:ir.model,name:profile_association.model_profile_association_config_install_modules_wizard msgid "profile.association.config.install_modules_wizard" -msgstr "" +msgstr "profile.association.config.install_modules_wizard" #. module: profile_association #: field:profile.association.config.install_modules_wizard,segmentation:0 msgid "Segmentation" -msgstr "" +msgstr "Segmenteerimine" #. module: profile_association #: model:ir.module.module,shortdesc:profile_association.module_meta_information msgid "Association profile" -msgstr "" +msgstr "Ühingu profiil" #. module: profile_association #: field:profile.association.config.install_modules_wizard,board_document:0 msgid "Document Management" -msgstr "" +msgstr "Dokumendihaldus" #. module: profile_association #: model:ir.actions.act_window,name:profile_association.action_config_install_module msgid "Association Profile : Install Extra Modules" -msgstr "" +msgstr "Ühingu profiil : Paigalda lisamooduleid" #. module: profile_association #: model:ir.module.module,description:profile_association.module_meta_information @@ -83,51 +83,51 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: profile_association #: field:profile.association.config.install_modules_wizard,crm_configuration:0 msgid "Partner Relation & Calendars" -msgstr "" +msgstr "Partneri seos ja kalendrid" #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Install" -msgstr "" +msgstr "Paigalda" #. module: profile_association #: field:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Expenses Tracking" -msgstr "" +msgstr "Kulude jälgimine" #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Install Extra Module" -msgstr "" +msgstr "Paigalda lisamoodul" #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 #: field:profile.association.config.install_modules_wizard,project:0 msgid "Project Management" -msgstr "" +msgstr "Projektihaldus" #. module: profile_association #: field:profile.association.config.install_modules_wizard,wiki:0 msgid "Wiki" -msgstr "" +msgstr "Wiki" #. module: profile_association #: field:profile.association.config.install_modules_wizard,project_gtd:0 msgid "Getting Things Done" -msgstr "" +msgstr "Saa asjad tehtud" #. module: profile_association #: help:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Tracks the personal expenses process, from the employee expense encoding, to the reimbursement of the employee up to the reinvoicing to the final customer." -msgstr "" +msgstr "Jälgib isiklike kulude protsessi alustades töötaja kuludest ja töötaja kulude hüvitamisest kuni lõppkliendile esitatud arveni." #. module: profile_association #: model:ir.actions.todo,note:profile_association.config_install_module msgid "Install more modules. A few modules are proposed according to the association profile you selected. You will be able to install them based on our requirements." -msgstr "" +msgstr "Paigalda veel mooduleid. Mõned moodulid soovitatakse vastavalt sinu poolt valitud assotsiatsiooni profiilile. Sa saad neid paigaldada vastavalt meie vajadustele." #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Cancel" -msgstr "" +msgstr "Tühista" diff --git a/addons/profile_association/i18n/fr_FR.po b/addons/profile_association/i18n/fr_FR.po index 9d695d79278..93b3c9c2998 100644 --- a/addons/profile_association/i18n/fr_FR.po +++ b/addons/profile_association/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/hr_HR.po b/addons/profile_association/i18n/hr_HR.po index 1106abd0baf..4db44c37ccc 100644 --- a/addons/profile_association/i18n/hr_HR.po +++ b/addons/profile_association/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/hu_HU.po b/addons/profile_association/i18n/hu_HU.po index 1c9e88a9096..7977977ab4f 100644 --- a/addons/profile_association/i18n/hu_HU.po +++ b/addons/profile_association/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/it_IT.po b/addons/profile_association/i18n/it_IT.po index 98b23af91ee..f92158ae49a 100644 --- a/addons/profile_association/i18n/it_IT.po +++ b/addons/profile_association/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/lt_LT.po b/addons/profile_association/i18n/lt_LT.po index cb65fd6397e..1bb0bd163fc 100644 --- a/addons/profile_association/i18n/lt_LT.po +++ b/addons/profile_association/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/nl_BE.po b/addons/profile_association/i18n/nl_BE.po index f7ff10de090..961bc5866e9 100644 --- a/addons/profile_association/i18n/nl_BE.po +++ b/addons/profile_association/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/nl_NL.po b/addons/profile_association/i18n/nl_NL.po index 64b060092a7..63db7293dfb 100644 --- a/addons/profile_association/i18n/nl_NL.po +++ b/addons/profile_association/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pl_PL.po b/addons/profile_association/i18n/pl_PL.po index 5f4e70bdffd..0eed2a49474 100644 --- a/addons/profile_association/i18n/pl_PL.po +++ b/addons/profile_association/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 90bb4e5e1fc..7229998a874 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pt_BR.po b/addons/profile_association/i18n/pt_BR.po index e400830e823..526624adf05 100644 --- a/addons/profile_association/i18n/pt_BR.po +++ b/addons/profile_association/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pt_PT.po b/addons/profile_association/i18n/pt_PT.po index 0e4391c8688..6dc11bc0e39 100644 --- a/addons/profile_association/i18n/pt_PT.po +++ b/addons/profile_association/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ro_RO.po b/addons/profile_association/i18n/ro_RO.po index 3a37d52f8e2..a544a1ac389 100644 --- a/addons/profile_association/i18n/ro_RO.po +++ b/addons/profile_association/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ru_RU.po b/addons/profile_association/i18n/ru_RU.po index 160125ea26c..6ee9863b5a8 100644 --- a/addons/profile_association/i18n/ru_RU.po +++ b/addons/profile_association/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sl_SL.po b/addons/profile_association/i18n/sl_SL.po index c13f423c52d..1f6ca377be4 100644 --- a/addons/profile_association/i18n/sl_SL.po +++ b/addons/profile_association/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sv_SE.po b/addons/profile_association/i18n/sv_SE.po index 629f6a4e62d..5e45d3d542f 100644 --- a/addons/profile_association/i18n/sv_SE.po +++ b/addons/profile_association/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sv_SV.po b/addons/profile_association/i18n/sv_SV.po index bb8d765d140..b50614c321d 100644 --- a/addons/profile_association/i18n/sv_SV.po +++ b/addons/profile_association/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." msgstr "" +#. module: profile_association +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" diff --git a/addons/profile_association/i18n/tr_TR.po b/addons/profile_association/i18n/tr_TR.po index 26de1c0cdfb..3c93f0daeb0 100644 --- a/addons/profile_association/i18n/tr_TR.po +++ b/addons/profile_association/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/uk_UK.po b/addons/profile_association/i18n/uk_UK.po index 0ff10c90006..ed956163ace 100644 --- a/addons/profile_association/i18n/uk_UK.po +++ b/addons/profile_association/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/zh_CN.po b/addons/profile_association/i18n/zh_CN.po index 66cddef6115..532bf31a002 100644 --- a/addons/profile_association/i18n/zh_CN.po +++ b/addons/profile_association/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/zh_TW.po b/addons/profile_association/i18n/zh_TW.po index 1e77472341d..17b58640fe9 100644 --- a/addons/profile_association/i18n/zh_TW.po +++ b/addons/profile_association/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ar_AR.po b/addons/profile_auction/i18n/ar_AR.po index b36d854271d..130408132ee 100644 --- a/addons/profile_auction/i18n/ar_AR.po +++ b/addons/profile_auction/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/bg_BG.po b/addons/profile_auction/i18n/bg_BG.po index 062e3641d72..243862de372 100644 --- a/addons/profile_auction/i18n/bg_BG.po +++ b/addons/profile_auction/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/bs_BS.po b/addons/profile_auction/i18n/bs_BS.po index ce4799bd005..911c0c9c165 100644 --- a/addons/profile_auction/i18n/bs_BS.po +++ b/addons/profile_auction/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ca_ES.po b/addons/profile_auction/i18n/ca_ES.po index 357ff1777dc..ff221c76f97 100644 --- a/addons/profile_auction/i18n/ca_ES.po +++ b/addons/profile_auction/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/cs_CS.po b/addons/profile_auction/i18n/cs_CS.po index 512be88615f..04862031634 100644 --- a/addons/profile_auction/i18n/cs_CS.po +++ b/addons/profile_auction/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/cs_CZ.po b/addons/profile_auction/i18n/cs_CZ.po index 907a0e80c2f..5b99910dd09 100644 --- a/addons/profile_auction/i18n/cs_CZ.po +++ b/addons/profile_auction/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/de_DE.po b/addons/profile_auction/i18n/de_DE.po index e82416cbce5..dda7937037e 100644 --- a/addons/profile_auction/i18n/de_DE.po +++ b/addons/profile_auction/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/es_AR.po b/addons/profile_auction/i18n/es_AR.po index dcaf85a751b..6ab6d9fc3ab 100644 --- a/addons/profile_auction/i18n/es_AR.po +++ b/addons/profile_auction/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/es_ES.po b/addons/profile_auction/i18n/es_ES.po index 3cdbfd08069..a463bf71e1d 100644 --- a/addons/profile_auction/i18n/es_ES.po +++ b/addons/profile_auction/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/et_EE.po b/addons/profile_auction/i18n/et_EE.po index 775a9f8bfe6..f06cf0106fc 100644 --- a/addons/profile_auction/i18n/et_EE.po +++ b/addons/profile_auction/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: profile_auction #: model:ir.module.module,description:profile_auction.module_meta_information msgid "Profile for Auction house" -msgstr "" +msgstr "Profiil oksjonimajadele" diff --git a/addons/profile_auction/i18n/fr_FR.po b/addons/profile_auction/i18n/fr_FR.po index a333919cf37..c445deab7e5 100644 --- a/addons/profile_auction/i18n/fr_FR.po +++ b/addons/profile_auction/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/hr_HR.po b/addons/profile_auction/i18n/hr_HR.po index e7ecfb30865..03baa86fcfc 100644 --- a/addons/profile_auction/i18n/hr_HR.po +++ b/addons/profile_auction/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/hu_HU.po b/addons/profile_auction/i18n/hu_HU.po index c0a92726862..7811a1bff7f 100644 --- a/addons/profile_auction/i18n/hu_HU.po +++ b/addons/profile_auction/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/it_IT.po b/addons/profile_auction/i18n/it_IT.po index fb8eba9be4b..d79af8790d9 100644 --- a/addons/profile_auction/i18n/it_IT.po +++ b/addons/profile_auction/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/lt_LT.po b/addons/profile_auction/i18n/lt_LT.po index 14887f68d4f..73a5f095588 100644 --- a/addons/profile_auction/i18n/lt_LT.po +++ b/addons/profile_auction/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/nl_BE.po b/addons/profile_auction/i18n/nl_BE.po index 6665703bb7a..c88d3acd3ad 100644 --- a/addons/profile_auction/i18n/nl_BE.po +++ b/addons/profile_auction/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/nl_NL.po b/addons/profile_auction/i18n/nl_NL.po index 636fbe254ed..8f5d725cba3 100644 --- a/addons/profile_auction/i18n/nl_NL.po +++ b/addons/profile_auction/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pl_PL.po b/addons/profile_auction/i18n/pl_PL.po index 5fb547e8c09..7c3bc93ff25 100644 --- a/addons/profile_auction/i18n/pl_PL.po +++ b/addons/profile_auction/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/profile_auction.pot b/addons/profile_auction/i18n/profile_auction.pot index 68e2d12e62a..240e75a65db 100644 --- a/addons/profile_auction/i18n/profile_auction.pot +++ b/addons/profile_auction/i18n/profile_auction.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pt_BR.po b/addons/profile_auction/i18n/pt_BR.po index 5eed6b132cc..b45117f3014 100644 --- a/addons/profile_auction/i18n/pt_BR.po +++ b/addons/profile_auction/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pt_PT.po b/addons/profile_auction/i18n/pt_PT.po index f7b341d6c2e..174cf2a2507 100644 --- a/addons/profile_auction/i18n/pt_PT.po +++ b/addons/profile_auction/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ro_RO.po b/addons/profile_auction/i18n/ro_RO.po index 96a2d759880..1022cfed5cf 100644 --- a/addons/profile_auction/i18n/ro_RO.po +++ b/addons/profile_auction/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ru_RU.po b/addons/profile_auction/i18n/ru_RU.po index da95f54d775..509c7cf4cac 100644 --- a/addons/profile_auction/i18n/ru_RU.po +++ b/addons/profile_auction/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sl_SL.po b/addons/profile_auction/i18n/sl_SL.po index f5a43650f38..85f26231b88 100644 --- a/addons/profile_auction/i18n/sl_SL.po +++ b/addons/profile_auction/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sv_SE.po b/addons/profile_auction/i18n/sv_SE.po index a6aba85be20..ca95935655d 100644 --- a/addons/profile_auction/i18n/sv_SE.po +++ b/addons/profile_auction/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sv_SV.po b/addons/profile_auction/i18n/sv_SV.po index 16672960028..fdd2dd09d10 100644 --- a/addons/profile_auction/i18n/sv_SV.po +++ b/addons/profile_auction/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/tr_TR.po b/addons/profile_auction/i18n/tr_TR.po index 1093ac22eb5..c28f793996f 100644 --- a/addons/profile_auction/i18n/tr_TR.po +++ b/addons/profile_auction/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/uk_UK.po b/addons/profile_auction/i18n/uk_UK.po index ef3a4b8704e..ec0791f1b9f 100644 --- a/addons/profile_auction/i18n/uk_UK.po +++ b/addons/profile_auction/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/zh_CN.po b/addons/profile_auction/i18n/zh_CN.po index 88a54e8b805..1f4840b864c 100644 --- a/addons/profile_auction/i18n/zh_CN.po +++ b/addons/profile_auction/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/zh_TW.po b/addons/profile_auction/i18n/zh_TW.po index c977dfbae3a..6636066c461 100644 --- a/addons/profile_auction/i18n/zh_TW.po +++ b/addons/profile_auction/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ar_AR.po b/addons/profile_crm/i18n/ar_AR.po index c292876f383..7d0881d171a 100644 --- a/addons/profile_crm/i18n/ar_AR.po +++ b/addons/profile_crm/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/bg_BG.po b/addons/profile_crm/i18n/bg_BG.po index d6261137503..23cebd2c764 100644 --- a/addons/profile_crm/i18n/bg_BG.po +++ b/addons/profile_crm/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/bs_BS.po b/addons/profile_crm/i18n/bs_BS.po index 5db042dd2dd..85b1780fba7 100644 --- a/addons/profile_crm/i18n/bs_BS.po +++ b/addons/profile_crm/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ca_ES.po b/addons/profile_crm/i18n/ca_ES.po index 7e4ef62d028..7c13dbb3ecf 100644 --- a/addons/profile_crm/i18n/ca_ES.po +++ b/addons/profile_crm/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/cs_CS.po b/addons/profile_crm/i18n/cs_CS.po index 206d7e4a533..7f389febad3 100644 --- a/addons/profile_crm/i18n/cs_CS.po +++ b/addons/profile_crm/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/cs_CZ.po b/addons/profile_crm/i18n/cs_CZ.po index b7e40f24fb6..09967f9d20d 100644 --- a/addons/profile_crm/i18n/cs_CZ.po +++ b/addons/profile_crm/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/de_DE.po b/addons/profile_crm/i18n/de_DE.po index cfa841ce38d..1e858baa505 100644 --- a/addons/profile_crm/i18n/de_DE.po +++ b/addons/profile_crm/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/es_AR.po b/addons/profile_crm/i18n/es_AR.po index 26b47085b0e..10ed756efb2 100644 --- a/addons/profile_crm/i18n/es_AR.po +++ b/addons/profile_crm/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/es_ES.po b/addons/profile_crm/i18n/es_ES.po index e19dfb5385f..7ec3d5664cc 100644 --- a/addons/profile_crm/i18n/es_ES.po +++ b/addons/profile_crm/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/et_EE.po b/addons/profile_crm/i18n/et_EE.po index 1ea929362c6..34c881ecb45 100644 --- a/addons/profile_crm/i18n/et_EE.po +++ b/addons/profile_crm/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: profile_crm #: model:ir.module.module,description:profile_crm.module_meta_information msgid "Profile for CRM" -msgstr "" +msgstr "Profiil Kliendisuhete halduseks" diff --git a/addons/profile_crm/i18n/fr_FR.po b/addons/profile_crm/i18n/fr_FR.po index e0a32b147a8..6393d7d3bb4 100644 --- a/addons/profile_crm/i18n/fr_FR.po +++ b/addons/profile_crm/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/hr_HR.po b/addons/profile_crm/i18n/hr_HR.po index fe6b602ed4e..d939a0faafe 100644 --- a/addons/profile_crm/i18n/hr_HR.po +++ b/addons/profile_crm/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/hu_HU.po b/addons/profile_crm/i18n/hu_HU.po index 156cb17e721..483906ee5bf 100644 --- a/addons/profile_crm/i18n/hu_HU.po +++ b/addons/profile_crm/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/it_IT.po b/addons/profile_crm/i18n/it_IT.po index 78891d84d27..b12b12a3f0a 100644 --- a/addons/profile_crm/i18n/it_IT.po +++ b/addons/profile_crm/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/lt_LT.po b/addons/profile_crm/i18n/lt_LT.po index 423c924648c..04568049fc4 100644 --- a/addons/profile_crm/i18n/lt_LT.po +++ b/addons/profile_crm/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/nl_BE.po b/addons/profile_crm/i18n/nl_BE.po index e15ae711c31..7c3d39bd6a5 100644 --- a/addons/profile_crm/i18n/nl_BE.po +++ b/addons/profile_crm/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/nl_NL.po b/addons/profile_crm/i18n/nl_NL.po index fa4acba15e3..ccd5cbbcce4 100644 --- a/addons/profile_crm/i18n/nl_NL.po +++ b/addons/profile_crm/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pl_PL.po b/addons/profile_crm/i18n/pl_PL.po index c4ede6f3e27..c0b743472bb 100644 --- a/addons/profile_crm/i18n/pl_PL.po +++ b/addons/profile_crm/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/profile_crm.pot b/addons/profile_crm/i18n/profile_crm.pot index 3eb9c9d1288..12575e33604 100644 --- a/addons/profile_crm/i18n/profile_crm.pot +++ b/addons/profile_crm/i18n/profile_crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pt_BR.po b/addons/profile_crm/i18n/pt_BR.po index f9fd94501f5..f912cf3f038 100644 --- a/addons/profile_crm/i18n/pt_BR.po +++ b/addons/profile_crm/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pt_PT.po b/addons/profile_crm/i18n/pt_PT.po index 8209d47a45b..ca3e6443263 100644 --- a/addons/profile_crm/i18n/pt_PT.po +++ b/addons/profile_crm/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ro_RO.po b/addons/profile_crm/i18n/ro_RO.po index 5088e50d897..859e4d47ade 100644 --- a/addons/profile_crm/i18n/ro_RO.po +++ b/addons/profile_crm/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ru_RU.po b/addons/profile_crm/i18n/ru_RU.po index b31b35f4aba..eb769440835 100644 --- a/addons/profile_crm/i18n/ru_RU.po +++ b/addons/profile_crm/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sl_SL.po b/addons/profile_crm/i18n/sl_SL.po index a7257ac10bc..421bdf2c060 100644 --- a/addons/profile_crm/i18n/sl_SL.po +++ b/addons/profile_crm/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sv_SE.po b/addons/profile_crm/i18n/sv_SE.po index 758e518397a..8266327a1df 100644 --- a/addons/profile_crm/i18n/sv_SE.po +++ b/addons/profile_crm/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sv_SV.po b/addons/profile_crm/i18n/sv_SV.po index 7c1764f27fb..abebe6ea381 100644 --- a/addons/profile_crm/i18n/sv_SV.po +++ b/addons/profile_crm/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/tr_TR.po b/addons/profile_crm/i18n/tr_TR.po index 3cdde102182..4442b99a5f2 100644 --- a/addons/profile_crm/i18n/tr_TR.po +++ b/addons/profile_crm/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/uk_UK.po b/addons/profile_crm/i18n/uk_UK.po index 5acb33c7163..0c3e27a5b39 100644 --- a/addons/profile_crm/i18n/uk_UK.po +++ b/addons/profile_crm/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/zh_CN.po b/addons/profile_crm/i18n/zh_CN.po index 7b57a507b47..bfb1d3ff98c 100644 --- a/addons/profile_crm/i18n/zh_CN.po +++ b/addons/profile_crm/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/zh_TW.po b/addons/profile_crm/i18n/zh_TW.po index 79e9840f707..8e2fc47ab45 100644 --- a/addons/profile_crm/i18n/zh_TW.po +++ b/addons/profile_crm/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ar_AR.po b/addons/profile_manufacturing/i18n/ar_AR.po index cffdd7736e5..820c006fa4e 100644 --- a/addons/profile_manufacturing/i18n/ar_AR.po +++ b/addons/profile_manufacturing/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/bg_BG.po b/addons/profile_manufacturing/i18n/bg_BG.po index a9be9dc137f..ff12cf66258 100644 --- a/addons/profile_manufacturing/i18n/bg_BG.po +++ b/addons/profile_manufacturing/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/bs_BS.po b/addons/profile_manufacturing/i18n/bs_BS.po index 25cfc3324fd..3466950a070 100644 --- a/addons/profile_manufacturing/i18n/bs_BS.po +++ b/addons/profile_manufacturing/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ca_ES.po b/addons/profile_manufacturing/i18n/ca_ES.po index f756d870e58..a60665460a9 100644 --- a/addons/profile_manufacturing/i18n/ca_ES.po +++ b/addons/profile_manufacturing/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/cs_CS.po b/addons/profile_manufacturing/i18n/cs_CS.po index a5e57845cb9..0c050286052 100644 --- a/addons/profile_manufacturing/i18n/cs_CS.po +++ b/addons/profile_manufacturing/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,6 +60,11 @@ msgstr "" msgid "This module allows you to manage your sales, invoicing and picking by journals. You can define journals for trucks, salesman, departments, invoicing date delivery period, etc." msgstr "" +#. module: profile_manufacturing +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_manufacturing #: model:ir.actions.act_window,name:profile_manufacturing.action_config_install_module #: view:profile.manufacturing.config.install_modules_wizard:0 diff --git a/addons/profile_manufacturing/i18n/cs_CZ.po b/addons/profile_manufacturing/i18n/cs_CZ.po index b5ab25f947d..d95206c1809 100644 --- a/addons/profile_manufacturing/i18n/cs_CZ.po +++ b/addons/profile_manufacturing/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/de_DE.po b/addons/profile_manufacturing/i18n/de_DE.po index 0fa7220f913..c7eb9613fb4 100644 --- a/addons/profile_manufacturing/i18n/de_DE.po +++ b/addons/profile_manufacturing/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/es_AR.po b/addons/profile_manufacturing/i18n/es_AR.po index 4e56f58c0e8..919898c3188 100644 --- a/addons/profile_manufacturing/i18n/es_AR.po +++ b/addons/profile_manufacturing/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/es_ES.po b/addons/profile_manufacturing/i18n/es_ES.po index fa9af8de14e..b4390d8a5f3 100644 --- a/addons/profile_manufacturing/i18n/es_ES.po +++ b/addons/profile_manufacturing/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/et_EE.po b/addons/profile_manufacturing/i18n/et_EE.po index 2eba6089d48..79e105f542c 100644 --- a/addons/profile_manufacturing/i18n/et_EE.po +++ b/addons/profile_manufacturing/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "See moodul võimaldab sul hallata oma müüke, arveldamist ja noppimist #. module: profile_manufacturing #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: profile_manufacturing #: model:ir.actions.act_window,name:profile_manufacturing.action_config_install_module diff --git a/addons/profile_manufacturing/i18n/fr_FR.po b/addons/profile_manufacturing/i18n/fr_FR.po index 4d346113d4c..6adc93392cd 100644 --- a/addons/profile_manufacturing/i18n/fr_FR.po +++ b/addons/profile_manufacturing/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/hr_HR.po b/addons/profile_manufacturing/i18n/hr_HR.po index 4ffdd2fc479..8b6120414d7 100644 --- a/addons/profile_manufacturing/i18n/hr_HR.po +++ b/addons/profile_manufacturing/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/hu_HU.po b/addons/profile_manufacturing/i18n/hu_HU.po index 79478b92704..4c1eac57942 100644 --- a/addons/profile_manufacturing/i18n/hu_HU.po +++ b/addons/profile_manufacturing/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/it_IT.po b/addons/profile_manufacturing/i18n/it_IT.po index 012b8168d83..78dfc8c96ec 100644 --- a/addons/profile_manufacturing/i18n/it_IT.po +++ b/addons/profile_manufacturing/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/lt_LT.po b/addons/profile_manufacturing/i18n/lt_LT.po index 156dc061238..52900de0707 100644 --- a/addons/profile_manufacturing/i18n/lt_LT.po +++ b/addons/profile_manufacturing/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/nl_BE.po b/addons/profile_manufacturing/i18n/nl_BE.po index 9d69b5c65bb..bfa9214e995 100644 --- a/addons/profile_manufacturing/i18n/nl_BE.po +++ b/addons/profile_manufacturing/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/nl_NL.po b/addons/profile_manufacturing/i18n/nl_NL.po index 08d0a5e5365..c2c4ddd6fb2 100644 --- a/addons/profile_manufacturing/i18n/nl_NL.po +++ b/addons/profile_manufacturing/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pl_PL.po b/addons/profile_manufacturing/i18n/pl_PL.po index a63b0c315a1..3a9a08b830c 100644 --- a/addons/profile_manufacturing/i18n/pl_PL.po +++ b/addons/profile_manufacturing/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 20bbdd3fac2..940e8624df0 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pt_BR.po b/addons/profile_manufacturing/i18n/pt_BR.po index ed92fdbd986..c537ad7d75d 100644 --- a/addons/profile_manufacturing/i18n/pt_BR.po +++ b/addons/profile_manufacturing/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pt_PT.po b/addons/profile_manufacturing/i18n/pt_PT.po index 21cad38fa52..47b0fd38039 100644 --- a/addons/profile_manufacturing/i18n/pt_PT.po +++ b/addons/profile_manufacturing/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ro_RO.po b/addons/profile_manufacturing/i18n/ro_RO.po index 6cc415832c9..82e15901841 100644 --- a/addons/profile_manufacturing/i18n/ro_RO.po +++ b/addons/profile_manufacturing/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ru_RU.po b/addons/profile_manufacturing/i18n/ru_RU.po index 57fbd95525c..3a5c0684926 100644 --- a/addons/profile_manufacturing/i18n/ru_RU.po +++ b/addons/profile_manufacturing/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sl_SL.po b/addons/profile_manufacturing/i18n/sl_SL.po index d422b770891..1592e6b056f 100644 --- a/addons/profile_manufacturing/i18n/sl_SL.po +++ b/addons/profile_manufacturing/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sv_SE.po b/addons/profile_manufacturing/i18n/sv_SE.po index 2214ac6e904..d298694aee0 100644 --- a/addons/profile_manufacturing/i18n/sv_SE.po +++ b/addons/profile_manufacturing/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sv_SV.po b/addons/profile_manufacturing/i18n/sv_SV.po index e96fb997320..6f95ff8ef10 100644 --- a/addons/profile_manufacturing/i18n/sv_SV.po +++ b/addons/profile_manufacturing/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,6 +60,11 @@ msgstr "" msgid "This module allows you to manage your sales, invoicing and picking by journals. You can define journals for trucks, salesman, departments, invoicing date delivery period, etc." msgstr "" +#. module: profile_manufacturing +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_manufacturing #: model:ir.actions.act_window,name:profile_manufacturing.action_config_install_module #: view:profile.manufacturing.config.install_modules_wizard:0 diff --git a/addons/profile_manufacturing/i18n/tr_TR.po b/addons/profile_manufacturing/i18n/tr_TR.po index 4fead0f5e55..0463295f57e 100644 --- a/addons/profile_manufacturing/i18n/tr_TR.po +++ b/addons/profile_manufacturing/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/uk_UK.po b/addons/profile_manufacturing/i18n/uk_UK.po index af71a3cdd76..27e38a7d182 100644 --- a/addons/profile_manufacturing/i18n/uk_UK.po +++ b/addons/profile_manufacturing/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/zh_CN.po b/addons/profile_manufacturing/i18n/zh_CN.po index 9bad94e3425..6542ff03c8b 100644 --- a/addons/profile_manufacturing/i18n/zh_CN.po +++ b/addons/profile_manufacturing/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/zh_TW.po b/addons/profile_manufacturing/i18n/zh_TW.po index 1480a19c45a..ab3ffd636b1 100644 --- a/addons/profile_manufacturing/i18n/zh_TW.po +++ b/addons/profile_manufacturing/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ar_AR.po b/addons/profile_service/i18n/ar_AR.po index 5b7cdfc8530..77d99cd4135 100644 --- a/addons/profile_service/i18n/ar_AR.po +++ b/addons/profile_service/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/bg_BG.po b/addons/profile_service/i18n/bg_BG.po index 4a900175cea..be22445b021 100644 --- a/addons/profile_service/i18n/bg_BG.po +++ b/addons/profile_service/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/bs_BS.po b/addons/profile_service/i18n/bs_BS.po index 9c54308f904..cc27c90a1a1 100644 --- a/addons/profile_service/i18n/bs_BS.po +++ b/addons/profile_service/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ca_ES.po b/addons/profile_service/i18n/ca_ES.po index 74698ecf4b2..59755ce9142 100644 --- a/addons/profile_service/i18n/ca_ES.po +++ b/addons/profile_service/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/cs_CS.po b/addons/profile_service/i18n/cs_CS.po index 7642bf5bbc0..34341a71837 100644 --- a/addons/profile_service/i18n/cs_CS.po +++ b/addons/profile_service/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "Timesheets" msgstr "" +#. module: profile_service +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 msgid "Resources Management" @@ -166,13 +171,13 @@ msgid "Getting Things Done" msgstr "" #. module: profile_service -#: field:profile.service.config.install_modules_wizard,base_contact:0 -msgid "Advanced Contacts Management" +#: field:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 +msgid "Invoice on Timesheets" msgstr "" #. module: profile_service -#: field:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 -msgid "Invoice on Timesheets" +#: field:profile.service.config.install_modules_wizard,base_contact:0 +msgid "Advanced Contacts Management" msgstr "" #. module: profile_service diff --git a/addons/profile_service/i18n/cs_CZ.po b/addons/profile_service/i18n/cs_CZ.po index 9b1b94ce3db..70a29ba20ee 100644 --- a/addons/profile_service/i18n/cs_CZ.po +++ b/addons/profile_service/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/de_DE.po b/addons/profile_service/i18n/de_DE.po index 65815c1ed7a..f4b6cdb3291 100644 --- a/addons/profile_service/i18n/de_DE.po +++ b/addons/profile_service/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/es_AR.po b/addons/profile_service/i18n/es_AR.po index 29ab9054350..b85b71628b6 100644 --- a/addons/profile_service/i18n/es_AR.po +++ b/addons/profile_service/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/es_ES.po b/addons/profile_service/i18n/es_ES.po index 7eecff52dc3..df4b8b93a4a 100644 --- a/addons/profile_service/i18n/es_ES.po +++ b/addons/profile_service/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/et_EE.po b/addons/profile_service/i18n/et_EE.po index a0e7f1d9ff1..b1d04d8d066 100644 --- a/addons/profile_service/i18n/et_EE.po +++ b/addons/profile_service/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Tööajalehed" #. module: profile_service #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 @@ -78,12 +78,12 @@ msgstr "Analüütilised eelarved" #. module: profile_service #: model:ir.module.module,shortdesc:profile_service.module_meta_information msgid "Service company profile" -msgstr "" +msgstr "Teenindusettevõtte profiil" #. module: profile_service #: help:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 msgid "There are different invoicing methods in OpenERP: from sale orders, from shipping, ... Install this module if you plan to invoice your customers based on time spent on projects." -msgstr "" +msgstr "OpenERP-is on erinevaid arveldamise meetodeid: müügikorraldusest, saatmisest, ... Paigalda see moodul, kui sa plaanid teha oma klientidele arveid projektidele kulutatud aja põhjal." #. module: profile_service #: field:profile.service.config.install_modules_wizard,crm_configuration:0 @@ -203,7 +203,7 @@ msgstr "Turundusjuhtimine" #. module: profile_service #: model:ir.module.module,description:profile_service.module_meta_information msgid "Profile for service companies" -msgstr "" +msgstr "Profiil teenindusettevõtetele" #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 diff --git a/addons/profile_service/i18n/fr_FR.po b/addons/profile_service/i18n/fr_FR.po index 46b12cf1f85..790f1cb94c0 100644 --- a/addons/profile_service/i18n/fr_FR.po +++ b/addons/profile_service/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/hr_HR.po b/addons/profile_service/i18n/hr_HR.po index a9de27abe7b..f938d90ee5f 100644 --- a/addons/profile_service/i18n/hr_HR.po +++ b/addons/profile_service/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/hu_HU.po b/addons/profile_service/i18n/hu_HU.po index ba0419541fc..429b616f0a6 100644 --- a/addons/profile_service/i18n/hu_HU.po +++ b/addons/profile_service/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/it_IT.po b/addons/profile_service/i18n/it_IT.po index fe1249ada32..cd456275a04 100644 --- a/addons/profile_service/i18n/it_IT.po +++ b/addons/profile_service/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/lt_LT.po b/addons/profile_service/i18n/lt_LT.po index 7b8ab9a32f6..4cd781c21d9 100644 --- a/addons/profile_service/i18n/lt_LT.po +++ b/addons/profile_service/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/nl_BE.po b/addons/profile_service/i18n/nl_BE.po index f84614c3ef1..a15f1e506e6 100644 --- a/addons/profile_service/i18n/nl_BE.po +++ b/addons/profile_service/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/nl_NL.po b/addons/profile_service/i18n/nl_NL.po index 9df74968fc7..4b0ed4fccad 100644 --- a/addons/profile_service/i18n/nl_NL.po +++ b/addons/profile_service/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pl_PL.po b/addons/profile_service/i18n/pl_PL.po index ac6dde426a5..b950c1c674d 100644 --- a/addons/profile_service/i18n/pl_PL.po +++ b/addons/profile_service/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+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 b906b4d688e..8bc9e36e0b1 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pt_BR.po b/addons/profile_service/i18n/pt_BR.po index 44aeea57214..569c5b4c442 100644 --- a/addons/profile_service/i18n/pt_BR.po +++ b/addons/profile_service/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pt_PT.po b/addons/profile_service/i18n/pt_PT.po index 4134abe2c62..88be181b892 100644 --- a/addons/profile_service/i18n/pt_PT.po +++ b/addons/profile_service/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ro_RO.po b/addons/profile_service/i18n/ro_RO.po index 370c4ae6ef6..13fd62522fd 100644 --- a/addons/profile_service/i18n/ro_RO.po +++ b/addons/profile_service/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ru_RU.po b/addons/profile_service/i18n/ru_RU.po index 6f2c57a9497..643bb2dcdfc 100644 --- a/addons/profile_service/i18n/ru_RU.po +++ b/addons/profile_service/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sl_SL.po b/addons/profile_service/i18n/sl_SL.po index 2beb26dfc5e..f88f1bd3224 100644 --- a/addons/profile_service/i18n/sl_SL.po +++ b/addons/profile_service/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sv_SE.po b/addons/profile_service/i18n/sv_SE.po index a053eead5c4..6f5a21b4b56 100644 --- a/addons/profile_service/i18n/sv_SE.po +++ b/addons/profile_service/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sv_SV.po b/addons/profile_service/i18n/sv_SV.po index 37436fa2776..14c3ecb57f5 100644 --- a/addons/profile_service/i18n/sv_SV.po +++ b/addons/profile_service/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "Timesheets" msgstr "" +#. module: profile_service +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 msgid "Resources Management" @@ -166,13 +171,13 @@ msgid "Getting Things Done" msgstr "" #. module: profile_service -#: field:profile.service.config.install_modules_wizard,base_contact:0 -msgid "Advanced Contacts Management" +#: field:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 +msgid "Invoice on Timesheets" msgstr "" #. module: profile_service -#: field:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 -msgid "Invoice on Timesheets" +#: field:profile.service.config.install_modules_wizard,base_contact:0 +msgid "Advanced Contacts Management" msgstr "" #. module: profile_service diff --git a/addons/profile_service/i18n/tr_TR.po b/addons/profile_service/i18n/tr_TR.po index 3fc099cfaad..64c3876b43b 100644 --- a/addons/profile_service/i18n/tr_TR.po +++ b/addons/profile_service/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/uk_UK.po b/addons/profile_service/i18n/uk_UK.po index 124cac5496a..5b1bbd5db7a 100644 --- a/addons/profile_service/i18n/uk_UK.po +++ b/addons/profile_service/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/zh_CN.po b/addons/profile_service/i18n/zh_CN.po index 68c6be5b9e8..19a55f25849 100644 --- a/addons/profile_service/i18n/zh_CN.po +++ b/addons/profile_service/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/zh_TW.po b/addons/profile_service/i18n/zh_TW.po index 286b333b912..677b32412cc 100644 --- a/addons/profile_service/i18n/zh_TW.po +++ b/addons/profile_service/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/ar_AR.po b/addons/project/i18n/ar_AR.po index 3d84eabc7ed..5c44bf7f8d1 100644 --- a/addons/project/i18n/ar_AR.po +++ b/addons/project/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/bg_BG.po b/addons/project/i18n/bg_BG.po index 77879ae8d43..010ecf53e3d 100644 --- a/addons/project/i18n/bg_BG.po +++ b/addons/project/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Делегации" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Изпрати Съобщение" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Делегирана задача" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Нова задача" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Моите задачи" msgid "Status: %(state)s" msgstr "Статус: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "" msgid "Project Name" msgstr "" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Изпрати Съобщение" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Копирай описание" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "Делегирай задачата на потребител" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Проектна задача" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/bs_BS.po b/addons/project/i18n/bs_BS.po index fb9f5644eb2..168d52275ef 100644 --- a/addons/project/i18n/bs_BS.po +++ b/addons/project/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/ca_ES.po b/addons/project/i18n/ca_ES.po index 8fcd52978ce..cdd0ce02699 100644 --- a/addons/project/i18n/ca_ES.po +++ b/addons/project/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,9 +58,10 @@ msgid "Operation Not Permitted !" msgstr "Operació no permesa!" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Obre tasca realitzada" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "Usuari al que voleu delegar aquesta tasca." #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Membres del projecte. No utilitzat en cap càlcul, només per tal d'informar." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -296,9 +297,9 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "Si marqueu això, a l'usuari li apareixerà una finestra emergent quan tanqui una tasca que proposarà un missatge per ser enviat per correu electrònic al client." #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Incloure la descripció de la tasca en la tasca de l'usuari." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Delegacions" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Envia missatge" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Membres del projecte. No utilitzat en cap càlcul, només per tal d'informar." #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Tasca delegada" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Percentatge de tasques tancades segons el total de tasques a realitzar." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Nova tasca" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "Hores de treball de l'horari per a ajustar l'informe del diagrama de Gantt" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Les meves tasques" msgid "Status: %(state)s" msgstr "Estat: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "Unitat de temp projecte" msgid "Project Name" msgstr "Nom del projecte" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Envia missatge" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "Temps total" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Copia descripció" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -809,6 +827,11 @@ msgstr "No es pot enviar el correu perquè la vostra adreça de correu electròn msgid "Delegate this task to a user" msgstr "Delega aquesta tasca a un usuari" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1034,6 +1057,12 @@ msgstr "Si marqueu aquest camp, el responsable del project rebrà un avís cada msgid "New Feature" msgstr "Nova característica" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1054,6 +1083,11 @@ msgstr "Tasca del projecte" msgid "Hours Spent" msgstr "Hores dedicades" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Obre tasca realitzada" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/cs_CS.po b/addons/project/i18n/cs_CS.po index 4008ad2c70d..1ea0e7b2d3d 100644 --- a/addons/project/i18n/cs_CS.po +++ b/addons/project/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,13 +58,14 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project -#: view:project.task:0 -msgid "Delegations" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -350,14 +351,14 @@ msgid "Reset as Project" msgstr "" #. module: project -#: selection:project.project,state:0 -msgid "Template" +#: view:project.task:0 +msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Poslat zprávu" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -447,6 +453,7 @@ msgstr "" #. module: project #: model:ir.model,name:project.model_project_task_work +#: view:project.task:0 #: view:project.task.work:0 msgid "Task Work" msgstr "" @@ -491,6 +498,11 @@ msgstr "" msgid "Estimated time to close this task by the delegated user." msgstr "" +#. module: project +#: selection:project.project,state:0 +msgid "Template" +msgstr "" + #. module: project #: model:ir.ui.menu,name:project.menu_definitions #: view:res.company:0 @@ -590,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -616,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -698,18 +722,19 @@ msgid "Project Time Unit" msgstr "" #. module: project +#: field:project.project,complete_name:0 #: field:project.project,name:0 msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Poslat zprávu" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -801,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1026,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1046,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/cs_CZ.po b/addons/project/i18n/cs_CZ.po index d4e99c8d64f..68d1a559de0 100644 --- a/addons/project/i18n/cs_CZ.po +++ b/addons/project/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Poslat zprávu" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Poslat zprávu" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/de_DE.po b/addons/project/i18n/de_DE.po index 4326b16abf1..d3f88acab47 100644 --- a/addons/project/i18n/de_DE.po +++ b/addons/project/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,9 +58,10 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Öffne Erledigte Aufgaben" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "Empfänger der delegierten Aufgabe" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Projektmitarbeiter die in keiner Berechnung verwendet werden und nur zur Information aufgelistet sind." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -296,9 +297,9 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "Falls Sie hier einen Haken setzen, wird der Benutzer bei Beendigung einer Aufgabe ein Popup Fenster erhalten mit dem Vorschlag eine Nachricht per EMail an den Kunden zu versenden." #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Entferne Beschreibung der Aufgabe in der Aufgabenliste des Benutzers." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Delegation" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Sende Nachricht" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Projektmitarbeiter die in keiner Berechnung verwendet werden und nur zur Information aufgelistet sind." #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Delegierte Aufgaben" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Prozent erledigte Aufgaben zu Gesamtsumme der offenen Aufgaben." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Neue Aufgaben" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "Zeiterfassung Arbeitsstunden für die Ausrichtung des Gantt Charts" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Meine Aufgaben" msgid "Status: %(state)s" msgstr "Status: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "Projekt Zeiteinheit" msgid "Project Name" msgstr "Projekt Bezeichnung" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Sende Nachricht" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "Gesamtzeit" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Kopiere Beschreibung" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -808,6 +826,11 @@ msgstr "Konnte E-Mail nicht senden, da diese noch nicht konfiguriert wurde!" msgid "Delegate this task to a user" msgstr "Delegiere diese Aufgabe an einen Benutzer" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "Falls Sie dieses Feld anhaken, erhält der Projektmanager jedesmal eine msgid "New Feature" msgstr "Neue Funktionalität" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Projektaufgabe" msgid "Hours Spent" msgstr "geleistete Stunden" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Öffne Erledigte Aufgaben" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index 296c93f7ae0..944ecde7323 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/es_ES.po b/addons/project/i18n/es_ES.po index 84f413c4d56..68933720c43 100644 --- a/addons/project/i18n/es_ES.po +++ b/addons/project/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,9 +58,10 @@ msgid "Operation Not Permitted !" msgstr "¡Operación no permitida!" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Abrir tarea realizada" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "Usuario al que quiere delegar esta tarea." #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Miembros del proyecto. No utilizado en ningún cálculo, sólo con el propósito de informar." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -296,9 +297,9 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "Si marca esto, al usuario le aparecerá una ventana emergente cuando cierre una tarea que propondrá un mensaje para ser enviado por correo electrónico al cliente." #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Incluir la descripción de la tarea en la tarea del usuario." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Delegaciones" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Enviar mensaje" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Miembros del proyecto. No utilizado en ningún cálculo, sólo con el propósito de informar." #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Tarea delegada" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Porcentaje de tareas cerradas según el total de tareas a realizar." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Nueva tarea" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "Horas de trabajo del horario para ajustar el informe del diagrama de Gantt" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Mis tareas" msgid "Status: %(state)s" msgstr "Estado: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "Unidad de tiempo proyecto" msgid "Project Name" msgstr "Nombre del proyecto" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Enviar mensaje" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "Tiempo total" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Copiar descripción" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -809,6 +827,11 @@ msgstr "¡No se puede enviar el correo porqué su dirección de correo electrón msgid "Delegate this task to a user" msgstr "Delegar esta tarea a un usuario" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1034,6 +1057,12 @@ msgstr "Si marca este campo, el responsable del proyecto recibirá un aviso cada msgid "New Feature" msgstr "Nueva característica" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1054,6 +1083,11 @@ msgstr "Tarea del proyecto" msgid "Hours Spent" msgstr "Horas dedicadas" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Abrir tarea realizada" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/et_EE.po b/addons/project/i18n/et_EE.po index e1f90f5de4f..edb88ad5e35 100644 --- a/addons/project/i18n/et_EE.po +++ b/addons/project/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,14 +58,15 @@ msgid "Operation Not Permitted !" msgstr "Toiming pole lubatud!" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Ava valmis ülesanne" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: project #: wizard_field:project.task.delegate,init,planned_hours_me:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "Kasutaja, kellele sa soovid seda ülesannet volitada." #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Projekti liige. Ei kasutata ühegi arvutuse jaoks vaid puhtalt informatiivsel eesmärgil." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -181,7 +182,9 @@ msgstr "Kinnita" msgid "Project management module that track multi-level projects, tasks,\n" "works done on tasks, eso. It is able to render planning, order tasks, eso.\n" " " -msgstr "" +msgstr "Projektihalduse moodul, mis jälgib mitmetasandlisis projekte, ülesandeid,\n" +"ülesannetel tehtud töid, jne. See võimaldab kuvada planeerimist, korralduse ülesandeid, jne.\n" +" " #. module: project #: model:ir.actions.act_window,name:project.action_view_task5_prog_prog @@ -208,7 +211,7 @@ msgstr "Ülesanne" #. module: project #: help:project.task.delegate,init,planned_hours_me:0 msgid "Estimated time for you to validate the work done by the user to whom you delegate this task." -msgstr "" +msgstr "Eeldatav aeg, mis kulub sul delegeeritud kasutaja poolt tehtud töö valideerimiseks." #. module: project #: view:project.project:0 @@ -293,12 +296,12 @@ msgstr "Arvutatud kasutades ülesandel tehtud töö summat." #. module: project #: help:project.project,warn_customer:0 msgid "If you check this, the user will have a popup when closing a task that propose a message to send by email to the customer." -msgstr "Kui sa märgistad selle siis kasutajal avaneb hüpikaken ülesande sulgemisel, mis pakub e-kirja saatmist kliendile." +msgstr "Kui sa märgid selle siis avaneb kasutajal hüpikaken ülesande sulgemisel, mis pakub e-kirja saatmist kliendile." #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Sisesta ülesande kirjeldus kasutaja ülesandele." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +358,9 @@ msgid "Delegations" msgstr "Volitused" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Saada teade" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Projekti liige. Ei kasutata ühegi arvutuse jaoks vaid puhtalt informatiivsel eesmärgil." #. module: project #: view:project.project:0 @@ -385,6 +388,11 @@ msgstr "Valitatud ülesanne" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Suletud ülesannete protsent kõigi tegemist vajavate ülesannete hulgast." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -528,7 +536,7 @@ msgstr "Ülesande üksikasjad" #. module: project #: model:process.node,name:project.process_node_triggerinvoice0 msgid "Trigger Invoice" -msgstr "" +msgstr "Käivita arve" #. module: project #: model:process.transition,name:project.process_transition_draftopentask0 @@ -596,6 +604,12 @@ msgstr "Uus ülesanne" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "Ajatabeli töötunnid, et kohandada gantt diagrammaruannet" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +636,12 @@ msgstr "Minu ülesanded" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -660,7 +680,7 @@ msgstr "E-kirjad" #. module: project #: model:process.node,note:project.process_node_triggerinvoice0 msgid "Trigger invoices from sale order lines" -msgstr "" +msgstr "Käivita arved müügikorralduse ridadest" #. module: project #: model:process.transition.action,name:project.process_transition_action_opendrafttask0 @@ -709,16 +729,16 @@ msgstr "Projekti ajaühik" msgid "Project Name" msgstr "Projekti nimi" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Saada teade" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "Aeg kokku" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Kopeeri kirjeldus" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -774,7 +794,8 @@ msgstr "Kuupäev" #: help:res.company,project_time_mode:0 msgid "This will set the unit of measure used in projects and tasks.\n" "If you use the timesheet linked to projects (project_timesheet module), don't forget to setup the right unit of measure in your employees." -msgstr "" +msgstr "See määrab projektides ja ülesannetes kasutatava mõõtühiku.\n" +"Kui sa kasutad projektiga seotud tööajalehte (project_timesheet moodul), siis ära unusta seadistada õige mõõtühik oma töötajatele." #. module: project #: code:addons/project/wizard/close_task.py:0 @@ -808,6 +829,11 @@ msgstr "Ei saanud saata e-kirja sest su e-post ei ole seadistatud!" msgid "Delegate this task to a user" msgstr "Volita see ülesanne kasutajale" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -831,7 +857,7 @@ msgstr "Kõigi selle projektiga seotud ülesannetele kulunud aeg." #. module: project #: help:project.task,project_id:0 msgid "If you have [?] in the project name, it means there are no analytic account linked to this project." -msgstr "" +msgstr "Kui sul on [?] projekti nimes siis tähendab see, et selle projektiga pole seotud ühtegi analüütilist kontot." #. module: project #: help:project.project,planned_hours:0 @@ -872,7 +898,7 @@ msgstr "" #. module: project #: help:project.project,category_id:0 msgid "Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc." -msgstr "" +msgstr "Seo see projekti analüütilise kontoga, kui sa vajad finantshaldust projektidel. See võimaldab sul ühendada projekte eelarvete, planeerimise, kulude ja tulude ananlüüsiga, tööajalehtedega jms." #. module: project #: view:project.project:0 @@ -996,7 +1022,7 @@ msgstr "Projektide struktuur" #. module: project #: wizard_view:project.task.delegate,init:0 msgid "Validation Task" -msgstr "" +msgstr "Ülesande valideerimine" #. module: project #: field:project.task,work_ids:0 @@ -1011,7 +1037,7 @@ msgstr "Töötab" #. module: project #: help:project.project,parent_id:0 msgid "If you have [?] in the name, it means there are no analytic account linked to project." -msgstr "" +msgstr "Kui sul on [?] nimes siis tähendab see, et projektiga pole seotud ühtegi analüütilist kontot." #. module: project #: model:ir.actions.wizard,name:project.wizard_delegate_task @@ -1026,17 +1052,23 @@ msgstr "Projekti ülesanded" #. module: project #: help:project.project,warn_manager:0 msgid "If you check this field, the project manager will receive a request each time a task is completed by his team." -msgstr "Kui sa märgid selle kasti siis projektihaldur saab päringu iga kord, kui ülesanne on tea meeskonna poolt lõpetatud." +msgstr "Kui sa märgid selle välja siis projektihaldur saab päringu iga kord, kui ülesanne on lõpetatud tema meeskonna poolt." #. module: project #: model:project.task.type,name:project.project_tt_feature msgid "New Feature" msgstr "Uus omadus" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." -msgstr "" +msgstr "Kodeeri oma töötunnid" #. module: project #: wizard_field:project.task.delegate,init,prefix:0 @@ -1053,6 +1085,11 @@ msgstr "Projekti ülesanne" msgid "Hours Spent" msgstr "Kulutatud tunnid" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Ava valmis ülesanne" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/fr_FR.po b/addons/project/i18n/fr_FR.po index 41ba025de24..7333ed21704 100644 --- a/addons/project/i18n/fr_FR.po +++ b/addons/project/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,9 +58,10 @@ msgid "Operation Not Permitted !" msgstr "Opération non permises !" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Ouvrir les tâches ouvertes" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "Utilisateur à qui vous voulez déléguer votre tâche." #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Membre du projet. Non utilisé dans aucun calcul, juste proposer à titre d'information" +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -296,9 +297,9 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "Si vous cochez la case, l'utilisateur verra un menu surgissant quand une tâche sera fermé proposant un message pour envoyer un mail au client." #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Reprendre la description de la tâche dans la tâche de l'utilisateur." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Délégations" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Envoyer un message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Membre du projet. Non utilisé dans aucun calcul, juste proposer à titre d'information" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Tache délégué" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Pourcentage des tâches fermés en accord avec le total des tâches à faire." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Nouvelle tâche" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "Emploi du temps des heures travaillés pour ajuster le rapport du diagramme de Gantt" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Mes tâches" msgid "Status: %(state)s" msgstr "Statut: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "Unité de temps du projet" msgid "Project Name" msgstr "Nom du groupe" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Envoyer un message" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "Temps total" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Copier la description" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -809,6 +827,11 @@ msgstr "Impossible d'envoyer un mail parce que votre adresse mail n'est pas conf msgid "Delegate this task to a user" msgstr "Délégué cette tâche à un utilisateur" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1034,6 +1057,12 @@ msgstr "Si vous cochez ce champs, le responsable du projet recevra une requête msgid "New Feature" msgstr "Nouvelle fonctionnalité" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1054,6 +1083,11 @@ msgstr "Tâche de projet" msgid "Hours Spent" msgstr "Heures passés" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Ouvrir les tâches ouvertes" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/hr_HR.po b/addons/project/i18n/hr_HR.po index f389d01bbe7..5e4b0fe3aa3 100644 --- a/addons/project/i18n/hr_HR.po +++ b/addons/project/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/hu_HU.po b/addons/project/i18n/hu_HU.po index 91a7a225d71..26a3f5f4f58 100644 --- a/addons/project/i18n/hu_HU.po +++ b/addons/project/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/it_IT.po b/addons/project/i18n/it_IT.po index 518e58219bf..c4ddb555df9 100644 --- a/addons/project/i18n/it_IT.po +++ b/addons/project/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Deleghe" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Invia messaggio" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Attività Delegata" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Nuova attività" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Le Mie Attività" msgid "Status: %(state)s" msgstr "Stato: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "" msgid "Project Name" msgstr "" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Invia messaggio" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Copia Descrizione" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "Delega questa Attività ad un Utente" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Attività del Progetto" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/lt_LT.po b/addons/project/i18n/lt_LT.po index e4907dbe060..147e6b577aa 100644 --- a/addons/project/i18n/lt_LT.po +++ b/addons/project/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index 58b992b5021..6238dc0cdbf 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/nl_NL.po b/addons/project/i18n/nl_NL.po index 44d8362f309..681aeaf3117 100644 --- a/addons/project/i18n/nl_NL.po +++ b/addons/project/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Verstuur bericht" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "Percentage openstaande taken van het totaal aantal openstaande taken." +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Mijn Taken" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Verstuur bericht" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/pl_PL.po b/addons/project/i18n/pl_PL.po index fa9fab2c229..f6dc631b7cb 100644 --- a/addons/project/i18n/pl_PL.po +++ b/addons/project/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/project.pot b/addons/project/i18n/project.pot index e9b32e421f6..2e71b193167 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index b46d1e5e69f..b216bb9551d 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,9 +58,10 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "Abrir tarefas concluída" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " +msgstr "" #. module: project #: constraint:ir.actions.act_window:0 @@ -130,9 +131,9 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "Membros do Projeto. Não usado em alguma computação, apenas para a finalidade da informação." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" +msgstr "" #. module: project #: model:process.transition.action,name:project.process_transition_action_openpendingtask0 @@ -296,9 +297,9 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." -msgstr "Reincluir a descrição da tarefa na tarefa do usuário." +msgstr "" #. module: project #: field:project.project,category_id:0 @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "Membros do Projeto. Não usado em alguma computação, apenas para a finalidade da informação." #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Minhas Tarefas" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "Delegar esta tarefa ao usuário" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "Abrir tarefas concluída" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/pt_PT.po b/addons/project/i18n/pt_PT.po index 945a95fb061..0486785dfcb 100644 --- a/addons/project/i18n/pt_PT.po +++ b/addons/project/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Delegações" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Enviar mensagem" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Tarefas atribuída" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Nova Tarefa" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Minhas tarefas" msgid "Status: %(state)s" msgstr "Estado: %(estado)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "" msgid "Project Name" msgstr "" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Enviar mensagem" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Descrição da cópia" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "Delegar esta tarefa a um utilizador" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Tarefas do projecto" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/ro_RO.po b/addons/project/i18n/ro_RO.po index 4e4636124c2..79fd3366ae7 100644 --- a/addons/project/i18n/ro_RO.po +++ b/addons/project/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/ru_RU.po b/addons/project/i18n/ru_RU.po index 2b284bb9e88..af7819ce604 100644 --- a/addons/project/i18n/ru_RU.po +++ b/addons/project/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "Делегированные" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Отправить сообщение" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "Делегированная задание" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "Новое задание" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Мои задания" msgid "Status: %(state)s" msgstr "Статус: %(state)s" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -709,16 +727,16 @@ msgstr "" msgid "Project Name" msgstr "" +#. module: project +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Отправить сообщение" + #. module: project #: field:project.project,total_hours:0 msgid "Total Time" msgstr "" -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "Скопировать описание" - #. module: project #: field:project.project,active:0 #: field:project.task,active:0 @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "Делегировать данное задание пользоватею" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Задание проекта" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/sl_SL.po b/addons/project/i18n/sl_SL.po index cf1eab7643b..7274ecfcb20 100644 --- a/addons/project/i18n/sl_SL.po +++ b/addons/project/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/sv_SE.po b/addons/project/i18n/sv_SE.po index cccb6c831c1..5b79a59f5f6 100644 --- a/addons/project/i18n/sv_SE.po +++ b/addons/project/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/sv_SV.po b/addons/project/i18n/sv_SV.po index 1bfcf783e3f..3a08b70ba4c 100644 --- a/addons/project/i18n/sv_SV.po +++ b/addons/project/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,13 +58,14 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project -#: view:project.task:0 -msgid "Delegations" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -350,13 +351,13 @@ msgid "Reset as Project" msgstr "" #. module: project -#: selection:project.project,state:0 -msgid "Template" +#: view:project.task:0 +msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -447,6 +453,7 @@ msgstr "" #. module: project #: model:ir.model,name:project.model_project_task_work +#: view:project.task:0 #: view:project.task.work:0 msgid "Task Work" msgstr "" @@ -491,6 +498,11 @@ msgstr "" msgid "Estimated time to close this task by the delegated user." msgstr "" +#. module: project +#: selection:project.project,state:0 +msgid "Template" +msgstr "" + #. module: project #: model:ir.ui.menu,name:project.menu_definitions #: view:res.company:0 @@ -590,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -616,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -698,18 +722,19 @@ msgid "Project Time Unit" msgstr "" #. module: project +#: field:project.project,complete_name:0 #: field:project.project,name:0 msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -801,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1026,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1046,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/tr_TR.po b/addons/project/i18n/tr_TR.po index ff1620d859b..eb0307dc13e 100644 --- a/addons/project/i18n/tr_TR.po +++ b/addons/project/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/uk_UK.po b/addons/project/i18n/uk_UK.po index 04df6e6c2a2..b02c59a8420 100644 --- a/addons/project/i18n/uk_UK.po +++ b/addons/project/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "Надіслати повідомлення" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "Мої завдання" msgid "Status: %(state)s" msgstr "Статус: %(state)" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "Надіслати повідомлення" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "Завдання проекту" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index 9b91eec525f..80f00c45844 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,9 +356,9 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "发送消息" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." +msgstr "" #. module: project #: view:project.project:0 @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" +msgstr "发送消息" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index 6322da8f59a..4b5f4737f8b 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "Operation Not Permitted !" msgstr "" #. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" +#: code:addons/project/wizard/task_delegate.py:0 +#, python-format +msgid "CHECK: " msgstr "" #. module: project @@ -130,8 +131,8 @@ msgid "User you want to delegate this task to." msgstr "" #. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." +#: model:ir.actions.wizard,name:project.wizard_attachment_task +msgid "All Attachments" msgstr "" #. module: project @@ -296,7 +297,7 @@ msgid "If you check this, the user will have a popup when closing a task that pr msgstr "" #. module: project -#: help:project.task.delegate,init,include_info:0 +#: help:project.task.delegate,init,new_task_description:0 msgid "Reinclude the description of the task in the task of the user." msgstr "" @@ -355,8 +356,8 @@ msgid "Delegations" msgstr "" #. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" +#: help:project.project,members:0 +msgid "Project's member. Not used in any computation, just for information purpose." msgstr "" #. module: project @@ -385,6 +386,11 @@ msgstr "" msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" +#. module: project +#: wizard_field:project.task.delegate,init,new_task_description:0 +msgid "New Task Description" +msgstr "" + #. module: project #: help:project.project,notes:0 msgid "Internal description of the project." @@ -596,6 +602,12 @@ msgstr "" msgid "Timetable working hours to adjust the gantt diagram report" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' set in progress" +msgstr "" + #. module: project #: view:project.project:0 msgid "Project's members" @@ -622,6 +634,12 @@ msgstr "" msgid "Status: %(state)s" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' cancelled" +msgstr "" + #. module: project #: view:project.task:0 msgid "Planned" @@ -710,13 +728,13 @@ msgid "Project Name" msgstr "" #. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" +#: wizard_button:project.task.close,mail_ask,mail_send:0 +msgid "Send Message" msgstr "" #. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" +#: field:project.project,total_hours:0 +msgid "Total Time" msgstr "" #. module: project @@ -808,6 +826,11 @@ msgstr "" msgid "Delegate this task to a user" msgstr "" +#. module: project +#: field:project.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: project #: field:project.task,date_close:0 msgid "Date Closed" @@ -1033,6 +1056,12 @@ msgstr "" msgid "New Feature" msgstr "" +#. module: project +#: code:addons/project/project.py:0 +#, python-format +msgid "Task '%s' closed" +msgstr "" + #. module: project #: model:process.node,note:project.process_node_opentask0 msgid "Encode your working hours." @@ -1053,6 +1082,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.transition,name:project.process_transition_opendonetask0 +msgid "Open Done Task" +msgstr "" + #. module: project #: field:project.task,total_hours:0 msgid "Total Hours" diff --git a/addons/project_gtd/i18n/ar_AR.po b/addons/project_gtd/i18n/ar_AR.po index f6bb3d089d5..bc34e577fce 100644 --- a/addons/project_gtd/i18n/ar_AR.po +++ b/addons/project_gtd/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/bg_BG.po b/addons/project_gtd/i18n/bg_BG.po index cddb61565aa..f271a8cd438 100644 --- a/addons/project_gtd/i18n/bg_BG.po +++ b/addons/project_gtd/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/bs_BS.po b/addons/project_gtd/i18n/bs_BS.po index 7b0bc046bb2..3d77558bcc7 100644 --- a/addons/project_gtd/i18n/bs_BS.po +++ b/addons/project_gtd/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/ca_ES.po b/addons/project_gtd/i18n/ca_ES.po index 3a3462d0be7..e5e332f7b47 100644 --- a/addons/project_gtd/i18n/ca_ES.po +++ b/addons/project_gtd/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/cs_CS.po b/addons/project_gtd/i18n/cs_CS.po index 6fc0a4795ee..d7ac08e5b1e 100644 --- a/addons/project_gtd/i18n/cs_CS.po +++ b/addons/project_gtd/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,18 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_daily.py:0 +#, python-format +msgid "No timebox of the type \"%s\" defined !" +msgstr "" + +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" @@ -51,8 +63,9 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: project_gtd -#: wizard_field:project.gtd.timebox.fill,init,task_ids:0 -msgid "Tasks selection" +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "No timebox child of this one !" msgstr "" #. module: project_gtd @@ -71,6 +84,11 @@ msgstr "" msgid "Default Project" msgstr "" +#. module: project_gtd +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: project_gtd #: field:project.gtd.timebox,context4_id:0 msgid "Context 4" @@ -104,9 +122,15 @@ msgid "Getting Things Done - Time Management Module" msgstr "" #. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree_my -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_my_contexts -msgid "My Contexts" +#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks +msgid "Timebox Tasks" +msgstr "" + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_daily.py:0 +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: project_gtd @@ -185,11 +209,6 @@ msgstr "" msgid "Context 6" msgstr "" -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks -msgid "Timebox Tasks" -msgstr "" - #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts @@ -226,6 +245,11 @@ msgstr "" msgid "Timeboxes" msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Planned" +msgstr "" + #. module: project_gtd #: view:project.gtd.context:0 #: field:project.gtd.context,name:0 @@ -238,6 +262,11 @@ msgstr "" msgid "My Open Tasks" msgstr "" +#. module: project_gtd +#: wizard_field:project.gtd.timebox.fill,init,task_ids:0 +msgid "Tasks selection" +msgstr "" + #. module: project_gtd #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time #: model:ir.ui.menu,name:project_gtd.menu_open_time @@ -281,11 +310,6 @@ msgstr "" msgid "Deadline" msgstr "" -#. module: project_gtd -#: view:project.task:0 -msgid "Est. Hours" -msgstr "" - #. module: project_gtd #: wizard_field:project.gtd.timebox.fill,init,timebox_id:0 msgid "Get from Timebox" diff --git a/addons/project_gtd/i18n/cs_CZ.po b/addons/project_gtd/i18n/cs_CZ.po index ecabf618f72..1d0780fea33 100644 --- a/addons/project_gtd/i18n/cs_CZ.po +++ b/addons/project_gtd/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/de_DE.po b/addons/project_gtd/i18n/de_DE.po index 26db6df8ae8..0846d1c01e3 100644 --- a/addons/project_gtd/i18n/de_DE.po +++ b/addons/project_gtd/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 37907597039..f0ecd6176f8 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/es_ES.po b/addons/project_gtd/i18n/es_ES.po index b19893550f9..9584d972615 100644 --- a/addons/project_gtd/i18n/es_ES.po +++ b/addons/project_gtd/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/et_EE.po b/addons/project_gtd/i18n/et_EE.po index 6be46ec4ac6..72a71ff3b4e 100644 --- a/addons/project_gtd/i18n/et_EE.po +++ b/addons/project_gtd/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,10 +21,16 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" -msgstr "" +msgstr "Nähtavad tulbad" #. module: project_gtd #: constraint:ir.model:0 @@ -34,22 +40,22 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_timebox msgid "project.gtd.timebox" -msgstr "" +msgstr "project.gtd.timebox" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_deadline_open msgid "My Deadlines" -msgstr "" +msgstr "Minu tähtajad" #. module: project_gtd #: selection:project.gtd.timebox,type:0 msgid "Monthly" -msgstr "" +msgstr "Igakuine" #. module: project_gtd #: field:project.gtd.timebox,parent_id:0 msgid "Parent Timebox" -msgstr "" +msgstr "Ülem ajalahter" #. module: project_gtd #: constraint:ir.ui.view:0 @@ -65,87 +71,87 @@ msgstr "" #. module: project_gtd #: field:project.gtd.timebox,col_priority:0 msgid "Priority" -msgstr "" +msgstr "Prioriteet" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_inbox #: model:ir.ui.menu,name:project_gtd.menu_open_time_myinbox msgid "My Inbox" -msgstr "" +msgstr "Minu sisendkaust" #. module: project_gtd #: field:project.gtd.context,project_default_id:0 msgid "Default Project" -msgstr "" +msgstr "Vaikimisi projekt" #. module: project_gtd #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: project_gtd #: field:project.gtd.timebox,context4_id:0 msgid "Context 4" -msgstr "" +msgstr "Kontekst 4" #. module: project_gtd #: wizard_field:project.gtd.timebox.fill,init,timebox_to_id:0 msgid "Set to Timebox" -msgstr "" +msgstr "Määra ajalahtriks" #. module: project_gtd #: selection:project.gtd.timebox,type:0 msgid "Other" -msgstr "" +msgstr "Muu" #. module: project_gtd #: field:project.gtd.timebox,col_effective_hours:0 msgid "Effective Hours" -msgstr "" +msgstr "Efektiivsed tunnid" #. module: project_gtd #: view:project.gtd.timebox:0 #: field:project.gtd.timebox,name:0 #: field:project.task,timebox_id:0 msgid "Timebox" -msgstr "" +msgstr "Ajalahter" #. module: project_gtd #: model:ir.module.module,shortdesc:project_gtd.module_meta_information msgid "Getting Things Done - Time Management Module" -msgstr "" +msgstr "Saa asjad tehtud - Ajahalduse moodul" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks msgid "Timebox Tasks" -msgstr "" +msgstr "Ajalahtri ülesanded" #. module: project_gtd #: code:addons/project_gtd/wizard/project_gtd_daily.py:0 #: code:addons/project_gtd/wizard/project_gtd_empty.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Viga!" #. module: project_gtd #: wizard_view:project.gtd.timebox.fill,init:0 msgid "Timebox tasks selection" -msgstr "" +msgstr "Ajalahtri ülesannete valik" #. module: project_gtd #: field:project.gtd.timebox,type:0 msgid "Type" -msgstr "" +msgstr "Tüüp" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_task_inbox msgid "Inbox Tasks" -msgstr "" +msgstr "Ülesannete sisendkast" #. module: project_gtd #: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_empty msgid "Empty Timebox" -msgstr "" +msgstr "Tühjenda ajalahter" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_pending @@ -155,89 +161,89 @@ msgstr "Minu lahtised ülesanded" #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Timebox Definition" -msgstr "" +msgstr "Ajalahtri definitsioon" #. module: project_gtd #: field:project.gtd.timebox,user_id:0 msgid "User" -msgstr "" +msgstr "Kasutaja" #. module: project_gtd #: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_daily #: model:ir.ui.menu,name:project_gtd.menu_open_time_daily_inbox msgid "My Daily Timebox" -msgstr "" +msgstr "Minu igapäevane ajalahter" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_context msgid "project.gtd.context" -msgstr "" +msgstr "project.gtd.context" #. module: project_gtd #: field:project.gtd.timebox,context1_id:0 msgid "Context 1" -msgstr "" +msgstr "Kontekst 1" #. module: project_gtd #: field:project.gtd.timebox,context2_id:0 msgid "Context 2" -msgstr "" +msgstr "Kontekst 2" #. module: project_gtd #: field:project.gtd.timebox,context3_id:0 msgid "Context 3" -msgstr "" +msgstr "Kontekst 3" #. module: project_gtd #: wizard_button:project.gtd.timebox.fill,init,process:0 msgid "Add to Timebox" -msgstr "" +msgstr "Lisa ajalahtrisse" #. module: project_gtd #: field:project.gtd.timebox,context5_id:0 msgid "Context 5" -msgstr "" +msgstr "Kontekst 5" #. module: project_gtd #: field:project.gtd.timebox,context6_id:0 msgid "Context 6" -msgstr "" +msgstr "Kontekst 6" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts #: view:project.gtd.timebox:0 msgid "Contexts" -msgstr "" +msgstr "Kontekstid" #. module: project_gtd #: selection:project.gtd.timebox,type:0 msgid "Daily" -msgstr "" +msgstr "Igapäevane" #. module: project_gtd #: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_fill msgid "Plannify Timebox" -msgstr "" +msgstr "Planeeri ajalahter" #. module: project_gtd #: field:project.gtd.timebox,col_project:0 msgid "Project" -msgstr "" +msgstr "Toode" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_all #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree_my #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_my_timeboxes msgid "My Timeboxes" -msgstr "" +msgstr "Minu ajalahtrid" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes #: view:project.gtd.timebox:0 msgid "Timeboxes" -msgstr "" +msgstr "Ajalahtrid" #. module: project_gtd #: view:project.task:0 @@ -249,28 +255,28 @@ msgstr "Planeeritud" #: field:project.gtd.context,name:0 #: field:project.task,context_id:0 msgid "Context" -msgstr "" +msgstr "Kontekst" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_open msgid "My Open Tasks" -msgstr "" +msgstr "Minu lahtised ülesanded" #. module: project_gtd #: wizard_field:project.gtd.timebox.fill,init,task_ids:0 msgid "Tasks selection" -msgstr "" +msgstr "Ülesannete valik" #. module: project_gtd #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time #: model:ir.ui.menu,name:project_gtd.menu_open_time msgid "Time Management" -msgstr "" +msgstr "Ajahaldus" #. module: project_gtd #: view:project.task:0 msgid "Getting Things Done" -msgstr "" +msgstr "Saa asjad tehtud" #. module: project_gtd #: field:project.gtd.timebox,task1_ids:0 @@ -287,45 +293,45 @@ msgstr "Ülesanded" #. module: project_gtd #: field:project.gtd.context,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Järjekord" #. module: project_gtd #: field:project.gtd.timebox,child_ids:0 msgid "Child Timeboxes" -msgstr "" +msgstr "Alam ajalahtrid" #. module: project_gtd #: model:ir.ui.menu,name:project_gtd.menu_open_time_allinbox msgid "All My Timeboxes" -msgstr "" +msgstr "Kõik minu ajalahtrid" #. module: project_gtd #: field:project.gtd.timebox,col_deadline:0 msgid "Deadline" -msgstr "" +msgstr "Tähtaeg" #. module: project_gtd #: wizard_field:project.gtd.timebox.fill,init,timebox_id:0 msgid "Get from Timebox" -msgstr "" +msgstr "Saa ajalahtrist" #. module: project_gtd #: wizard_button:project.gtd.timebox.fill,init,end:0 msgid "Cancel" -msgstr "" +msgstr "Tühista" #. module: project_gtd #: field:project.gtd.timebox,col_date_start:0 msgid "Date Start" -msgstr "" +msgstr "Alguskuupäev" #. module: project_gtd #: field:project.gtd.timebox,col_planned_hours:0 msgid "Planned Hours" -msgstr "" +msgstr "Planeeritud tunnid" #. module: project_gtd #: selection:project.gtd.timebox,type:0 msgid "Weekly" -msgstr "" +msgstr "Iganädalane" diff --git a/addons/project_gtd/i18n/fr_FR.po b/addons/project_gtd/i18n/fr_FR.po index 714ac73513a..16fd106058f 100644 --- a/addons/project_gtd/i18n/fr_FR.po +++ b/addons/project_gtd/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/hr_HR.po b/addons/project_gtd/i18n/hr_HR.po index 62e260c5881..b3227a0d17d 100644 --- a/addons/project_gtd/i18n/hr_HR.po +++ b/addons/project_gtd/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/hu_HU.po b/addons/project_gtd/i18n/hu_HU.po index 70bdb6aeb16..5c30c0f5e05 100644 --- a/addons/project_gtd/i18n/hu_HU.po +++ b/addons/project_gtd/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/it_IT.po b/addons/project_gtd/i18n/it_IT.po index 0eea0b842b9..3d8c7d525ec 100644 --- a/addons/project_gtd/i18n/it_IT.po +++ b/addons/project_gtd/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/lt_LT.po b/addons/project_gtd/i18n/lt_LT.po index d7ca5db38ef..79623229e4c 100644 --- a/addons/project_gtd/i18n/lt_LT.po +++ b/addons/project_gtd/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index edb5aa4dd8a..d01341a3b4c 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/nl_NL.po b/addons/project_gtd/i18n/nl_NL.po index 4abdf3d56cc..01435a1342a 100644 --- a/addons/project_gtd/i18n/nl_NL.po +++ b/addons/project_gtd/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/pl_PL.po b/addons/project_gtd/i18n/pl_PL.po index 6325cbb0d27..4141fe5bb33 100644 --- a/addons/project_gtd/i18n/pl_PL.po +++ b/addons/project_gtd/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index c524b5f6867..51379236352 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index 13cde428f34..aa7f485c6f1 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/pt_PT.po b/addons/project_gtd/i18n/pt_PT.po index 04293a22028..790003b4674 100644 --- a/addons/project_gtd/i18n/pt_PT.po +++ b/addons/project_gtd/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/ro_RO.po b/addons/project_gtd/i18n/ro_RO.po index 4176a29858b..919055e0bd0 100644 --- a/addons/project_gtd/i18n/ro_RO.po +++ b/addons/project_gtd/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/ru_RU.po b/addons/project_gtd/i18n/ru_RU.po index 1c6bd244e2e..1e16585eb29 100644 --- a/addons/project_gtd/i18n/ru_RU.po +++ b/addons/project_gtd/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/sl_SL.po b/addons/project_gtd/i18n/sl_SL.po index 38a58e615fd..72c741082ef 100644 --- a/addons/project_gtd/i18n/sl_SL.po +++ b/addons/project_gtd/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/sv_SE.po b/addons/project_gtd/i18n/sv_SE.po index 0f81e20059f..b5f31e38567 100644 --- a/addons/project_gtd/i18n/sv_SE.po +++ b/addons/project_gtd/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/sv_SV.po b/addons/project_gtd/i18n/sv_SV.po index 2d272500aea..ed19e87df81 100644 --- a/addons/project_gtd/i18n/sv_SV.po +++ b/addons/project_gtd/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,18 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_daily.py:0 +#, python-format +msgid "No timebox of the type \"%s\" defined !" +msgstr "" + +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" @@ -51,8 +63,9 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: project_gtd -#: wizard_field:project.gtd.timebox.fill,init,task_ids:0 -msgid "Tasks selection" +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "No timebox child of this one !" msgstr "" #. module: project_gtd @@ -71,6 +84,11 @@ msgstr "" msgid "Default Project" msgstr "" +#. module: project_gtd +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: project_gtd #: field:project.gtd.timebox,context4_id:0 msgid "Context 4" @@ -104,9 +122,15 @@ msgid "Getting Things Done - Time Management Module" msgstr "" #. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree_my -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_my_contexts -msgid "My Contexts" +#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks +msgid "Timebox Tasks" +msgstr "" + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_daily.py:0 +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "Error !" msgstr "" #. module: project_gtd @@ -185,11 +209,6 @@ msgstr "" msgid "Context 6" msgstr "" -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks -msgid "Timebox Tasks" -msgstr "" - #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts @@ -226,6 +245,11 @@ msgstr "" msgid "Timeboxes" msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Planned" +msgstr "" + #. module: project_gtd #: view:project.gtd.context:0 #: field:project.gtd.context,name:0 @@ -238,6 +262,11 @@ msgstr "" msgid "My Open Tasks" msgstr "" +#. module: project_gtd +#: wizard_field:project.gtd.timebox.fill,init,task_ids:0 +msgid "Tasks selection" +msgstr "" + #. module: project_gtd #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time #: model:ir.ui.menu,name:project_gtd.menu_open_time @@ -281,11 +310,6 @@ msgstr "" msgid "Deadline" msgstr "" -#. module: project_gtd -#: view:project.task:0 -msgid "Est. Hours" -msgstr "" - #. module: project_gtd #: wizard_field:project.gtd.timebox.fill,init,timebox_id:0 msgid "Get from Timebox" diff --git a/addons/project_gtd/i18n/tr_TR.po b/addons/project_gtd/i18n/tr_TR.po index 4d20b1e5fcd..a56b0c327d7 100644 --- a/addons/project_gtd/i18n/tr_TR.po +++ b/addons/project_gtd/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/uk_UK.po b/addons/project_gtd/i18n/uk_UK.po index e2962a8af90..334b8526c2d 100644 --- a/addons/project_gtd/i18n/uk_UK.po +++ b/addons/project_gtd/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index 2b64def79b1..3a46aaac5ab 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index 57d8dafc823..7d033ddcc73 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,6 +21,12 @@ msgstr "" msgid "No timebox of the type \"%s\" defined !" msgstr "" +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Eff. Hours" +msgstr "" + #. module: project_gtd #: view:project.gtd.timebox:0 msgid "Visible Columns" diff --git a/addons/project_mrp/i18n/ar_AR.po b/addons/project_mrp/i18n/ar_AR.po index c6fbd53371a..9051d8dbee8 100644 --- a/addons/project_mrp/i18n/ar_AR.po +++ b/addons/project_mrp/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/bg_BG.po b/addons/project_mrp/i18n/bg_BG.po index bf190448c75..d7e25374731 100644 --- a/addons/project_mrp/i18n/bg_BG.po +++ b/addons/project_mrp/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/bs_BS.po b/addons/project_mrp/i18n/bs_BS.po index bc3114925ff..d19ed906536 100644 --- a/addons/project_mrp/i18n/bs_BS.po +++ b/addons/project_mrp/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ca_ES.po b/addons/project_mrp/i18n/ca_ES.po index 8759639586f..9f7011c966b 100644 --- a/addons/project_mrp/i18n/ca_ES.po +++ b/addons/project_mrp/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/cs_CS.po b/addons/project_mrp/i18n/cs_CS.po index e3d0c68b3ab..99e17742875 100644 --- a/addons/project_mrp/i18n/cs_CS.po +++ b/addons/project_mrp/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/cs_CZ.po b/addons/project_mrp/i18n/cs_CZ.po index 9b8b7883fca..e7f340d0489 100644 --- a/addons/project_mrp/i18n/cs_CZ.po +++ b/addons/project_mrp/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/de_DE.po b/addons/project_mrp/i18n/de_DE.po index 15ab6c09a0b..b74417fa32c 100644 --- a/addons/project_mrp/i18n/de_DE.po +++ b/addons/project_mrp/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index d2038763450..61a4f991e6a 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/es_ES.po b/addons/project_mrp/i18n/es_ES.po index dc09d64334c..b9711100540 100644 --- a/addons/project_mrp/i18n/es_ES.po +++ b/addons/project_mrp/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/et_EE.po b/addons/project_mrp/i18n/et_EE.po index 41f373c187b..7b87bacac7d 100644 --- a/addons/project_mrp/i18n/et_EE.po +++ b/addons/project_mrp/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,38 +18,38 @@ msgstr "" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 msgid "For each product, on type service and on order" -msgstr "" +msgstr "Igale tootele, teenusel ja korraldusel" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_mrptask0 #: model:process.node,name:project_mrp.process_node_procuretasktask0 msgid "Task" -msgstr "" +msgstr "Ülesanne" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_ordertask0 msgid "If procure method is Make to order and supply method is produce" -msgstr "" +msgstr "Kui tootmise meetod on 'Loo korraldusse' ja tarne meetod on 'Tooda'" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 msgid "if product type is 'service' then it creates the task." -msgstr "" +msgstr "kui toote tüüp on 'teenus' siis see loob ülesande." #. module: project_mrp #: field:project.task,procurement_id:0 msgid "Procurement" -msgstr "" +msgstr "Hankimine" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_createtask0 msgid "Product type is service, then its creates the task." -msgstr "" +msgstr "Toote tüüp on teenus, siis see loob ülesande." #. module: project_mrp #: model:ir.module.module,shortdesc:project_mrp.module_meta_information msgid "Project Management - MRP and Sale Integration" -msgstr "" +msgstr "Projektihaldus - MRP ja müügi integratsioon" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_procuretask0 @@ -59,7 +59,7 @@ msgstr "" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_mrptask0 msgid "A task is created to provide the service." -msgstr "" +msgstr "Ülesanne on loodud, et pakkuda teenust." #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_ordertask0 @@ -74,10 +74,10 @@ msgstr "" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 msgid "Create Task" -msgstr "" +msgstr "Loo ülesanne" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 msgid "In case you sell services on sale order" -msgstr "" +msgstr "Juhul kui sa müüd teenuseid müügikorraldusel" diff --git a/addons/project_mrp/i18n/fr_FR.po b/addons/project_mrp/i18n/fr_FR.po index dfaac313bbd..dd482b893ce 100644 --- a/addons/project_mrp/i18n/fr_FR.po +++ b/addons/project_mrp/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/hr_HR.po b/addons/project_mrp/i18n/hr_HR.po index 1052270f4bb..3d11785c144 100644 --- a/addons/project_mrp/i18n/hr_HR.po +++ b/addons/project_mrp/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/hu_HU.po b/addons/project_mrp/i18n/hu_HU.po index a573ce87a69..d4fdc8c7611 100644 --- a/addons/project_mrp/i18n/hu_HU.po +++ b/addons/project_mrp/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/it_IT.po b/addons/project_mrp/i18n/it_IT.po index 1b6a37f7a49..630317eb165 100644 --- a/addons/project_mrp/i18n/it_IT.po +++ b/addons/project_mrp/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/lt_LT.po b/addons/project_mrp/i18n/lt_LT.po index 5e182ab23b8..9252b5024f0 100644 --- a/addons/project_mrp/i18n/lt_LT.po +++ b/addons/project_mrp/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index 836e8110db9..38cb4759c50 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/nl_NL.po b/addons/project_mrp/i18n/nl_NL.po index 3d149e5e165..948d05383f8 100644 --- a/addons/project_mrp/i18n/nl_NL.po +++ b/addons/project_mrp/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pl_PL.po b/addons/project_mrp/i18n/pl_PL.po index 260f9a91ceb..ec02d28c3f1 100644 --- a/addons/project_mrp/i18n/pl_PL.po +++ b/addons/project_mrp/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+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 09238803556..c41dc3590f7 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index bd688a7a386..747af4ac6db 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pt_PT.po b/addons/project_mrp/i18n/pt_PT.po index a2155088666..a91436d230d 100644 --- a/addons/project_mrp/i18n/pt_PT.po +++ b/addons/project_mrp/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ro_RO.po b/addons/project_mrp/i18n/ro_RO.po index 86752749a63..834864599ef 100644 --- a/addons/project_mrp/i18n/ro_RO.po +++ b/addons/project_mrp/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ru_RU.po b/addons/project_mrp/i18n/ru_RU.po index c74f250a0d3..9cc7d201a5c 100644 --- a/addons/project_mrp/i18n/ru_RU.po +++ b/addons/project_mrp/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sl_SL.po b/addons/project_mrp/i18n/sl_SL.po index 4ecf5a94741..b6843fe4b66 100644 --- a/addons/project_mrp/i18n/sl_SL.po +++ b/addons/project_mrp/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sv_SE.po b/addons/project_mrp/i18n/sv_SE.po index d93224c6405..bcba99feadc 100644 --- a/addons/project_mrp/i18n/sv_SE.po +++ b/addons/project_mrp/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sv_SV.po b/addons/project_mrp/i18n/sv_SV.po index 72d72576df1..7c039b43e0e 100644 --- a/addons/project_mrp/i18n/sv_SV.po +++ b/addons/project_mrp/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/tr_TR.po b/addons/project_mrp/i18n/tr_TR.po index 036dae10793..c6681cae670 100644 --- a/addons/project_mrp/i18n/tr_TR.po +++ b/addons/project_mrp/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/uk_UK.po b/addons/project_mrp/i18n/uk_UK.po index 119106c97be..fc3f27a6ff5 100644 --- a/addons/project_mrp/i18n/uk_UK.po +++ b/addons/project_mrp/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index 6daab6a5d00..0d03d938f6b 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index a928820e1b0..c79b1cdadd3 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ar_AR.po b/addons/project_retro_planning/i18n/ar_AR.po index 7966c58d49e..5e0525496cb 100644 --- a/addons/project_retro_planning/i18n/ar_AR.po +++ b/addons/project_retro_planning/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/bg_BG.po b/addons/project_retro_planning/i18n/bg_BG.po index aaee90d596f..91f8bc475d7 100644 --- a/addons/project_retro_planning/i18n/bg_BG.po +++ b/addons/project_retro_planning/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/bs_BS.po b/addons/project_retro_planning/i18n/bs_BS.po index e653385ce1f..3a81a392449 100644 --- a/addons/project_retro_planning/i18n/bs_BS.po +++ b/addons/project_retro_planning/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ca_ES.po b/addons/project_retro_planning/i18n/ca_ES.po index f0f90e2b791..3c9b28442af 100644 --- a/addons/project_retro_planning/i18n/ca_ES.po +++ b/addons/project_retro_planning/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/cs_CS.po b/addons/project_retro_planning/i18n/cs_CS.po index 2430c9faea4..5757d9fd12f 100644 --- a/addons/project_retro_planning/i18n/cs_CS.po +++ b/addons/project_retro_planning/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/cs_CZ.po b/addons/project_retro_planning/i18n/cs_CZ.po index 38e8cbab703..b3b8c5d3727 100644 --- a/addons/project_retro_planning/i18n/cs_CZ.po +++ b/addons/project_retro_planning/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/de_DE.po b/addons/project_retro_planning/i18n/de_DE.po index 5a9405e6815..607d5505b8c 100644 --- a/addons/project_retro_planning/i18n/de_DE.po +++ b/addons/project_retro_planning/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/es_AR.po b/addons/project_retro_planning/i18n/es_AR.po index 5ee5a364a26..4f6ff18cb7a 100644 --- a/addons/project_retro_planning/i18n/es_AR.po +++ b/addons/project_retro_planning/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/es_ES.po b/addons/project_retro_planning/i18n/es_ES.po index 99e6ad3c7b5..1ac2b844db3 100644 --- a/addons/project_retro_planning/i18n/es_ES.po +++ b/addons/project_retro_planning/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/et_EE.po b/addons/project_retro_planning/i18n/et_EE.po index 87dd5f81293..e75bcd54783 100644 --- a/addons/project_retro_planning/i18n/et_EE.po +++ b/addons/project_retro_planning/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: project_retro_planning #: model:ir.module.module,shortdesc:project_retro_planning.module_meta_information msgid "Project Retro planning" -msgstr "" +msgstr "Projekti retroplaneerimine" diff --git a/addons/project_retro_planning/i18n/fr_FR.po b/addons/project_retro_planning/i18n/fr_FR.po index 5816e2a3091..f1d655e5513 100644 --- a/addons/project_retro_planning/i18n/fr_FR.po +++ b/addons/project_retro_planning/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/hr_HR.po b/addons/project_retro_planning/i18n/hr_HR.po index d24dae5a9db..3ca9f9a2217 100644 --- a/addons/project_retro_planning/i18n/hr_HR.po +++ b/addons/project_retro_planning/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/hu_HU.po b/addons/project_retro_planning/i18n/hu_HU.po index 7d0214a70cf..4d350d10b14 100644 --- a/addons/project_retro_planning/i18n/hu_HU.po +++ b/addons/project_retro_planning/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/it_IT.po b/addons/project_retro_planning/i18n/it_IT.po index b64f085db2c..293b3190cfe 100644 --- a/addons/project_retro_planning/i18n/it_IT.po +++ b/addons/project_retro_planning/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/lt_LT.po b/addons/project_retro_planning/i18n/lt_LT.po index 0fded9778ed..1ce2b6a509e 100644 --- a/addons/project_retro_planning/i18n/lt_LT.po +++ b/addons/project_retro_planning/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/nl_BE.po b/addons/project_retro_planning/i18n/nl_BE.po index 1af3739900b..899150c5624 100644 --- a/addons/project_retro_planning/i18n/nl_BE.po +++ b/addons/project_retro_planning/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/nl_NL.po b/addons/project_retro_planning/i18n/nl_NL.po index 19ae7ce0b90..d7fb74d96f7 100644 --- a/addons/project_retro_planning/i18n/nl_NL.po +++ b/addons/project_retro_planning/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pl_PL.po b/addons/project_retro_planning/i18n/pl_PL.po index 2145ecc89ea..f2d37f3956f 100644 --- a/addons/project_retro_planning/i18n/pl_PL.po +++ b/addons/project_retro_planning/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/project_retro_planning.pot b/addons/project_retro_planning/i18n/project_retro_planning.pot index 9f7c8c36654..5d9a8979594 100644 --- a/addons/project_retro_planning/i18n/project_retro_planning.pot +++ b/addons/project_retro_planning/i18n/project_retro_planning.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pt_BR.po b/addons/project_retro_planning/i18n/pt_BR.po index 06476ca6902..78207cfc617 100644 --- a/addons/project_retro_planning/i18n/pt_BR.po +++ b/addons/project_retro_planning/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pt_PT.po b/addons/project_retro_planning/i18n/pt_PT.po index 0d3870277b3..42815c07ebb 100644 --- a/addons/project_retro_planning/i18n/pt_PT.po +++ b/addons/project_retro_planning/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ro_RO.po b/addons/project_retro_planning/i18n/ro_RO.po index ffaeed390c2..81c5c0a842d 100644 --- a/addons/project_retro_planning/i18n/ro_RO.po +++ b/addons/project_retro_planning/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ru_RU.po b/addons/project_retro_planning/i18n/ru_RU.po index 8d650dbe9ca..ac6a9d28a74 100644 --- a/addons/project_retro_planning/i18n/ru_RU.po +++ b/addons/project_retro_planning/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sl_SL.po b/addons/project_retro_planning/i18n/sl_SL.po index 782108e84cc..ef1641f428a 100644 --- a/addons/project_retro_planning/i18n/sl_SL.po +++ b/addons/project_retro_planning/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sv_SE.po b/addons/project_retro_planning/i18n/sv_SE.po index b49e19c1e26..d61763568b0 100644 --- a/addons/project_retro_planning/i18n/sv_SE.po +++ b/addons/project_retro_planning/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sv_SV.po b/addons/project_retro_planning/i18n/sv_SV.po index 9b315c188a5..6458a56ae9d 100644 --- a/addons/project_retro_planning/i18n/sv_SV.po +++ b/addons/project_retro_planning/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/tr_TR.po b/addons/project_retro_planning/i18n/tr_TR.po index bb820353e25..8e65cd06d8e 100644 --- a/addons/project_retro_planning/i18n/tr_TR.po +++ b/addons/project_retro_planning/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/uk_UK.po b/addons/project_retro_planning/i18n/uk_UK.po index 3e6681fb230..9477ec4118c 100644 --- a/addons/project_retro_planning/i18n/uk_UK.po +++ b/addons/project_retro_planning/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/zh_CN.po b/addons/project_retro_planning/i18n/zh_CN.po index ffdc6947cd0..14e22d8bede 100644 --- a/addons/project_retro_planning/i18n/zh_CN.po +++ b/addons/project_retro_planning/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/zh_TW.po b/addons/project_retro_planning/i18n/zh_TW.po index de1ef419d3e..54e02d8e15b 100644 --- a/addons/project_retro_planning/i18n/zh_TW.po +++ b/addons/project_retro_planning/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ar_AR.po b/addons/project_timesheet/i18n/ar_AR.po index 891d143c00e..e34014b0ced 100644 --- a/addons/project_timesheet/i18n/ar_AR.po +++ b/addons/project_timesheet/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/bg_BG.po b/addons/project_timesheet/i18n/bg_BG.po index f328f360edc..88743812515 100644 --- a/addons/project_timesheet/i18n/bg_BG.po +++ b/addons/project_timesheet/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/bs_BS.po b/addons/project_timesheet/i18n/bs_BS.po index 7a2e34c179f..ca13bb1b05c 100644 --- a/addons/project_timesheet/i18n/bs_BS.po +++ b/addons/project_timesheet/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ca_ES.po b/addons/project_timesheet/i18n/ca_ES.po index d1d4905a628..add34170015 100644 --- a/addons/project_timesheet/i18n/ca_ES.po +++ b/addons/project_timesheet/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/cs_CS.po b/addons/project_timesheet/i18n/cs_CS.po index 4e85177c274..64d78e4ac71 100644 --- a/addons/project_timesheet/i18n/cs_CS.po +++ b/addons/project_timesheet/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/cs_CZ.po b/addons/project_timesheet/i18n/cs_CZ.po index 5d9c4e5fc7c..949c5ea81d2 100644 --- a/addons/project_timesheet/i18n/cs_CZ.po +++ b/addons/project_timesheet/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/de_DE.po b/addons/project_timesheet/i18n/de_DE.po index b6ffe735c5b..9b10ad0ac9c 100644 --- a/addons/project_timesheet/i18n/de_DE.po +++ b/addons/project_timesheet/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 7ec6a014640..75eb0743e06 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/es_ES.po b/addons/project_timesheet/i18n/es_ES.po index 6e11653ac22..491820cfb73 100644 --- a/addons/project_timesheet/i18n/es_ES.po +++ b/addons/project_timesheet/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/et_EE.po b/addons/project_timesheet/i18n/et_EE.po index c4d1ea58e86..06eac2368e1 100644 --- a/addons/project_timesheet/i18n/et_EE.po +++ b/addons/project_timesheet/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "Seotud graafiku id" #. module: project_timesheet #: model:ir.module.module,shortdesc:project_timesheet.module_meta_information msgid "Project Timesheet" -msgstr "" +msgstr "Projekti tööajaleht" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:0 @@ -47,5 +47,5 @@ msgstr "" #: code:addons/project_timesheet/project_timesheet.py:0 #, python-format msgid "Bad Configuration !" -msgstr "" +msgstr "Vigane seadistus!" diff --git a/addons/project_timesheet/i18n/fr_FR.po b/addons/project_timesheet/i18n/fr_FR.po index 73fc623c2b1..d7fa0449c05 100644 --- a/addons/project_timesheet/i18n/fr_FR.po +++ b/addons/project_timesheet/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/hr_HR.po b/addons/project_timesheet/i18n/hr_HR.po index 95c02c77144..bdffc5a4a95 100644 --- a/addons/project_timesheet/i18n/hr_HR.po +++ b/addons/project_timesheet/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/hu_HU.po b/addons/project_timesheet/i18n/hu_HU.po index dcb16b0ee60..991af277223 100644 --- a/addons/project_timesheet/i18n/hu_HU.po +++ b/addons/project_timesheet/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/it_IT.po b/addons/project_timesheet/i18n/it_IT.po index 51ceb6d70d6..9db041c8204 100644 --- a/addons/project_timesheet/i18n/it_IT.po +++ b/addons/project_timesheet/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/lt_LT.po b/addons/project_timesheet/i18n/lt_LT.po index 06367d5c29b..e1cf04cc45e 100644 --- a/addons/project_timesheet/i18n/lt_LT.po +++ b/addons/project_timesheet/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index a4b53090fdc..da1e1f1d1ee 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/nl_NL.po b/addons/project_timesheet/i18n/nl_NL.po index 403e74f1f35..60c66208d16 100644 --- a/addons/project_timesheet/i18n/nl_NL.po +++ b/addons/project_timesheet/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pl_PL.po b/addons/project_timesheet/i18n/pl_PL.po index f3b13c7e23b..77a7a88cf16 100644 --- a/addons/project_timesheet/i18n/pl_PL.po +++ b/addons/project_timesheet/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/project_timesheet.pot b/addons/project_timesheet/i18n/project_timesheet.pot index 65b0d707977..21f8d2159bf 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index 63f7a4d28a3..110bf992ce2 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pt_PT.po b/addons/project_timesheet/i18n/pt_PT.po index 84bf769aae6..6b68c9ada68 100644 --- a/addons/project_timesheet/i18n/pt_PT.po +++ b/addons/project_timesheet/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ro_RO.po b/addons/project_timesheet/i18n/ro_RO.po index e0a12112530..339728ee5eb 100644 --- a/addons/project_timesheet/i18n/ro_RO.po +++ b/addons/project_timesheet/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ru_RU.po b/addons/project_timesheet/i18n/ru_RU.po index ca1a4418b18..d077b45c2d0 100644 --- a/addons/project_timesheet/i18n/ru_RU.po +++ b/addons/project_timesheet/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sl_SL.po b/addons/project_timesheet/i18n/sl_SL.po index 16560de2de8..6eca4cee62f 100644 --- a/addons/project_timesheet/i18n/sl_SL.po +++ b/addons/project_timesheet/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sv_SE.po b/addons/project_timesheet/i18n/sv_SE.po index 3c2e9f43cd5..2e9b48abf64 100644 --- a/addons/project_timesheet/i18n/sv_SE.po +++ b/addons/project_timesheet/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sv_SV.po b/addons/project_timesheet/i18n/sv_SV.po index f49478a7c80..be8ff4dfda9 100644 --- a/addons/project_timesheet/i18n/sv_SV.po +++ b/addons/project_timesheet/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/tr_TR.po b/addons/project_timesheet/i18n/tr_TR.po index fea6aa29d68..6089411b3f1 100644 --- a/addons/project_timesheet/i18n/tr_TR.po +++ b/addons/project_timesheet/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/uk_UK.po b/addons/project_timesheet/i18n/uk_UK.po index b74aadcad3e..f82aa106345 100644 --- a/addons/project_timesheet/i18n/uk_UK.po +++ b/addons/project_timesheet/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index bb579fed50d..2ccdfd32819 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index 44060ab42d0..f134ccab6ed 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/ar_AR.po b/addons/purchase/i18n/ar_AR.po index 606ead88bf0..dde6a29c5c6 100644 --- a/addons/purchase/i18n/ar_AR.po +++ b/addons/purchase/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/bg_BG.po b/addons/purchase/i18n/bg_BG.po index b46525a9f5d..17ca88d4cc3 100644 --- a/addons/purchase/i18n/bg_BG.po +++ b/addons/purchase/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/bs_BS.po b/addons/purchase/i18n/bs_BS.po index 42cf0015179..94dd33e4437 100644 --- a/addons/purchase/i18n/bs_BS.po +++ b/addons/purchase/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/ca_ES.po b/addons/purchase/i18n/ca_ES.po index 4596dcd15b1..f7cc4970f0c 100644 --- a/addons/purchase/i18n/ca_ES.po +++ b/addons/purchase/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -623,6 +623,11 @@ msgstr "IVA:" msgid "Compute" msgstr "Calcula" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -887,11 +892,6 @@ msgstr "Compra aprovada" msgid "From Packing list, Create invoice." msgstr "Des d'albarà, crea factura." -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No podeu tenir 2 versions de tarifes que es superposin!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/cs_CS.po b/addons/purchase/i18n/cs_CS.po index 14bfe1683cd..7590cfef5bc 100644 --- a/addons/purchase/i18n/cs_CS.po +++ b/addons/purchase/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Validated By" msgstr "" +#. module: purchase +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: purchase #: field:purchase.order,partner_id:0 msgid "Supplier" @@ -616,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -880,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/cs_CZ.po b/addons/purchase/i18n/cs_CZ.po index 061eb38d22a..e1002eb3d1e 100644 --- a/addons/purchase/i18n/cs_CZ.po +++ b/addons/purchase/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/de_DE.po b/addons/purchase/i18n/de_DE.po index 3546cc34b96..1a9e5c074ad 100644 --- a/addons/purchase/i18n/de_DE.po +++ b/addons/purchase/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -623,6 +623,11 @@ msgstr "USt.:" msgid "Compute" msgstr "Berechne" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -888,11 +893,6 @@ msgstr "Bestätigter Beschaffungsauftrag" msgid "From Packing list, Create invoice." msgstr "Erzeuge Rechnung aus Packauftrag" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sie können keine sich zeitlich überlappende Versionen von Preislisten haben." - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index 50c8dee7953..99d788245ad 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Calcular" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/es_ES.po b/addons/purchase/i18n/es_ES.po index 596d5c3cb1e..7c45befeb81 100644 --- a/addons/purchase/i18n/es_ES.po +++ b/addons/purchase/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -623,6 +623,11 @@ msgstr "IVA:" msgid "Compute" msgstr "Calcular" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -887,11 +892,6 @@ msgstr "Compra aprobada" msgid "From Packing list, Create invoice." msgstr "Desde albarán, crear factura." -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "No puede tener 2 versiones de tarifas que se superpongan!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/et_EE.po b/addons/purchase/i18n/et_EE.po index 213f6ca9ca3..43c34783438 100644 --- a/addons/purchase/i18n/et_EE.po +++ b/addons/purchase/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: purchase #: field:purchase.order,invoiced:0 msgid "Invoiced & Paid" -msgstr "" +msgstr "Arveldatud ja makstud" #. module: purchase #: model:process.node,note:purchase.process_node_invoiceafterpacking0 msgid "Supplier Invoice pre-generated on receptions for control" -msgstr "" +msgstr "Vastuvõtmistel kontrolliks eelgenereeritud tarnija arve" #. module: purchase #: field:purchase.order,location_id:0 @@ -33,17 +33,17 @@ msgstr "Sihtpunkt" #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "From Picking" -msgstr "" +msgstr "Noppest" #. module: purchase #: rml:purchase.order:0 msgid "Validated By" -msgstr "" +msgstr "Valideerija:" #. module: purchase #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: purchase #: field:purchase.order,partner_id:0 @@ -58,7 +58,7 @@ msgstr "Tarnimine" #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Please note that orders will only be merged if they are to the same partner and going to the same location, and lines will only be merged if they are exactly the same except for the quantity and unit." -msgstr "" +msgstr "Pane tähele, et korraldused liidetakse ainult siis, kui nad lähevad samale partnerile ja samasse kohta. Read liidetakse ainult siis, kui nad on täpselt samad välja arvatud kogus ja ühik." #. module: purchase #: code:addons/purchase/purchase.py:0 @@ -69,7 +69,7 @@ msgstr "Hinnakiri puudub !" #. module: purchase #: model:ir.actions.act_window,name:purchase.act_purchase_order_2_stock_picking msgid "Packing" -msgstr "" +msgstr "Pakkimine" #. module: purchase #: model:process.node,name:purchase.process_node_confirmpurchaseorder0 @@ -79,7 +79,7 @@ msgstr "Kinnitatud ost" #. module: purchase #: selection:purchase.order,state:0 msgid "Invoice Exception" -msgstr "" +msgstr "Arve erand" #. module: purchase #: model:product.pricelist,name:purchase.list0 @@ -94,7 +94,7 @@ msgstr "Loo arve" #. module: purchase #: help:res.partner,property_product_pricelist_purchase:0 msgid "This pricelist will be used, instead of the default one, for purchases from the current partner" -msgstr "" +msgstr "Seda hinnakirja kasutatakse vaikimisi hinnakirja asemel ostude jaoks käesolevalt partnerilt." #. module: purchase #: rml:purchase.order:0 @@ -104,12 +104,12 @@ msgstr "Faks :" #. module: purchase #: model:process.transition,note:purchase.process_transition_productrecept0 msgid "Create invoice from product recept" -msgstr "" +msgstr "Loo arve toote vastuvõtmisest" #. 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." -msgstr "" +msgstr "Hinnakiri määrab selle ostukorralduse jaoks kasutatava valuuta. Samuti arvutab see tarnija hinna valitud toodetele/kogustele." #. module: purchase #: model:process.process,name:purchase.process_process_purchaseprocess0 @@ -140,7 +140,7 @@ msgstr "Ostukorraldused käimas" #. module: purchase #: field:purchase.order,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "" +msgstr "Maksustamata summa" #. module: purchase #: view:purchase.order:0 @@ -174,12 +174,12 @@ msgstr "Ostutellimus" #. module: purchase #: field:purchase.order,name:0 msgid "Order Reference" -msgstr "" +msgstr "Tellimuse viide" #. module: purchase #: rml:purchase.order:0 msgid "Net Total :" -msgstr "" +msgstr "Netosumma:" #. module: purchase #: selection:purchase.order,state:0 @@ -189,12 +189,12 @@ msgstr "Tühistatud" #. module: purchase #: help:purchase.order,state:0 msgid "The state of the purchase order or the quotation request. A quotation is a purchase order in a 'Draft' state. Then the order has to be confirmed by the user, the state switch to 'Confirmed'. Then the supplier must confirm the order to change the state to 'Approved'. When the purchase order is paid and received, the state becomes 'Done'. If a cancel action occurs in the invoice or in the reception of goods, the state becomes in exception." -msgstr "" +msgstr "Ostukorralduse või hinnapäringu olek. Hinnapäring on ostukorraldus 'Mustand' olekus. Siis peab kasutaja tellimuse kinnitama ja olek muutub 'Kinnitatud'. Siis peab tarnija kinnitama tellimuse, et muuta olekut 'Heakskiidetud'. Kui ostukorraldus on makstud ja kätte saadud siis muutub olek 'Tehtud'. Kui katkestamine toimub arveldamisel või kaupade kättesaamisel siis olek muutub 'Hälve'." #. module: purchase #: field:purchase.order,origin:0 msgid "Origin" -msgstr "" +msgstr "Päritolu" #. module: purchase #: model:process.node,name:purchase.process_node_packinglist0 @@ -220,12 +220,12 @@ msgstr "Kõigepealt pead tühistama kõik arved mis on lisatud sellele ostutelli #. module: purchase #: view:purchase.order:0 msgid "Reference" -msgstr "" +msgstr "Viide" #. module: purchase #: rml:purchase.order:0 msgid "TVA :" -msgstr "" +msgstr "KM :" #. module: purchase #: rml:purchase.quotation:0 @@ -235,7 +235,7 @@ msgstr "Tel.:" #. module: purchase #: field:purchase.order.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: purchase #: model:ir.model,name:purchase.model_purchase_order_line @@ -245,24 +245,26 @@ msgstr "Ostutellimuse read" #. module: purchase #: field:purchase.order,validator:0 msgid "Validated by" -msgstr "" +msgstr "Valideerija:" #. module: purchase #: help:purchase.order,invoice_method:0 msgid "From Order: a draft invoice will be pre-generated based on the purchase order. The accountant will just have to validate this invoice for control.\n" "From Picking: a draft invoice will be pre-genearted based on validated receptions.\n" "Manual: no invoice will be pre-generated. The accountant will have to encode manually." -msgstr "" +msgstr "Korraldusest: mustandarve eelgenereeritakse ostukorralduse põhjal. Raamatupidaja peab lihtsalt valideerima selle arve kontrolliks.\n" +"Noppest: mustandarve eelgenereeritakse valideeritud vastuvõtmiste põhjal.\n" +"Manuaalne: arvet ei eelgenereerita. Raamatupidaja peab kodeerima manuaalselt." #. module: purchase #: model:process.node,note:purchase.process_node_packinginvoice0 msgid "Invoice based on deliveries" -msgstr "" +msgstr "Arve kättetoimetamiste põhjal" #. module: purchase #: rml:purchase.order:0 msgid "Net Price" -msgstr "" +msgstr "Netohind" #. module: purchase #: view:purchase.order.line:0 @@ -279,7 +281,7 @@ msgstr "" #: code:addons/purchase/purchase.py:0 #, python-format msgid "Wrong Product UOM !" -msgstr "" +msgstr "Vale toote MÜ!" #. module: purchase #: selection:purchase.order,state:0 @@ -289,7 +291,7 @@ msgstr "Kinnitatud" #. module: purchase #: model:process.node,name:purchase.process_node_productrecept0 msgid "Product Receipt" -msgstr "" +msgstr "Toote kviitung" #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 @@ -299,23 +301,23 @@ msgstr "Kinnita" #. module: purchase #: view:purchase.order:0 msgid "Invoice Control" -msgstr "" +msgstr "Arvehaldus" #. module: purchase #: model:process.node,name:purchase.process_node_draftpurchaseorder0 #: model:process.node,name:purchase.process_node_draftpurchaseorder1 msgid "RFQ" -msgstr "" +msgstr "Noteerimisnõue" #. module: purchase #: selection:purchase.order,state:0 msgid "Waiting" -msgstr "" +msgstr "Ootel" #. module: purchase #: field:purchase.order,picking_ids:0 msgid "Picking List" -msgstr "" +msgstr "Noppeleht" #. module: purchase #: field:purchase.order,warehouse_id:0 @@ -330,7 +332,7 @@ msgstr "Tellimuse read" #. module: purchase #: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder1 msgid "Confirm Purchase order from Request for quotation without origin" -msgstr "" +msgstr "Kinnita ostukorraldus päritoluta hinnapakkumisest" #. module: purchase #: rml:purchase.quotation:0 @@ -340,17 +342,17 @@ msgstr "Faks:" #. module: purchase #: view:purchase.order:0 msgid "Untaxed amount" -msgstr "" +msgstr "Maksustamata summa" #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Date" -msgstr "" +msgstr "Oodatav kuupäev" #. module: purchase #: rml:purchase.order:0 msgid "Shipping address :" -msgstr "" +msgstr "Tarneaadress :" #. module: purchase #: code:addons/purchase/purchase.py:0 @@ -371,7 +373,7 @@ msgstr "Heakskiidetud Tarnijapoolt" #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "From Order" -msgstr "" +msgstr "Tellimusest" #. module: purchase #: model:ir.actions.wizard,name:purchase.purchase_order_merge @@ -381,7 +383,7 @@ msgstr "Ühenda ostud" #. module: purchase #: field:purchase.order.line,move_dest_id:0 msgid "Reservation Destination" -msgstr "" +msgstr "Reserveeringu sihtkoht" #. module: purchase #: code:addons/purchase/purchase.py:0 @@ -402,7 +404,7 @@ msgstr "Hinnakiri" #. module: purchase #: model:process.node,note:purchase.process_node_purchaseorder0 msgid "When controlling invoice from orders" -msgstr "" +msgstr "Kontrollides arveid korraldustest" #. module: purchase #: constraint:ir.ui.view:0 @@ -412,7 +414,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: purchase #: model:process.node,note:purchase.process_node_invoicecontrol0 msgid "Pre-generated supplier invoice to control based on order" -msgstr "" +msgstr "Korralduse põhjal eelgenereeritud tarnija arve kontrolliks" #. module: purchase #: model:process.transition,name:purchase.process_transition_invoicefrompurchase0 @@ -422,12 +424,12 @@ msgstr "Ostuarve" #. module: purchase #: model:process.node,note:purchase.process_node_packinglist0 msgid "Packing is created for the products reception control." -msgstr "" +msgstr "Pakkeleht luuakse toodete vastuvõtmise kontrollimiseks." #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "Manual" -msgstr "" +msgstr "Manuaalne" #. module: purchase #: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder1 @@ -442,12 +444,12 @@ msgstr "Kiida Ostutellimus heaks peale kinnitamist" #. module: purchase #: selection:purchase.order,state:0 msgid "Shipping Exception" -msgstr "" +msgstr "Kättetoimetamise erand" #. module: purchase #: model:process.node,note:purchase.process_node_draftpurchaseorder1 msgid "Encoded manually by the user." -msgstr "" +msgstr "Kodeeritud manuaalselt kasutaja poolt." #. module: purchase #: rml:purchase.order:0 @@ -458,7 +460,7 @@ msgstr "Kogus" #. module: purchase #: help:purchase.order,minimum_planned_date:0 msgid "This is computed as the minimum scheduled date of all purchase order lines' products." -msgstr "" +msgstr "See on arvutatud kui kõigi ostukorralduse ridade toodete minimaalne planeeritud kuupäev." #. module: purchase #: model:ir.actions.act_window,name:purchase.act_res_partner_2_purchase_order @@ -468,17 +470,17 @@ msgstr "Ostutellimused" #. module: purchase #: help:purchase.order,dest_address_id:0 msgid "Put an address if you want to deliver directly from the supplier to the customer.In this case, it will remove the warehouse link and set the customer location." -msgstr "" +msgstr "Sisesta aadress, kui sa tahad kättetoimetamist tarnijalt otse kliendile. Sel juhul eemaldame me laohoone viida ja määrame kliendi asukoha." #. module: purchase #: rml:purchase.quotation:0 msgid "Request for Quotation :" -msgstr "" +msgstr "Hinnapäring" #. module: purchase #: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0 msgid "Confirm Purchase order from Request for quotation" -msgstr "" +msgstr "Kinnita ostukorraldus hinnapäringust" #. module: purchase #: view:purchase.order:0 @@ -488,7 +490,7 @@ msgstr "Kinnita ostutellimus" #. module: purchase #: help:purchase.order,picking_ids:0 msgid "This is the list of picking list that have been generated for this purchase" -msgstr "" +msgstr "See on noppelehe nimekiri, mis on genereeritud selle ostu jaoks." #. module: purchase #: model:ir.module.module,shortdesc:purchase.module_meta_information @@ -509,13 +511,13 @@ msgstr "Maksud :" #. module: purchase #: field:purchase.order,invoiced_rate:0 msgid "Invoiced" -msgstr "" +msgstr "Arveldatud" #. module: purchase #: code:addons/purchase/purchase.py:0 #, python-format msgid "You have to select a product UOM in the same category than the purchase UOM of the product" -msgstr "" +msgstr "Sa pead valima toote mõõtühiku samast kategooriast, mis toote ostu mõõtõhik." #. module: purchase #: field:purchase.order,dest_address_id:0 @@ -542,7 +544,7 @@ msgstr "Kalendrivaade" #. module: purchase #: view:purchase.order:0 msgid "Set to Draft" -msgstr "" +msgstr "Sea mustandiks" #. module: purchase #: model:process.node,note:purchase.process_node_approvepurchaseorder0 @@ -553,7 +555,7 @@ msgstr "Ostutellimus on heakskiidetud tarnijapoolt." #: model:process.node,name:purchase.process_node_invoiceafterpacking0 #: model:process.node,name:purchase.process_node_invoicecontrol0 msgid "Draft Invoice" -msgstr "" +msgstr "Arve mustand" #. module: purchase #: model:ir.model,name:purchase.model_purchase_order @@ -563,38 +565,38 @@ msgstr "Ostutellimus" #. module: purchase #: model:process.node,note:purchase.process_node_draftpurchaseorder0 msgid "Request for quotation is proposed by the system." -msgstr "" +msgstr "Hinnapakkumist pakutakse süsteemi poolt" #. module: purchase #: model:process.transition,name:purchase.process_transition_packinginvoice0 msgid "Packing Invoice" -msgstr "" +msgstr "Pakkimise arve" #. module: purchase #: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 msgid "Creates invoice from packin list" -msgstr "" +msgstr "Loob arve pakkelehelt" #. module: purchase #: view:purchase.order:0 msgid "Delivery & Invoices" -msgstr "" +msgstr "Kättetoimetamine ja arved" #. module: purchase #: help:purchase.order,origin:0 msgid "Reference of the document that generated this purchase order request." -msgstr "" +msgstr "Viide dokumendile, mis genereeris selle ostukorralduse päringu." #. module: purchase #: code:addons/purchase/purchase.py:0 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)" -msgstr "" +msgstr "Sellele tootele pole määratud kulukontot: \"%s\" (id:%d)" #. module: purchase #: rml:purchase.order:0 msgid "Tél. :" -msgstr "" +msgstr "Tel. :" #. module: purchase #: model:process.transition,note:purchase.process_transition_purchaseinvoice0 @@ -604,23 +606,28 @@ msgstr "Pärast ostutellimust , Loo arve." #. module: purchase #: field:purchase.order.line,date_planned:0 msgid "Scheduled date" -msgstr "" +msgstr "Planeeritud kuupäev" #. module: purchase #: rml:purchase.order:0 msgid "Our Order Reference" -msgstr "" +msgstr "Meie tellimuse viide" #. module: purchase #: rml:purchase.quotation:0 msgid "TVA:" -msgstr "" +msgstr "KM:" #. module: purchase #: view:purchase.order:0 msgid "Compute" msgstr "Arvuta" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -629,7 +636,7 @@ msgstr "Tühista ostutellimus" #. module: purchase #: model:process.transition,name:purchase.process_transition_createpackinglist0 msgid "Create Packing list" -msgstr "" +msgstr "Loo pakkeleht" #. module: purchase #: rml:purchase.order:0 @@ -644,7 +651,7 @@ msgstr "Kui ostukorraldus on heakskiidetud, loob see pakkimise nimekirja." #. module: purchase #: model:process.transition,name:purchase.process_transition_invoicefrompackinglist0 msgid "Invoice from Packing list" -msgstr "" +msgstr "Arve pakkelehelt" #. module: purchase #: field:purchase.order,state:0 @@ -659,7 +666,7 @@ msgstr "Vahesumma" #. module: purchase #: model:product.pricelist.version,name:purchase.ver0 msgid "Default Purchase Pricelist Version" -msgstr "" +msgstr "Vaikimisi ostuhinnakirja versioon" #. module: purchase #: rml:purchase.order:0 @@ -670,7 +677,7 @@ msgstr "Ühiku hind" #. module: purchase #: field:purchase.order,fiscal_position:0 msgid "Fiscal Position" -msgstr "" +msgstr "Finantspositsioon" #. module: purchase #: field:purchase.order,invoice_id:0 @@ -721,13 +728,13 @@ msgstr "Uus ostutellimus" #: field:purchase.order,shipped:0 #: field:purchase.order,shipped_rate:0 msgid "Received" -msgstr "" +msgstr "Vastu võetud" #. module: purchase #: model:ir.actions.report.xml,name:purchase.report_purchase_quotation #: selection:purchase.order,state:0 msgid "Request for Quotation" -msgstr "" +msgstr "Hinnapakkumine" #. module: purchase #: model:process.node,name:purchase.process_node_packinginvoice0 @@ -737,12 +744,12 @@ msgstr "" #. module: purchase #: model:process.node,note:purchase.process_node_productrecept0 msgid "Control invoices on receptions" -msgstr "" +msgstr "Halda arveid vastuvõtmisel" #. module: purchase #: rml:purchase.order:0 msgid "Date Req." -msgstr "" +msgstr "Nõutud aeg" #. module: purchase #: field:purchase.order,date_approve:0 @@ -759,7 +766,8 @@ msgstr "Seda ostutellimust ei saa tühistada !" #: model:ir.module.module,description:purchase.module_meta_information msgid "Module for purchase management\n" " Request for quotation, Create Supplier Invoice, Print Order..." -msgstr "" +msgstr "Moodul ostuhalduseks\n" +" Hinnapakkumised, Tarnija arvete loomine, Korralduste printimine..." #. module: purchase #: field:purchase.order.line,product_id:0 @@ -770,7 +778,7 @@ msgstr "Toode" #: code:addons/purchase/purchase.py:0 #, python-format msgid "No Partner!" -msgstr "" +msgstr "Puudub partner!" #. module: purchase #: rml:purchase.order:0 @@ -782,12 +790,12 @@ msgstr "Kirjeldus" #. module: purchase #: model:process.transition,name:purchase.process_transition_productrecept0 msgid "Product recept invoice" -msgstr "" +msgstr "Toote vastuvõtmise arve" #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Delivery address:" -msgstr "" +msgstr "Eeldatav kättetoimetamise aadress:" #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_form_action3 @@ -803,7 +811,7 @@ msgstr "Kinnitan ostukorralduse" #. module: purchase #: field:purchase.order.line,product_uom:0 msgid "Product UOM" -msgstr "" +msgstr "Toote MÜ" #. module: purchase #: rml:purchase.quotation:0 @@ -813,7 +821,7 @@ msgstr "Tervitades," #. module: purchase #: field:purchase.order.line,move_id:0 msgid "Reservation" -msgstr "" +msgstr "Reserveering" #. module: purchase #: code:addons/purchase/purchase.py:0 @@ -830,23 +838,23 @@ msgstr "Ostuarve" #: code:addons/purchase/purchase.py:0 #, python-format msgid "You must first cancel all packing attached to this purchase order." -msgstr "" +msgstr "Sa pead kõigepealt tühistama kõik pakendamised, mis on manustatud sellele ostukorraldusele." #. module: purchase #: rml:purchase.order:0 msgid "Your Order Reference" -msgstr "" +msgstr "Sinu tellimuse viide" #. module: purchase #: view:purchase.order:0 msgid "Total amount" -msgstr "" +msgstr "Kogusumma" #. module: purchase #: rml:purchase.order:0 #: field:purchase.order,date_order:0 msgid "Date Ordered" -msgstr "" +msgstr "Tellimise kuupäev" #. module: purchase #: view:purchase.order:0 @@ -857,7 +865,7 @@ msgstr "Ostukontroll" #: model:ir.actions.act_window,name:purchase.purchase_form_action2 #: model:ir.ui.menu,name:purchase.menu_purchase_order_draft msgid "Request For Quotations" -msgstr "" +msgstr "Hinnapakkumised" #. module: purchase #: model:product.pricelist.type,name:purchase.pricelist_type_purchase @@ -868,7 +876,7 @@ msgstr "Ostu hinnakiri" #. module: purchase #: field:purchase.order,invoice_method:0 msgid "Invoicing Control" -msgstr "" +msgstr "Arveldamishaldus" #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0 @@ -883,12 +891,7 @@ msgstr "Heakskiidetud Ost" #. module: purchase #: model:process.transition,note:purchase.process_transition_packinginvoice0 msgid "From Packing list, Create invoice." -msgstr "" - -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Sul ei saa olla 2 hinnakirja versiooni mis kattuvad!" +msgstr "Loo arve pakkelehest" #. module: purchase #: wizard_view:purchase.order.merge,init:0 diff --git a/addons/purchase/i18n/fr_FR.po b/addons/purchase/i18n/fr_FR.po index c17ea31eaee..c51b6552a93 100644 --- a/addons/purchase/i18n/fr_FR.po +++ b/addons/purchase/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Calculer" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Vous en pouvez pas avoir 2 listes de prix avec des dates qui se chevauchent" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/hr_HR.po b/addons/purchase/i18n/hr_HR.po index fbcaf6df448..274c529278b 100644 --- a/addons/purchase/i18n/hr_HR.po +++ b/addons/purchase/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/hu_HU.po b/addons/purchase/i18n/hu_HU.po index 62ac4c53e32..b19e6fb7438 100644 --- a/addons/purchase/i18n/hu_HU.po +++ b/addons/purchase/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/it_IT.po b/addons/purchase/i18n/it_IT.po index df44e6ff9cd..f1cc696fcf7 100644 --- a/addons/purchase/i18n/it_IT.po +++ b/addons/purchase/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Calcola" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Non puoi avere due versioni dello stesso listino che si sovrappongono" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/lt_LT.po b/addons/purchase/i18n/lt_LT.po index 98e8c57e100..def9c956701 100644 --- a/addons/purchase/i18n/lt_LT.po +++ b/addons/purchase/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index e6be7471cc4..42c9c6dd863 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/nl_NL.po b/addons/purchase/i18n/nl_NL.po index a4a242e5998..64b8044fb69 100644 --- a/addons/purchase/i18n/nl_NL.po +++ b/addons/purchase/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "BTW" msgid "Compute" msgstr "Bereken" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "Bevestigde inkopen" msgid "From Packing list, Create invoice." msgstr "Maak factuur vanaf pakbonnen" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Twee overlappende prijslijsten is niet mogelijk!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/pl_PL.po b/addons/purchase/i18n/pl_PL.po index ed716372df7..e75bb5303b1 100644 --- a/addons/purchase/i18n/pl_PL.po +++ b/addons/purchase/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index 292f7778119..1a3a90ef200 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter 2 listas de preços que sobrepoem!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/pt_PT.po b/addons/purchase/i18n/pt_PT.po index 6be02f5278b..dd8a9384f71 100644 --- a/addons/purchase/i18n/pt_PT.po +++ b/addons/purchase/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Calcular" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Você não pode ter duas versões da lista de preços que se sobrepõem!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/purchase.pot b/addons/purchase/i18n/purchase.pot index 9cd2ac09110..ebaf9633076 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/ro_RO.po b/addons/purchase/i18n/ro_RO.po index f9c74d639e0..739cdef2136 100644 --- a/addons/purchase/i18n/ro_RO.po +++ b/addons/purchase/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/ru_RU.po b/addons/purchase/i18n/ru_RU.po index 96cac7f5671..8dffebc47a3 100644 --- a/addons/purchase/i18n/ru_RU.po +++ b/addons/purchase/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Вычислить" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Невозможно использовать 2 перекрывающиеся версии каталогов!" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/sl_SL.po b/addons/purchase/i18n/sl_SL.po index 15c757a1374..02098e535bb 100644 --- a/addons/purchase/i18n/sl_SL.po +++ b/addons/purchase/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Izračunaj" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "Ne morete imeti 2 različic cenika, ki se prekrivata." - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/sv_SE.po b/addons/purchase/i18n/sv_SE.po index a277cd649a6..d37e50938bf 100644 --- a/addons/purchase/i18n/sv_SE.po +++ b/addons/purchase/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/sv_SV.po b/addons/purchase/i18n/sv_SV.po index b2c2d47fbdf..cf602af013d 100644 --- a/addons/purchase/i18n/sv_SV.po +++ b/addons/purchase/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Validated By" msgstr "" +#. module: purchase +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: purchase #: field:purchase.order,partner_id:0 msgid "Supplier" @@ -616,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -880,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/tr_TR.po b/addons/purchase/i18n/tr_TR.po index cc3a3f18ee5..8ab6a75c295 100644 --- a/addons/purchase/i18n/tr_TR.po +++ b/addons/purchase/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/uk_UK.po b/addons/purchase/i18n/uk_UK.po index 55dcab1d74f..74bad2b29dd 100644 --- a/addons/purchase/i18n/uk_UK.po +++ b/addons/purchase/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "Розрахувати" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index 21fa2200a0e..5f4a323f95d 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "计算" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index af207bfdd92..b1f0fbdf41e 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -621,6 +621,11 @@ msgstr "" msgid "Compute" msgstr "" +#. module: purchase +#: constraint:product.pricelist.version:0 +msgid "You cannot have 2 pricelist versions that overlap!" +msgstr "" + #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" @@ -885,11 +890,6 @@ msgstr "" msgid "From Packing list, Create invoice." msgstr "" -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" diff --git a/addons/purchase_analytic_plans/i18n/ar_AR.po b/addons/purchase_analytic_plans/i18n/ar_AR.po index 67c0f2504d1..d865d169d8a 100644 --- a/addons/purchase_analytic_plans/i18n/ar_AR.po +++ b/addons/purchase_analytic_plans/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/bg_BG.po b/addons/purchase_analytic_plans/i18n/bg_BG.po index e2c40b9f85c..ce8bbd5f9d2 100644 --- a/addons/purchase_analytic_plans/i18n/bg_BG.po +++ b/addons/purchase_analytic_plans/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/bs_BS.po b/addons/purchase_analytic_plans/i18n/bs_BS.po index 1fb1a3da7a7..89c4f5a0516 100644 --- a/addons/purchase_analytic_plans/i18n/bs_BS.po +++ b/addons/purchase_analytic_plans/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ca_ES.po b/addons/purchase_analytic_plans/i18n/ca_ES.po index 1a65d8c06b1..64055d12ee4 100644 --- a/addons/purchase_analytic_plans/i18n/ca_ES.po +++ b/addons/purchase_analytic_plans/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/cs_CS.po b/addons/purchase_analytic_plans/i18n/cs_CS.po index bb472911148..193f60bb064 100644 --- a/addons/purchase_analytic_plans/i18n/cs_CS.po +++ b/addons/purchase_analytic_plans/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/cs_CZ.po b/addons/purchase_analytic_plans/i18n/cs_CZ.po index 9a8494cf91c..b28eb887125 100644 --- a/addons/purchase_analytic_plans/i18n/cs_CZ.po +++ b/addons/purchase_analytic_plans/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/de_DE.po b/addons/purchase_analytic_plans/i18n/de_DE.po index cfdff4c5371..37c49fa055a 100644 --- a/addons/purchase_analytic_plans/i18n/de_DE.po +++ b/addons/purchase_analytic_plans/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index bf8823cb152..8f6e698a4ea 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/es_ES.po b/addons/purchase_analytic_plans/i18n/es_ES.po index 5c755287bbe..bbdbef78801 100644 --- a/addons/purchase_analytic_plans/i18n/es_ES.po +++ b/addons/purchase_analytic_plans/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/et_EE.po b/addons/purchase_analytic_plans/i18n/et_EE.po index deabdb91dfa..c6dac9a26c3 100644 --- a/addons/purchase_analytic_plans/i18n/et_EE.po +++ b/addons/purchase_analytic_plans/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 msgid "Analytic Distribution" -msgstr "" +msgstr "Analüütiline jaotus" #. module: purchase_analytic_plans #: model:ir.module.module,shortdesc:purchase_analytic_plans.module_meta_information msgid "Purchase Analytic Distribution Management" -msgstr "" +msgstr "Ostude analüütilise jaotuse haldus" #. module: purchase_analytic_plans #: constraint:ir.ui.view:0 diff --git a/addons/purchase_analytic_plans/i18n/fr_FR.po b/addons/purchase_analytic_plans/i18n/fr_FR.po index b57577ccd3b..4cf27e77bcf 100644 --- a/addons/purchase_analytic_plans/i18n/fr_FR.po +++ b/addons/purchase_analytic_plans/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/hr_HR.po b/addons/purchase_analytic_plans/i18n/hr_HR.po index 8a621fd5c2a..47053c2e70d 100644 --- a/addons/purchase_analytic_plans/i18n/hr_HR.po +++ b/addons/purchase_analytic_plans/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/hu_HU.po b/addons/purchase_analytic_plans/i18n/hu_HU.po index 7a82aaa0bd9..baae6243b64 100644 --- a/addons/purchase_analytic_plans/i18n/hu_HU.po +++ b/addons/purchase_analytic_plans/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/it_IT.po b/addons/purchase_analytic_plans/i18n/it_IT.po index fe18bfcdd53..b13de3e5894 100644 --- a/addons/purchase_analytic_plans/i18n/it_IT.po +++ b/addons/purchase_analytic_plans/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/lt_LT.po b/addons/purchase_analytic_plans/i18n/lt_LT.po index 9d0874b6afc..220b0e8b707 100644 --- a/addons/purchase_analytic_plans/i18n/lt_LT.po +++ b/addons/purchase_analytic_plans/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index 36853b8e570..ed7ea78a659 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/nl_NL.po b/addons/purchase_analytic_plans/i18n/nl_NL.po index bdb3b20a438..aa966de713d 100644 --- a/addons/purchase_analytic_plans/i18n/nl_NL.po +++ b/addons/purchase_analytic_plans/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pl_PL.po b/addons/purchase_analytic_plans/i18n/pl_PL.po index dda35a4f9a9..32d27e432ec 100644 --- a/addons/purchase_analytic_plans/i18n/pl_PL.po +++ b/addons/purchase_analytic_plans/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index dc808cb47f9..20fa4565398 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pt_PT.po b/addons/purchase_analytic_plans/i18n/pt_PT.po index ff3d0297b8a..404c35695c2 100644 --- a/addons/purchase_analytic_plans/i18n/pt_PT.po +++ b/addons/purchase_analytic_plans/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot index 83a06b24bda..19de2bf00ed 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ro_RO.po b/addons/purchase_analytic_plans/i18n/ro_RO.po index 9a99d777206..435d99a56e9 100644 --- a/addons/purchase_analytic_plans/i18n/ro_RO.po +++ b/addons/purchase_analytic_plans/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ru_RU.po b/addons/purchase_analytic_plans/i18n/ru_RU.po index 49db3c5f238..a5997e9b58a 100644 --- a/addons/purchase_analytic_plans/i18n/ru_RU.po +++ b/addons/purchase_analytic_plans/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sl_SL.po b/addons/purchase_analytic_plans/i18n/sl_SL.po index b971c922af9..fe50e8862d1 100644 --- a/addons/purchase_analytic_plans/i18n/sl_SL.po +++ b/addons/purchase_analytic_plans/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sv_SE.po b/addons/purchase_analytic_plans/i18n/sv_SE.po index 08206e7f8d3..bdd0443b001 100644 --- a/addons/purchase_analytic_plans/i18n/sv_SE.po +++ b/addons/purchase_analytic_plans/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sv_SV.po b/addons/purchase_analytic_plans/i18n/sv_SV.po index f2a7a4d907b..fb040fcfba5 100644 --- a/addons/purchase_analytic_plans/i18n/sv_SV.po +++ b/addons/purchase_analytic_plans/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/tr_TR.po b/addons/purchase_analytic_plans/i18n/tr_TR.po index 4e8bed17046..49c6c550565 100644 --- a/addons/purchase_analytic_plans/i18n/tr_TR.po +++ b/addons/purchase_analytic_plans/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/uk_UK.po b/addons/purchase_analytic_plans/i18n/uk_UK.po index 0c911701c1e..0cc11a2fb39 100644 --- a/addons/purchase_analytic_plans/i18n/uk_UK.po +++ b/addons/purchase_analytic_plans/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index 4988798bfba..1a9b316653e 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 8b48746c44c..4808709cedb 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/ar_AR.po b/addons/report_account/i18n/ar_AR.po index f20502c2651..b3936695f5b 100644 --- a/addons/report_account/i18n/ar_AR.po +++ b/addons/report_account/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/bg_BG.po b/addons/report_account/i18n/bg_BG.po index 9ef1b9c5c99..9d99b1cfa31 100644 --- a/addons/report_account/i18n/bg_BG.po +++ b/addons/report_account/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Невалиден XML за преглед на архитектурата" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Невалиден XML за преглед на архитектурата" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/bs_BS.po b/addons/report_account/i18n/bs_BS.po index 8fc3266f1e4..32dae5e8018 100644 --- a/addons/report_account/i18n/bs_BS.po +++ b/addons/report_account/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,14 +16,13 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neodgovarajući XML za arhitekturu prikaza!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: report_account @@ -31,24 +30,74 @@ msgstr "" msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/ca_ES.po b/addons/report_account/i18n/ca_ES.po index dc5bc6e308e..d60f222933e 100644 --- a/addons/report_account/i18n/ca_ES.po +++ b/addons/report_account/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invàlid per a la definició de la vista!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Haver" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Deure" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Setmana de l'any" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Comptes per tipus" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML invàlid per a la definició de la vista!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Comptes a cobrar" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Haver" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo per tipus de compte" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Setmana de l'any" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Deure" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Comptes a cobrar" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/cs_CS.po b/addons/report_account/i18n/cs_CS.po index 5ff3882e021..39a47af925d 100644 --- a/addons/report_account/i18n/cs_CS.po +++ b/addons/report_account/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,172 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph @@ -27,23 +188,18 @@ msgid "Balance by Type of Account" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: view:report.invoice.created:0 +msgid "Invoices" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" +#: field:report.invoice.created,currency_id:0 +msgid "Currency" msgstr "" #. module: report_account @@ -52,22 +208,33 @@ msgid "Week of Year" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,create_date:0 +msgid "Create Date" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph +#: view:report.aged.receivable:0 +msgid "Aged Receivable" msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -msgid "Balance" +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: field:report.invoice.created,amount_total:0 +msgid "Total" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Open" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/cs_CZ.po b/addons/report_account/i18n/cs_CZ.po index e41a5e7256e..4759104c9ca 100644 --- a/addons/report_account/i18n/cs_CZ.po +++ b/addons/report_account/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/de_DE.po b/addons/report_account/i18n/de_DE.po index 18c42102b74..c2fd840595b 100644 --- a/addons/report_account/i18n/de_DE.po +++ b/addons/report_account/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Fehlerhafter xml Code für diese Ansicht!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Haben" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Soll" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Woche eines Jahres" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Konten nach Typ" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Forderungskonten" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Haben" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo nach Kontotypen" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Woche eines Jahres" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Soll" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Forderungskonten" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/es_AR.po b/addons/report_account/i18n/es_AR.po index 9877ce94ef4..bd06ca3a02b 100644 --- a/addons/report_account/i18n/es_AR.po +++ b/addons/report_account/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/es_ES.po b/addons/report_account/i18n/es_ES.po index f24db76accd..6919f3d9f26 100644 --- a/addons/report_account/i18n/es_ES.po +++ b/addons/report_account/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "¡XML inválido para la definición de la vista!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Haber" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Debe" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Semana del año" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Cuentas por tipo" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML inválido para la definición de la vista!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Cuentas a cobrar" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Haber" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo por tipo de cuenta" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Semana del año" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Debe" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Cuentas a cobrar" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/et_EE.po b/addons/report_account/i18n/et_EE.po index cc2625d5f9a..bf77671575e 100644 --- a/addons/report_account/i18n/et_EE.po +++ b/addons/report_account/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Vigane XML vaate arhitektuurile!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Bilanss" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" +msgstr "Kuu vahemik" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" msgstr "" #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Deebet" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "Konto tüüp" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Krediit" +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Nädal" +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,9 +105,80 @@ msgstr "" msgid "Accounts by type" msgstr "Kontod tüübi järgi" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "Aegunud nõuded kuni tänaseni" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Laekumiskontod" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Krediit" + #. module: report_account #: field:temp.range,name:0 msgid "Range" +msgstr "Vahemik" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "Moodul, mis lisab uusi aruandeid konto mooduli põhjal." + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Bilanss" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "Konto aruandlus - Aruandlus" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,39 +187,54 @@ msgstr "" msgid "Balance by Type of Account" msgstr "Bilanss kontotüübi järgi" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Nädal" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" +msgstr "Aegunud nõuded" + +#. module: report_account +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Deebet" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Laekumiskontod" - diff --git a/addons/report_account/i18n/fr_FR.po b/addons/report_account/i18n/fr_FR.po index c954562c5b5..08656271e64 100644 --- a/addons/report_account/i18n/fr_FR.po +++ b/addons/report_account/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valide pour l'architecture de la vue" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Balance" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Crédit" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Débit" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Semaine de l'année" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Comptes par type" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valide pour l'architecture de la vue" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Comptes recevables" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Crédit" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Balance" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Balance par type de compte" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Semaine de l'année" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Débit" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Comptes recevables" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/hr_HR.po b/addons/report_account/i18n/hr_HR.po index eaa90c87574..949956248aa 100644 --- a/addons/report_account/i18n/hr_HR.po +++ b/addons/report_account/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/hu_HU.po b/addons/report_account/i18n/hu_HU.po index b590d34b610..0dbbd8a2285 100644 --- a/addons/report_account/i18n/hu_HU.po +++ b/addons/report_account/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/id_ID.po b/addons/report_account/i18n/id_ID.po index 6e4aeb89604..2720e908031 100644 --- a/addons/report_account/i18n/id_ID.po +++ b/addons/report_account/i18n/id_ID.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2008-10-16 03:51+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:24+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:28+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:32+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_account @@ -22,47 +22,86 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Salah dalam penyusunan format XML" +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Kredit" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Minggu dalam setahun" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "Akun berdasarkan tipe" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo berdasarkan Jenis Akun" +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Debit" + #. module: report_account #: constraint:ir.model:0 msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "Nama Objek harus berawalan _x dan tidak mengandung karakter khusus !" +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "Jenis Akun" + #. module: report_account #: model:ir.model,name:report_account.model_report_account_receivable msgid "Receivable accounts" msgstr "Akun Piutang" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Kredit" +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" #. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "Akun berdasarkan tipe" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Minggu dalam setahun" +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Debit" +#: field:temp.range,name:0 +msgid "Range" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph +#: view:report.aged.receivable:0 +msgid "Aged Receivable" +msgstr "" -#~ msgid "Account Type" -#~ msgstr "Jenis Akun" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" diff --git a/addons/report_account/i18n/it_IT.po b/addons/report_account/i18n/it_IT.po index 32823ed68f7..45e410e74b8 100644 --- a/addons/report_account/i18n/it_IT.po +++ b/addons/report_account/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valido per Visualizzazione Architettura!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Credito" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Debito" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Settimana Anno" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Conti per Tipo" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per Visualizzazione Architettura!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Contabilità Crediti" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Credito" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo per Tipo Conto" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Settimana Anno" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Debito" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Contabilità Crediti" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/lt_LT.po b/addons/report_account/i18n/lt_LT.po index 7188e4e3482..1c310c08cfc 100644 --- a/addons/report_account/i18n/lt_LT.po +++ b/addons/report_account/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/nl_BE.po b/addons/report_account/i18n/nl_BE.po index 3745a2202fc..369a247c37d 100644 --- a/addons/report_account/i18n/nl_BE.po +++ b/addons/report_account/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/nl_NL.po b/addons/report_account/i18n/nl_NL.po index 672e4260b6d..d83db0a94a4 100644 --- a/addons/report_account/i18n/nl_NL.po +++ b/addons/report_account/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor overzicht" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Krediet" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Debet" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Week van het jaar" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Rekeningen per soort" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "'Te ontvangen' rekeningen" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Krediet" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo per rekeningsoort" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Week van het jaar" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Debet" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "'Te ontvangen' rekeningen" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/pl_PL.po b/addons/report_account/i18n/pl_PL.po index 4446d77f0bb..29bfcd3293f 100644 --- a/addons/report_account/i18n/pl_PL.po +++ b/addons/report_account/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML niewłaściwy dla tej architektury wyświetlania!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML niewłaściwy dla tej architektury wyświetlania!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/pt_BR.po b/addons/report_account/i18n/pt_BR.po index c6740ad2fa8..7e0a63c4916 100644 --- a/addons/report_account/i18n/pt_BR.po +++ b/addons/report_account/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalido XML para Arquitetura da View" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalido XML para Arquitetura da View" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/pt_PT.po b/addons/report_account/i18n/pt_PT.po index 4de743313e1..75298122887 100644 --- a/addons/report_account/i18n/pt_PT.po +++ b/addons/report_account/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML inválido para a arquitectura de vista" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Saldo" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Crédito" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Débito" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Semana do ano" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Contas por tipo" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML inválido para a arquitectura de vista" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Contas que se pode receber" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Crédito" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Saldo por tipo de conta" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Semana do ano" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Débito" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Contas que se pode receber" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/report_account.pot b/addons/report_account/i18n/report_account.pot index 818d55f6be3..6e4856f3110 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/ro_RO.po b/addons/report_account/i18n/ro_RO.po index d40da6ff1bb..28de3b3e826 100644 --- a/addons/report_account/i18n/ro_RO.po +++ b/addons/report_account/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/ru_RU.po b/addons/report_account/i18n/ru_RU.po index 191b433c1d6..f7ce824dec4 100644 --- a/addons/report_account/i18n/ru_RU.po +++ b/addons/report_account/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильный XML для просмотра архитектуры!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Баланс" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Кредит" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Дебет" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Неделя года" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Счета по типу" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильный XML для просмотра архитектуры!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Дебиторская задолженность" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Кредит" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Баланс" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Баланс по типу счетов" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Неделя года" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Дебет" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Дебиторская задолженность" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/sl_SL.po b/addons/report_account/i18n/sl_SL.po index 931a6d343e8..2075f132bea 100644 --- a/addons/report_account/i18n/sl_SL.po +++ b/addons/report_account/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neveljaven XML za arhitekturo pogleda." +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neveljaven XML za arhitekturo pogleda." + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/sv_SE.po b/addons/report_account/i18n/sv_SE.po index fff7fb32920..b025490a941 100644 --- a/addons/report_account/i18n/sv_SE.po +++ b/addons/report_account/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/sv_SV.po b/addons/report_account/i18n/sv_SV.po index 73349920340..1acdd7100ba 100644 --- a/addons/report_account/i18n/sv_SV.po +++ b/addons/report_account/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,172 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph @@ -27,23 +188,18 @@ msgid "Balance by Type of Account" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Invoices" msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" msgstr "" #. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" +#: field:report.invoice.created,currency_id:0 +msgid "Currency" msgstr "" #. module: report_account @@ -52,22 +208,33 @@ msgid "Week of Year" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,create_date:0 +msgid "Create Date" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph +#: view:report.aged.receivable:0 +msgid "Aged Receivable" msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -msgid "Balance" +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: field:report.invoice.created,amount_total:0 +msgid "Total" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Open" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/tr_TR.po b/addons/report_account/i18n/tr_TR.po index 6ae8c6b2914..db77c259870 100644 --- a/addons/report_account/i18n/tr_TR.po +++ b/addons/report_account/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,14 +16,13 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Görüntüleme mimarisi için Geçersiz XML" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: report_account @@ -31,24 +30,74 @@ msgstr "" msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" +#: field:report.account.receivable,debit:0 +msgid "Debit" msgstr "" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" +#: field:report.account.receivable,type:0 +msgid "Account Type" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Görüntüleme mimarisi için Geçersiz XML" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/uk_UK.po b/addons/report_account/i18n/uk_UK.po index c00c06eb6d9..845a400e462 100644 --- a/addons/report_account/i18n/uk_UK.po +++ b/addons/report_account/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,39 +16,88 @@ msgstr "" "Plural-Forms: \n" #. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для Архітектури Вигляду!" +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" #. module: report_account -#: field:report.account.receivable,balance:0 -#: field:report.aged.receivable,balance:0 -msgid "Balance" -msgstr "Сальдо" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" #. module: report_account #: field:report.aged.receivable,name:0 msgid "Month Range" msgstr "" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" #. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "Кредит" +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "Дебет" #. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "Тиждень року" +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" msgstr "" #. module: report_account @@ -56,17 +105,113 @@ msgstr "" msgid "Accounts by type" msgstr "Рахунки за типом" +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: report_account +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури Вигляду!" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "Рахунки дебіторів" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "Кредит" + #. module: report_account #: field:temp.range,name:0 msgid "Range" msgstr "" +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "Сальдо" + +#. module: report_account +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,origin:0 +msgid "Origin" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_account_receivable_graph #: model:ir.ui.menu,name:report_account.menu_account_receivable_graph msgid "Balance by Type of Account" msgstr "Баланс за типом рахунку" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "Тиждень року" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "Дебет" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "Рахунки дебіторів" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" diff --git a/addons/report_account/i18n/zh_CN.po b/addons/report_account/i18n/zh_CN.po index 4928a2d0be6..2b8c92b7c1e 100644 --- a/addons/report_account/i18n/zh_CN.po +++ b/addons/report_account/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_account/i18n/zh_TW.po b/addons/report_account/i18n/zh_TW.po index 392d2868799..dbf357c398a 100644 --- a/addons/report_account/i18n/zh_TW.po +++ b/addons/report_account/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,156 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: report_account +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: report_account +#: model:ir.actions.act_window,name:report_account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Invoice" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,state:0 +msgid "State" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: report_account +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_account +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,type:0 +msgid "Account Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: report_account +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_invoice:0 +msgid "Date Invoiced" +msgstr "" + +#. module: report_account +#: view:report.account.receivable:0 +msgid "Accounts by type" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: report_account +#: model:ir.model,name:report_account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + #. module: report_account #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_account +#: model:ir.model,name:report_account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: report_account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: report_account +#: model:ir.module.module,description:report_account.module_meta_information +msgid "A module that adds new reports based on the account module." +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,type:0 +msgid "Supplier Refund" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + #. module: report_account #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 @@ -27,38 +172,13 @@ msgid "Balance" msgstr "" #. module: report_account -#: field:report.aged.receivable,name:0 -msgid "Month Range" +#: model:ir.module.module,shortdesc:report_account.module_meta_information +msgid "Account Reporting - Reporting" msgstr "" #. module: report_account -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_aged_receivable -msgid "Aged Receivable Till Today" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:temp.range,name:0 -msgid "Range" +#: field:report.invoice.created,origin:0 +msgid "Origin" msgstr "" #. module: report_account @@ -67,6 +187,31 @@ msgstr "" msgid "Balance by Type of Account" msgstr "" +#. module: report_account +#: view:report.invoice.created:0 +msgid "Invoices" +msgstr "" + +#. module: report_account +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: report_account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: report_account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_account #: model:ir.actions.act_window,name:report_account.action_aged_receivable_graph #: view:report.aged.receivable:0 @@ -74,32 +219,22 @@ msgid "Aged Receivable" msgstr "" #. module: report_account -#: model:ir.module.module,description:report_account.module_meta_information -msgid "A module that adds new reports based on the account module." +#: field:report.invoice.created,partner_id:0 +msgid "Partner" msgstr "" #. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" +#: field:report.invoice.created,amount_total:0 +msgid "Total" msgstr "" #. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: selection:report.invoice.created,state:0 +msgid "Open" msgstr "" #. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" +#: view:report.invoice.created:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_analytic/i18n/ar_AR.po b/addons/report_analytic/i18n/ar_AR.po index a6974fddde9..f69411a47c8 100644 --- a/addons/report_analytic/i18n/ar_AR.po +++ b/addons/report_analytic/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/bg_BG.po b/addons/report_analytic/i18n/bg_BG.po index 6ad2c28fdd2..7d9be77b3fe 100644 --- a/addons/report_analytic/i18n/bg_BG.po +++ b/addons/report_analytic/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/bs_BS.po b/addons/report_analytic/i18n/bs_BS.po index b7567cd32b0..5991739366a 100644 --- a/addons/report_analytic/i18n/bs_BS.po +++ b/addons/report_analytic/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ca_ES.po b/addons/report_analytic/i18n/ca_ES.po index c085bc22d58..0289db612ae 100644 --- a/addons/report_analytic/i18n/ca_ES.po +++ b/addons/report_analytic/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/cs_CS.po b/addons/report_analytic/i18n/cs_CS.po index 464656b2af5..12bc000e19c 100644 --- a/addons/report_analytic/i18n/cs_CS.po +++ b/addons/report_analytic/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,6 +50,11 @@ msgstr "" msgid "Deadline" msgstr "" +#. module: report_analytic +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic #: model:ir.module.module,shortdesc:report_analytic.module_meta_information msgid "Analytic Account Reporting" diff --git a/addons/report_analytic/i18n/cs_CZ.po b/addons/report_analytic/i18n/cs_CZ.po index b6a8612740b..92498367f6c 100644 --- a/addons/report_analytic/i18n/cs_CZ.po +++ b/addons/report_analytic/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/de_DE.po b/addons/report_analytic/i18n/de_DE.po index 6b54db8cee5..2c03a606937 100644 --- a/addons/report_analytic/i18n/de_DE.po +++ b/addons/report_analytic/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/es_AR.po b/addons/report_analytic/i18n/es_AR.po index ae53481733b..0ec4e59124e 100644 --- a/addons/report_analytic/i18n/es_AR.po +++ b/addons/report_analytic/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/es_ES.po b/addons/report_analytic/i18n/es_ES.po index 6df2c1de95d..91055888513 100644 --- a/addons/report_analytic/i18n/es_ES.po +++ b/addons/report_analytic/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/et_EE.po b/addons/report_analytic/i18n/et_EE.po index 2565b9c03a6..950e39d6898 100644 --- a/addons/report_analytic/i18n/et_EE.po +++ b/addons/report_analytic/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: report_analytic #: field:report.analytic.account.close,name:0 msgid "Analytic account" -msgstr "" +msgstr "Analüütiline konto" #. module: report_analytic #: field:report.analytic.account.close,state:0 @@ -53,12 +53,12 @@ msgstr "Tähtaeg" #. module: report_analytic #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_analytic #: model:ir.module.module,shortdesc:report_analytic.module_meta_information msgid "Analytic Account Reporting" -msgstr "" +msgstr "Analüütilise konto aruandlus" #. module: report_analytic #: field:report.analytic.account.close,partner_id:0 diff --git a/addons/report_analytic/i18n/fr_FR.po b/addons/report_analytic/i18n/fr_FR.po index f3bf9cd5096..1d72e072097 100644 --- a/addons/report_analytic/i18n/fr_FR.po +++ b/addons/report_analytic/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/hr_HR.po b/addons/report_analytic/i18n/hr_HR.po index 49629e4cd64..4acb17fb8c9 100644 --- a/addons/report_analytic/i18n/hr_HR.po +++ b/addons/report_analytic/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/hu_HU.po b/addons/report_analytic/i18n/hu_HU.po index 5b618659159..db0eabb1112 100644 --- a/addons/report_analytic/i18n/hu_HU.po +++ b/addons/report_analytic/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/it_IT.po b/addons/report_analytic/i18n/it_IT.po index 654eced2e5e..3ae9e439a68 100644 --- a/addons/report_analytic/i18n/it_IT.po +++ b/addons/report_analytic/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/lt_LT.po b/addons/report_analytic/i18n/lt_LT.po index 50bca72d7ed..d59610ac6b0 100644 --- a/addons/report_analytic/i18n/lt_LT.po +++ b/addons/report_analytic/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/nl_BE.po b/addons/report_analytic/i18n/nl_BE.po index fe2745179e0..64c896c942e 100644 --- a/addons/report_analytic/i18n/nl_BE.po +++ b/addons/report_analytic/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/nl_NL.po b/addons/report_analytic/i18n/nl_NL.po index 67dc6cd66e7..7b185a4cc75 100644 --- a/addons/report_analytic/i18n/nl_NL.po +++ b/addons/report_analytic/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pl_PL.po b/addons/report_analytic/i18n/pl_PL.po index 01bd6a47e32..32f686258b0 100644 --- a/addons/report_analytic/i18n/pl_PL.po +++ b/addons/report_analytic/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pt_BR.po b/addons/report_analytic/i18n/pt_BR.po index 30e47710087..ffd3acff45a 100644 --- a/addons/report_analytic/i18n/pt_BR.po +++ b/addons/report_analytic/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pt_PT.po b/addons/report_analytic/i18n/pt_PT.po index 0fe101fe56f..e4331f65291 100644 --- a/addons/report_analytic/i18n/pt_PT.po +++ b/addons/report_analytic/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 1053b180e2e..bd7c60ccfb7 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ro_RO.po b/addons/report_analytic/i18n/ro_RO.po index 9654acf4a6f..e618ce5a376 100644 --- a/addons/report_analytic/i18n/ro_RO.po +++ b/addons/report_analytic/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ru_RU.po b/addons/report_analytic/i18n/ru_RU.po index a5734e7f832..97f85a14936 100644 --- a/addons/report_analytic/i18n/ru_RU.po +++ b/addons/report_analytic/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sl_SL.po b/addons/report_analytic/i18n/sl_SL.po index cebe359c88b..c8cc79c7c62 100644 --- a/addons/report_analytic/i18n/sl_SL.po +++ b/addons/report_analytic/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sv_SE.po b/addons/report_analytic/i18n/sv_SE.po index 87b8b84ec56..1db63c1b1ca 100644 --- a/addons/report_analytic/i18n/sv_SE.po +++ b/addons/report_analytic/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sv_SV.po b/addons/report_analytic/i18n/sv_SV.po index 929b18fc570..8f7526b4054 100644 --- a/addons/report_analytic/i18n/sv_SV.po +++ b/addons/report_analytic/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,6 +50,11 @@ msgstr "" msgid "Deadline" msgstr "" +#. module: report_analytic +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic #: model:ir.module.module,shortdesc:report_analytic.module_meta_information msgid "Analytic Account Reporting" diff --git a/addons/report_analytic/i18n/tr_TR.po b/addons/report_analytic/i18n/tr_TR.po index 6d6e8041913..13760fc7a7e 100644 --- a/addons/report_analytic/i18n/tr_TR.po +++ b/addons/report_analytic/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/uk_UK.po b/addons/report_analytic/i18n/uk_UK.po index ee82b014304..cf95ab24301 100644 --- a/addons/report_analytic/i18n/uk_UK.po +++ b/addons/report_analytic/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/zh_CN.po b/addons/report_analytic/i18n/zh_CN.po index 6b1f4dba4b9..af2f3a8cde4 100644 --- a/addons/report_analytic/i18n/zh_CN.po +++ b/addons/report_analytic/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/zh_TW.po b/addons/report_analytic/i18n/zh_TW.po index 4c094d5a404..ba7daf84358 100644 --- a/addons/report_analytic/i18n/zh_TW.po +++ b/addons/report_analytic/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ar_AR.po b/addons/report_analytic_line/i18n/ar_AR.po index f65e53b30f1..454c698b1ba 100644 --- a/addons/report_analytic_line/i18n/ar_AR.po +++ b/addons/report_analytic_line/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/bg_BG.po b/addons/report_analytic_line/i18n/bg_BG.po index 2e73087aeef..e68e72b511e 100644 --- a/addons/report_analytic_line/i18n/bg_BG.po +++ b/addons/report_analytic_line/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/bs_BS.po b/addons/report_analytic_line/i18n/bs_BS.po index e54cbf63c32..a93ef00db0e 100644 --- a/addons/report_analytic_line/i18n/bs_BS.po +++ b/addons/report_analytic_line/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ca_ES.po b/addons/report_analytic_line/i18n/ca_ES.po index cf011f5b4f9..12a2e9e6e3e 100644 --- a/addons/report_analytic_line/i18n/ca_ES.po +++ b/addons/report_analytic_line/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/cs_CS.po b/addons/report_analytic_line/i18n/cs_CS.po index 4ce9507349d..f70b842e83c 100644 --- a/addons/report_analytic_line/i18n/cs_CS.po +++ b/addons/report_analytic_line/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -72,6 +72,11 @@ msgstr "" msgid "Analytic lines to invoice report" msgstr "" +#. module: report_analytic_line +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic_line #: field:report.account.analytic.line.to.invoice,unit_amount:0 msgid "Units" diff --git a/addons/report_analytic_line/i18n/cs_CZ.po b/addons/report_analytic_line/i18n/cs_CZ.po index 2f95451642f..9548eb8d093 100644 --- a/addons/report_analytic_line/i18n/cs_CZ.po +++ b/addons/report_analytic_line/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/de_DE.po b/addons/report_analytic_line/i18n/de_DE.po index c39bea7305c..48111b4b4e4 100644 --- a/addons/report_analytic_line/i18n/de_DE.po +++ b/addons/report_analytic_line/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/es_AR.po b/addons/report_analytic_line/i18n/es_AR.po index fb48cbfdd41..6b9f6cd7cf5 100644 --- a/addons/report_analytic_line/i18n/es_AR.po +++ b/addons/report_analytic_line/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/es_ES.po b/addons/report_analytic_line/i18n/es_ES.po index affb38420eb..2e7a4bf380b 100644 --- a/addons/report_analytic_line/i18n/es_ES.po +++ b/addons/report_analytic_line/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/et_EE.po b/addons/report_analytic_line/i18n/et_EE.po index fa30de15fcd..f26f61b32bb 100644 --- a/addons/report_analytic_line/i18n/et_EE.po +++ b/addons/report_analytic_line/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "Analüütilised read arve aruandesse" #. module: report_analytic_line #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_analytic_line #: field:report.account.analytic.line.to.invoice,unit_amount:0 diff --git a/addons/report_analytic_line/i18n/fr_FR.po b/addons/report_analytic_line/i18n/fr_FR.po index 0de178e56e4..ff09bca2f7d 100644 --- a/addons/report_analytic_line/i18n/fr_FR.po +++ b/addons/report_analytic_line/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/hr_HR.po b/addons/report_analytic_line/i18n/hr_HR.po index f6169001971..fe00adbe2d8 100644 --- a/addons/report_analytic_line/i18n/hr_HR.po +++ b/addons/report_analytic_line/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/hu_HU.po b/addons/report_analytic_line/i18n/hu_HU.po index f58b08493e8..1b7fb5f8860 100644 --- a/addons/report_analytic_line/i18n/hu_HU.po +++ b/addons/report_analytic_line/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/it_IT.po b/addons/report_analytic_line/i18n/it_IT.po index e9fd38f6aa0..0c7bd85b932 100644 --- a/addons/report_analytic_line/i18n/it_IT.po +++ b/addons/report_analytic_line/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/lt_LT.po b/addons/report_analytic_line/i18n/lt_LT.po index 7c1147173dc..fa37c67f974 100644 --- a/addons/report_analytic_line/i18n/lt_LT.po +++ b/addons/report_analytic_line/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/nl_BE.po b/addons/report_analytic_line/i18n/nl_BE.po index babf0fb13d7..b6c73eb76db 100644 --- a/addons/report_analytic_line/i18n/nl_BE.po +++ b/addons/report_analytic_line/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/nl_NL.po b/addons/report_analytic_line/i18n/nl_NL.po index 16acce75de5..80da3ba4168 100644 --- a/addons/report_analytic_line/i18n/nl_NL.po +++ b/addons/report_analytic_line/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pl_PL.po b/addons/report_analytic_line/i18n/pl_PL.po index 29c78a30c60..555eb0704f9 100644 --- a/addons/report_analytic_line/i18n/pl_PL.po +++ b/addons/report_analytic_line/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pt_BR.po b/addons/report_analytic_line/i18n/pt_BR.po index 9c66f3c16c6..b6ebf43b64d 100644 --- a/addons/report_analytic_line/i18n/pt_BR.po +++ b/addons/report_analytic_line/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pt_PT.po b/addons/report_analytic_line/i18n/pt_PT.po index c876af4867f..df9b8248a44 100644 --- a/addons/report_analytic_line/i18n/pt_PT.po +++ b/addons/report_analytic_line/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 8d08d31a687..b885d93e716 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ro_RO.po b/addons/report_analytic_line/i18n/ro_RO.po index dd7dc6e6be6..ff130ec2d85 100644 --- a/addons/report_analytic_line/i18n/ro_RO.po +++ b/addons/report_analytic_line/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ru_RU.po b/addons/report_analytic_line/i18n/ru_RU.po index d05ad424ae3..e2de3b546b1 100644 --- a/addons/report_analytic_line/i18n/ru_RU.po +++ b/addons/report_analytic_line/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sl_SL.po b/addons/report_analytic_line/i18n/sl_SL.po index 866cd98e2ce..65488575f0f 100644 --- a/addons/report_analytic_line/i18n/sl_SL.po +++ b/addons/report_analytic_line/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sv_SE.po b/addons/report_analytic_line/i18n/sv_SE.po index 9c42320f80e..1d6b78277b8 100644 --- a/addons/report_analytic_line/i18n/sv_SE.po +++ b/addons/report_analytic_line/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sv_SV.po b/addons/report_analytic_line/i18n/sv_SV.po index 74fe409160b..02fa2ec76fa 100644 --- a/addons/report_analytic_line/i18n/sv_SV.po +++ b/addons/report_analytic_line/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -72,6 +72,11 @@ msgstr "" msgid "Analytic lines to invoice report" msgstr "" +#. module: report_analytic_line +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic_line #: field:report.account.analytic.line.to.invoice,unit_amount:0 msgid "Units" diff --git a/addons/report_analytic_line/i18n/tr_TR.po b/addons/report_analytic_line/i18n/tr_TR.po index ba86216c56d..f3364b3bc66 100644 --- a/addons/report_analytic_line/i18n/tr_TR.po +++ b/addons/report_analytic_line/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/uk_UK.po b/addons/report_analytic_line/i18n/uk_UK.po index 9655b9ef091..d7ad5baf38a 100644 --- a/addons/report_analytic_line/i18n/uk_UK.po +++ b/addons/report_analytic_line/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/zh_CN.po b/addons/report_analytic_line/i18n/zh_CN.po index 1b6db6e307d..4d19d32d792 100644 --- a/addons/report_analytic_line/i18n/zh_CN.po +++ b/addons/report_analytic_line/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/zh_TW.po b/addons/report_analytic_line/i18n/zh_TW.po index 7babd533f67..234851d6f11 100644 --- a/addons/report_analytic_line/i18n/zh_TW.po +++ b/addons/report_analytic_line/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ar_AR.po b/addons/report_analytic_planning/i18n/ar_AR.po index 51faee25dd7..cc716425d1d 100644 --- a/addons/report_analytic_planning/i18n/ar_AR.po +++ b/addons/report_analytic_planning/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/bg_BG.po b/addons/report_analytic_planning/i18n/bg_BG.po index 3a18ea2666f..4d518e010f9 100644 --- a/addons/report_analytic_planning/i18n/bg_BG.po +++ b/addons/report_analytic_planning/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/bs_BS.po b/addons/report_analytic_planning/i18n/bs_BS.po index d581d2f308d..50488087476 100644 --- a/addons/report_analytic_planning/i18n/bs_BS.po +++ b/addons/report_analytic_planning/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ca_ES.po b/addons/report_analytic_planning/i18n/ca_ES.po index f34d92d1f4b..b87bcd4c2eb 100644 --- a/addons/report_analytic_planning/i18n/ca_ES.po +++ b/addons/report_analytic_planning/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/cs_CS.po b/addons/report_analytic_planning/i18n/cs_CS.po index 2bbc8bb5825..8619223a2a2 100644 --- a/addons/report_analytic_planning/i18n/cs_CS.po +++ b/addons/report_analytic_planning/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "Analytic account" msgstr "" +#. module: report_analytic_planning +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic_planning #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -72,9 +77,8 @@ msgid "Planning account stat" msgstr "" #. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_line -#: view:report_account_analytic.planning:0 -msgid "Planning Line" +#: field:report_account_analytic.planning.stat,sum_amount:0 +msgid "Planned hours" msgstr "" #. module: report_analytic_planning @@ -116,8 +120,9 @@ msgid "Timesheet" msgstr "" #. module: report_analytic_planning -#: field:report_account_analytic.planning.stat,sum_amount:0 -msgid "Planned hours" +#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_line +#: view:report_account_analytic.planning:0 +msgid "Planning Line" msgstr "" #. module: report_analytic_planning diff --git a/addons/report_analytic_planning/i18n/cs_CZ.po b/addons/report_analytic_planning/i18n/cs_CZ.po index 75c338923c6..443a2d4f840 100644 --- a/addons/report_analytic_planning/i18n/cs_CZ.po +++ b/addons/report_analytic_planning/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/de_DE.po b/addons/report_analytic_planning/i18n/de_DE.po index 2d84d8348cd..bd652599c53 100644 --- a/addons/report_analytic_planning/i18n/de_DE.po +++ b/addons/report_analytic_planning/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/es_AR.po b/addons/report_analytic_planning/i18n/es_AR.po index c607fa15265..24580744ab7 100644 --- a/addons/report_analytic_planning/i18n/es_AR.po +++ b/addons/report_analytic_planning/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/es_ES.po b/addons/report_analytic_planning/i18n/es_ES.po index 7af93555665..5d51c73d055 100644 --- a/addons/report_analytic_planning/i18n/es_ES.po +++ b/addons/report_analytic_planning/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/et_EE.po b/addons/report_analytic_planning/i18n/et_EE.po index 3fc2816b76f..0b894bd26a1 100644 --- a/addons/report_analytic_planning/i18n/et_EE.po +++ b/addons/report_analytic_planning/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Analüütiline konto" #. module: report_analytic_planning #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_analytic_planning #: constraint:ir.model:0 @@ -95,7 +95,7 @@ msgstr "Minu Plaanidide Statistikad" #. module: report_analytic_planning #: model:ir.module.module,description:report_analytic_planning.module_meta_information msgid "Planning on analytic accounts." -msgstr "" +msgstr "Planeerimine analüütilistel kontodel." #. module: report_analytic_planning #: field:report_account_analytic.planning,name:0 @@ -175,7 +175,7 @@ msgstr "Minu Projektide Planeerimise statistika" #: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_current #: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_current msgid "Current Planning" -msgstr "" +msgstr "Käesolev planeerimine" #. module: report_analytic_planning #: rml:report_account_analytic.planning.print:0 @@ -240,7 +240,7 @@ msgstr "Planeerimise read" #. module: report_analytic_planning #: model:ir.module.module,shortdesc:report_analytic_planning.module_meta_information msgid "Analytic planning - Reporting" -msgstr "" +msgstr "Analüütiline planeerimine - Aruandlus" #. module: report_analytic_planning #: rml:report_account_analytic.planning.print:0 @@ -251,7 +251,7 @@ msgstr "]" #: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_my #: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_my2 msgid "My Planning" -msgstr "" +msgstr "Minu planeerimine" #. module: report_analytic_planning #: field:report_account_analytic.planning,stat_user_ids:0 @@ -283,7 +283,7 @@ msgstr "Kogused kasutajakohta" #: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_current_my #: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_current_my msgid "My Current Planning" -msgstr "" +msgstr "Minu käesolev plnaaerimine" #. module: report_analytic_planning #: field:report_account_analytic.planning.stat.account,account_id:0 diff --git a/addons/report_analytic_planning/i18n/fr_FR.po b/addons/report_analytic_planning/i18n/fr_FR.po index 7f38142cea7..65901e8e014 100644 --- a/addons/report_analytic_planning/i18n/fr_FR.po +++ b/addons/report_analytic_planning/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/hr_HR.po b/addons/report_analytic_planning/i18n/hr_HR.po index ba7f9d9a02e..f0c956c0340 100644 --- a/addons/report_analytic_planning/i18n/hr_HR.po +++ b/addons/report_analytic_planning/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/hu_HU.po b/addons/report_analytic_planning/i18n/hu_HU.po index 415caa20a1f..d3925b8d93f 100644 --- a/addons/report_analytic_planning/i18n/hu_HU.po +++ b/addons/report_analytic_planning/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/it_IT.po b/addons/report_analytic_planning/i18n/it_IT.po index 04a3d2910f5..3ddb28ddfdd 100644 --- a/addons/report_analytic_planning/i18n/it_IT.po +++ b/addons/report_analytic_planning/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/lt_LT.po b/addons/report_analytic_planning/i18n/lt_LT.po index b0196b2c428..48085ec9192 100644 --- a/addons/report_analytic_planning/i18n/lt_LT.po +++ b/addons/report_analytic_planning/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/nl_BE.po b/addons/report_analytic_planning/i18n/nl_BE.po index 1b5477ec4cd..787d539d87f 100644 --- a/addons/report_analytic_planning/i18n/nl_BE.po +++ b/addons/report_analytic_planning/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/nl_NL.po b/addons/report_analytic_planning/i18n/nl_NL.po index 03f3ccf2dc7..783c36a2cbe 100644 --- a/addons/report_analytic_planning/i18n/nl_NL.po +++ b/addons/report_analytic_planning/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pl_PL.po b/addons/report_analytic_planning/i18n/pl_PL.po index a11acbffa8a..980736108af 100644 --- a/addons/report_analytic_planning/i18n/pl_PL.po +++ b/addons/report_analytic_planning/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pt_BR.po b/addons/report_analytic_planning/i18n/pt_BR.po index 685d5bd6a24..0b2a47d1f28 100644 --- a/addons/report_analytic_planning/i18n/pt_BR.po +++ b/addons/report_analytic_planning/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pt_PT.po b/addons/report_analytic_planning/i18n/pt_PT.po index 736d624ab47..73b5bd178bf 100644 --- a/addons/report_analytic_planning/i18n/pt_PT.po +++ b/addons/report_analytic_planning/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 83814ef5f43..810d5999ed8 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ro_RO.po b/addons/report_analytic_planning/i18n/ro_RO.po index d0103c81b38..af03674a9c4 100644 --- a/addons/report_analytic_planning/i18n/ro_RO.po +++ b/addons/report_analytic_planning/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ru_RU.po b/addons/report_analytic_planning/i18n/ru_RU.po index 1fa93d06a20..12dbe5936f4 100644 --- a/addons/report_analytic_planning/i18n/ru_RU.po +++ b/addons/report_analytic_planning/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sl_SL.po b/addons/report_analytic_planning/i18n/sl_SL.po index 49f4bb6bf58..51c744fd21d 100644 --- a/addons/report_analytic_planning/i18n/sl_SL.po +++ b/addons/report_analytic_planning/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sv_SE.po b/addons/report_analytic_planning/i18n/sv_SE.po index 9d0ea0acaa4..e7f189d3cf3 100644 --- a/addons/report_analytic_planning/i18n/sv_SE.po +++ b/addons/report_analytic_planning/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sv_SV.po b/addons/report_analytic_planning/i18n/sv_SV.po index 9caf1799477..db4d12bb04b 100644 --- a/addons/report_analytic_planning/i18n/sv_SV.po +++ b/addons/report_analytic_planning/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "Analytic account" msgstr "" +#. module: report_analytic_planning +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_analytic_planning #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -72,9 +77,8 @@ msgid "Planning account stat" msgstr "" #. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_line -#: view:report_account_analytic.planning:0 -msgid "Planning Line" +#: field:report_account_analytic.planning.stat,sum_amount:0 +msgid "Planned hours" msgstr "" #. module: report_analytic_planning @@ -116,8 +120,9 @@ msgid "Timesheet" msgstr "" #. module: report_analytic_planning -#: field:report_account_analytic.planning.stat,sum_amount:0 -msgid "Planned hours" +#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_line +#: view:report_account_analytic.planning:0 +msgid "Planning Line" msgstr "" #. module: report_analytic_planning diff --git a/addons/report_analytic_planning/i18n/tr_TR.po b/addons/report_analytic_planning/i18n/tr_TR.po index 6c77897c784..0777674adca 100644 --- a/addons/report_analytic_planning/i18n/tr_TR.po +++ b/addons/report_analytic_planning/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/uk_UK.po b/addons/report_analytic_planning/i18n/uk_UK.po index d83e2566338..e7973a3c6de 100644 --- a/addons/report_analytic_planning/i18n/uk_UK.po +++ b/addons/report_analytic_planning/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/zh_CN.po b/addons/report_analytic_planning/i18n/zh_CN.po index f40f5dfe180..4f11ad712f9 100644 --- a/addons/report_analytic_planning/i18n/zh_CN.po +++ b/addons/report_analytic_planning/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/zh_TW.po b/addons/report_analytic_planning/i18n/zh_TW.po index d9ecf2f934c..14b2d07930f 100644 --- a/addons/report_analytic_planning/i18n/zh_TW.po +++ b/addons/report_analytic_planning/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ar_AR.po b/addons/report_crm/i18n/ar_AR.po index d0d67c8a2d2..b9d19bf4f62 100644 --- a/addons/report_crm/i18n/ar_AR.po +++ b/addons/report_crm/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/bg_BG.po b/addons/report_crm/i18n/bg_BG.po index db86917f6ce..9398b16a4af 100644 --- a/addons/report_crm/i18n/bg_BG.po +++ b/addons/report_crm/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "Всички месеци" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "Справки" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "Този месец" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Невалиден XML за преглед на архитектурата" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/bs_BS.po b/addons/report_crm/i18n/bs_BS.po index a6f47a95147..aaf9c7c9d32 100644 --- a/addons/report_crm/i18n/bs_BS.po +++ b/addons/report_crm/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neodgovarajući XML za arhitekturu prikaza!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/ca_ES.po b/addons/report_crm/i18n/ca_ES.po index 5052c0524af..1c3dcd192e7 100644 --- a/addons/report_crm/i18n/ca_ES.po +++ b/addons/report_crm/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Probabilitat mitja" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Casos per secció i categoria" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Secció" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# de casos" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Retard tancat" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Esborrany" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Tancat" @@ -85,6 +111,11 @@ msgstr "Casos per categories i secció (aquest mes)" msgid "All Months" msgstr "Tots els mesos" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Retorn*Prob est." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Pendent" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Posició" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Retard a tancar" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Casos per usuari i secció (aquest mes)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Casos mensuals per usuari" msgid "Reporting" msgstr "Informe" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Casos mensuals per secció" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Casos per usuari i secció" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Els meus casos per secció (aquest mes)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Aquest mes" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML invàlid per a la definició de la vista!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Casos per usuari i secció" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Retorn est." #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Casos per usuari i secció (aquest mes)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Retard a tancar" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Casos per usuari i secció (aquest mes)" msgid "Cases by Categories and Section" msgstr "Casos per categories i secció" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Els meus casos per secció" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mes" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Cancel·lat" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Els meus casos per secció (aquest mes)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Casos per usuari i secció" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Obert" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/cs_CS.po b/addons/report_crm/i18n/cs_CS.po index fb446f34f3b..b2689d06919 100644 --- a/addons/report_crm/i18n/cs_CS.po +++ b/addons/report_crm/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,13 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: report_crm +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_crm @@ -38,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -57,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -80,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -88,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -113,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -130,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -142,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -160,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -171,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -179,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -200,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -208,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/cs_CZ.po b/addons/report_crm/i18n/cs_CZ.po index 57b733fb583..1a623217e75 100644 --- a/addons/report_crm/i18n/cs_CZ.po +++ b/addons/report_crm/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/de_DE.po b/addons/report_crm/i18n/de_DE.po index a5ce78bab0f..51f2cc3edbb 100644 --- a/addons/report_crm/i18n/de_DE.po +++ b/addons/report_crm/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Wahrscheinlichkeit (0.50)" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Fälle nach Sektion und Kategorie" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Bereich" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# Fälle" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Verspäteter Abschluss" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Entwurf" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Beendet" @@ -85,6 +111,11 @@ msgstr "Fälle nach Kategorien und Sektionen (akt. Monat)" msgid "All Months" msgstr "Alle Monate" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Erwartete Einnahmen * Wahrscheinlichkeit" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Im Wartezustand" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Status" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Verzögerung vor Beendigung" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Fälle nach Sektionen (aktueller Monat)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Fälle nach Benutzer (Monatlich)" msgid "Reporting" msgstr "Berichtswesen" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Fälle nach Sektionen (Monatl.)" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Fälle nach Benutzer und Sektion" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Meine Fälle nach Sektionen (aktueller Monat)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Dieser Monat" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Fehlerhafter xml Code für diese Ansicht!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Fälle nach Benutzer und Sektion" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Geplante Einnahmen" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Fälle nach Sektionen (aktueller Monat)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Verzögerung vor Beendigung" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Fälle nach Sektionen (aktueller Monat)" msgid "Cases by Categories and Section" msgstr "Fälle nach Kategorien und Sektionen" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Meine Fälle nach Sektionen" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Monat" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Abgebrochen" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Meine Fälle nach Sektionen (aktueller Monat)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Fälle nach Benutzer und Sektion" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Offen" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/es_AR.po b/addons/report_crm/i18n/es_AR.po index 465e0eb8d45..f1e74d5eb02 100644 --- a/addons/report_crm/i18n/es_AR.po +++ b/addons/report_crm/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/es_ES.po b/addons/report_crm/i18n/es_ES.po index e1038d3a11f..8716c591410 100644 --- a/addons/report_crm/i18n/es_ES.po +++ b/addons/report_crm/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Probabilidad media" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Casos por sección y categoría" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Sección" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# de casos" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Demora cerrada" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Borrador" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Cerrado" @@ -85,6 +111,11 @@ msgstr "Casos por categorías y sección (este mes)" msgid "All Months" msgstr "Todos los meses" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Retorno*Prob est." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Pendiente" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Posición" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Demora a cerrar" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Casos por usuario y sección (este mes)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Casos mensuales por usuario" msgid "Reporting" msgstr "Informe" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Casos mensuales por sección" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Casos por usuario y sección" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Mis casos por sección (este mes)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Este mes" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "¡XML inválido para la definición de la vista!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Casos por usuario y sección" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Retorno est." #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Casos por usuario y sección (este mes)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Demora a cerrar" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Casos por usuario y sección (este mes)" msgid "Cases by Categories and Section" msgstr "Casos por categorías y sección" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Mis casos por sección" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mes" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Cancelado" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Mis casos por sección (este mes)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Casos por usuario y sección" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Abierto" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/et_EE.po b/addons/report_crm/i18n/et_EE.po index 9d4c2d4cfbb..12a2d7eb4b1 100644 --- a/addons/report_crm/i18n/et_EE.po +++ b/addons/report_crm/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,14 +27,14 @@ msgid "Avg. Probability" msgstr "Keskm. Tõenäosus" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_categ @@ -43,11 +43,28 @@ msgstr "Juhtumid jaotise ja katekooriajärgi" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Jaotis" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# Juhtumid" @@ -55,21 +72,30 @@ msgstr "# Juhtumid" #. module: report_crm #: model:ir.module.module,shortdesc:report_crm.module_meta_information msgid "CRM Management - Reporting" -msgstr "" +msgstr "KSH Haldus - Aruandlus" #. module: report_crm #: field:report.crm.case.categ,delay_close:0 msgid "Delay Close" msgstr "Sulgemise viivitus" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Mustand" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Suletud" @@ -85,28 +111,46 @@ msgstr "Juhtumid kategooria ja jaotisejärgi (käesoleval kuul)" msgid "All Months" msgstr "Kõik kuud" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 msgid "Est. Rev*Prob." -msgstr "" +msgstr "Eeld. Tulu*Tõen." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Lahtine" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Olek" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Sulgemise viivitus" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Juhtumid kasutaja ja jaotisejärgi (käesokeval kuul)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,11 +162,21 @@ msgstr "Juhtumid kuudekohta kasutajajärgi" msgid "Reporting" msgstr "Aruandlus" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 msgid "Est.Cost" -msgstr "" +msgstr "Eeld. maksumus" #. module: report_crm #: field:report.crm.case.user,user_id:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Juhtumid kuukohta jaotisejärgi" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Juhtumid Kasutaja ja Jaotisejärgi" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Minu juhtumid jaotisejärgi (käesoleval kuul)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Käesolev kuu" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Vigane XML vaate arhitektuurile!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Juhtumid Kasutaja ja Jaotisejärgi" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -162,13 +237,28 @@ msgstr "Igakuused juhtumid" #: field:report.crm.case.categ,amount_revenue:0 #: field:report.crm.case.user,amount_revenue:0 msgid "Est.Revenue" +msgstr "Loodetav tulu" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Juhtumid kasutaja ja jaotisejärgi (käesokeval kuul)" +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Sulgemise viivitus" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Juhtumid kasutaja ja jaotisejärgi (käesokeval kuul)" msgid "Cases by Categories and Section" msgstr "Juhtumid Kategooria ja Jaotisejärgi" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,21 +279,27 @@ msgstr "Minu juhtumid jaotisejärgi" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Kuu" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Tühistatud" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Minu juhtumid jaotisejärgi (käesoleval kuul)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user @@ -206,14 +307,26 @@ msgid "Cases by user and section" msgstr "Juhtumid kasutaja ja jaotisejärgi" #. module: report_crm -#: model:ir.module.module,description:report_crm.module_meta_information -msgid "A module that adds new reports based on CRM cases.\n" -" Case By section, Case By category" +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" msgstr "" +#. module: report_crm +#: model:ir.module.module,description:report_crm.module_meta_information +msgid "A module that adds new reports based on CRM cases.\n" +" Case By section, Case By category" +msgstr "Moodul, mis lisab uued aruanded KSH juhtumite põhjal.\n" +" Juhtum osa kaupa, Juhtum kategooria kaupa" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Avatud" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/fr_FR.po b/addons/report_crm/i18n/fr_FR.po index 8f91c992848..278c29b43d1 100644 --- a/addons/report_crm/i18n/fr_FR.po +++ b/addons/report_crm/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Probabilité Moy." #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Cas par section et catégorie" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Section" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# de cas" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Delai de fermeture" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Brouillon" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Fermé" @@ -85,6 +111,11 @@ msgstr "Cas oar catégories et section (ce mois)" msgid "All Months" msgstr "Tous les mois" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Rev*Proba Estim." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "En attente" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "État" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Delai de fermeture" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Cas par utilisateur et section (ce mois)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Cas Mensuel par utilisateur" msgid "Reporting" msgstr "Reporting" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Cas mensuel par section" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Cas par Utilisateur et Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Mes cas par section (ce mois)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Ce mois" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Cas par Utilisateur et Section" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Revenu Estim." #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Cas par utilisateur et section (ce mois)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Delai de fermeture" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Cas par utilisateur et section (ce mois)" msgid "Cases by Categories and Section" msgstr "Cas par Catégories et Section" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Mes cas par section" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mois" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Annulée" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Mes cas par section (ce mois)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Cas par utilisateur et section" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Ouvert" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/hr_HR.po b/addons/report_crm/i18n/hr_HR.po index 3ab73e7c12f..80ed068bb76 100644 --- a/addons/report_crm/i18n/hr_HR.po +++ b/addons/report_crm/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/hu_HU.po b/addons/report_crm/i18n/hu_HU.po index 617fb98e536..55e38b02d4e 100644 --- a/addons/report_crm/i18n/hu_HU.po +++ b/addons/report_crm/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/it_IT.po b/addons/report_crm/i18n/it_IT.po index 7bf6c424277..d63a3a820af 100644 --- a/addons/report_crm/i18n/it_IT.po +++ b/addons/report_crm/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Probabilità Media" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Casi per Sezione e Categoria" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Sezione" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "Numero di Casi" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Ritardo Chiusura" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Bozza" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Chiuso" @@ -85,6 +111,11 @@ msgstr "Casi per Categoria e Sezione (questo mese)" msgid "All Months" msgstr "Tutti i Mesi" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "In sospeso" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Stato" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Ritardo per Chiusura" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Casi per Utente e Sezione (questo mese)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Casi Mensili per Utente" msgid "Reporting" msgstr "Reportistica" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Cai Mensili per Sezione" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Casi per Utente e Sezione" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "I Miei Casi per Sezione (questo mese)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Questo Mese" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valido per Visualizzazione Architettura!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Casi per Utente e Sezione" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Entrate stimate" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Casi per Utente e Sezione (questo mese)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Ritardo per Chiusura" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Casi per Utente e Sezione (questo mese)" msgid "Cases by Categories and Section" msgstr "Casi per Categorie e Sezione" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "I Miei Casi per Sezione" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mese" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Annullato" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "I Miei Casi per Sezione (questo mese)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Casi per Utente e Sezione" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Aperto" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/lt_LT.po b/addons/report_crm/i18n/lt_LT.po index 64005fdaeee..d9ce17e4c3b 100644 --- a/addons/report_crm/i18n/lt_LT.po +++ b/addons/report_crm/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/nl_BE.po b/addons/report_crm/i18n/nl_BE.po index 5e407c3b16e..e9742c6144c 100644 --- a/addons/report_crm/i18n/nl_BE.po +++ b/addons/report_crm/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/nl_NL.po b/addons/report_crm/i18n/nl_NL.po index 00f54f2aa8c..f6192345ea4 100644 --- a/addons/report_crm/i18n/nl_NL.po +++ b/addons/report_crm/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "Alle maanden" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "Rapportering" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "Deze maand" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Ongeldige XML voor overzicht" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/pl_PL.po b/addons/report_crm/i18n/pl_PL.po index 39602df68d0..5c5a43bbfa1 100644 --- a/addons/report_crm/i18n/pl_PL.po +++ b/addons/report_crm/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "Raportowanie" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML niewłaściwy dla tej architektury wyświetlania!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/pt_BR.po b/addons/report_crm/i18n/pt_BR.po index 41e46e088a9..56ebf084938 100644 --- a/addons/report_crm/i18n/pt_BR.po +++ b/addons/report_crm/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Avg. Probabilidade" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Casos por seção e categoria" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Seção" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "# de casos" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Fim do atraso" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Esboço" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Fechado" @@ -85,6 +111,11 @@ msgstr "Casos por categorias e seção(deste mes)" msgid "All Months" msgstr "Todos os meses" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Pendente" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Estado" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Atraso para fechar" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Casos por usuário e seção(este mes)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Casos por usuários mensalmente" msgid "Reporting" msgstr "Relatórios" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Casos por seção mensalmente" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Casos por usuário e seção" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Meus casos por seção(este mes)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Este mes" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Invalido XML para Arquitetura da View" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Casos por usuário e seção" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Casos por usuário e seção(este mes)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Atraso para fechar" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Casos por usuário e seção(este mes)" msgid "Cases by Categories and Section" msgstr "Casos por categorias e seção" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Meus casos por seção" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mês" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Cancelado" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Meus casos por seção(este mes)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Casos por usuário e seção" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Abrir" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/pt_PT.po b/addons/report_crm/i18n/pt_PT.po index ad3f6d9251f..9b69e2d711d 100644 --- a/addons/report_crm/i18n/pt_PT.po +++ b/addons/report_crm/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Probabilidade média" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Processos por secção e categoria" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Secção" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "Número de Processos" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Atrasar fecho" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Rascunho" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Fechado" @@ -85,6 +111,11 @@ msgstr "Processos por secção e categoria (mês actual)" msgid "All Months" msgstr "Todos os meses" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Est. Rev*Prob." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "Pendente" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Estado" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Atrasar fecho" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Processos por utilizador e secção (mês actual)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Processos mensais por utilizador" msgid "Reporting" msgstr "Relatório" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Processos mensais por secção" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Processos por utilizador e secção" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Meus processos por secção (mês actual)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Este mês" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML inválido para a arquitectura de vista" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Processos por utilizador e secção" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Est.Revenue" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Processos por utilizador e secção (mês actual)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Atrasar fecho" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Processos por utilizador e secção (mês actual)" msgid "Cases by Categories and Section" msgstr "Processos por categorias e secção" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Meus processos por secção" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Mês" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Cancelado" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Meus processos por secção (mês actual)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Processos por utilizador e secção" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Aberto" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/report_crm.pot b/addons/report_crm/i18n/report_crm.pot index a672dcdf4a6..4f6ea5c83af 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/ro_RO.po b/addons/report_crm/i18n/ro_RO.po index 7a4a7362a07..fe66e1c5ffc 100644 --- a/addons/report_crm/i18n/ro_RO.po +++ b/addons/report_crm/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/ru_RU.po b/addons/report_crm/i18n/ru_RU.po index dda61be4861..a3781fe43b2 100644 --- a/addons/report_crm/i18n/ru_RU.po +++ b/addons/report_crm/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Ср. вероятность" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Раздел" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Черновик" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Закрыт" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "Все месяцы" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "В ожидании" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "Статус" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "Отчетность" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "Данный месяц" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильный XML для просмотра архитектуры!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "Оценка доходов" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Месяц" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Отменено" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Открыт" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/sl_SL.po b/addons/report_crm/i18n/sl_SL.po index 88b650b2aba..88d84b6371b 100644 --- a/addons/report_crm/i18n/sl_SL.po +++ b/addons/report_crm/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "Vsi meseci" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "Poročanje" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "Ta mesec" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neveljaven XML za arhitekturo pogleda." +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/sv_SE.po b/addons/report_crm/i18n/sv_SE.po index cee74debc3a..d502ed2ef60 100644 --- a/addons/report_crm/i18n/sv_SE.po +++ b/addons/report_crm/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/sv_SV.po b/addons/report_crm/i18n/sv_SV.po index 4699003a36a..0db0b153a37 100644 --- a/addons/report_crm/i18n/sv_SV.po +++ b/addons/report_crm/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,14 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: report_crm +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_categ @@ -38,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -57,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -80,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -88,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -111,7 +160,17 @@ msgstr "" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_64 msgid "Reporting" -msgstr "Rapportering" +msgstr "" + +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 @@ -130,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -142,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -160,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -171,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -179,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -200,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -208,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/tr_TR.po b/addons/report_crm/i18n/tr_TR.po index 5a304660546..1e949ef2b1b 100644 --- a/addons/report_crm/i18n/tr_TR.po +++ b/addons/report_crm/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Görüntüleme mimarisi için Geçersiz XML" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/uk_UK.po b/addons/report_crm/i18n/uk_UK.po index b392a1282c9..7311092bf82 100644 --- a/addons/report_crm/i18n/uk_UK.po +++ b/addons/report_crm/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgid "Avg. Probability" msgstr "Сер. ймовірність" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -43,11 +43,28 @@ msgstr "Випадки за секціями і категоріями" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "Секція" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "К-сть випадків" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "Відстрочка закриття" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "Чорновик" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "Закритий" @@ -85,6 +111,11 @@ msgstr "Випадки за категоріями та секціями (цей msgid "All Months" msgstr "Всі місяці" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,20 +124,33 @@ msgstr "Розр. Дох*Ймов." #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "В очікуванні" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "Затримка закриття" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" +msgstr "Випадки за користувачами і секціями (цей місяць)" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user @@ -118,6 +162,16 @@ msgstr "Щомісячні випадки за користувачами" msgid "Reporting" msgstr "Звіти" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,23 +189,44 @@ msgid "Monthly cases by section" msgstr "Щомісячні випадки за секціями" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "Випадки за користувачами і секціями" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" +msgstr "Мої випадки за секціями (цей місяць)" #. module: report_crm #: model:ir.ui.menu,name:report_crm.next_id_65 msgid "This Month" msgstr "Цей місяць" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильний XML для Архітектури Вигляду!" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "Випадки за користувачами і секціями" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,10 +240,25 @@ msgid "Est.Revenue" msgstr "Розр. дохід" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "Випадки за користувачами і секціями (цей місяць)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" +msgstr "Затримка закриття" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree @@ -176,6 +266,11 @@ msgstr "Випадки за користувачами і секціями (це msgid "Cases by Categories and Section" msgstr "Випадки за категоріями і секціями" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,27 +279,38 @@ msgstr "Мої випадки за секціями" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "Місяць" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "Скасований" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "Мої випадки за секціями (цей місяць)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user msgid "Cases by user and section" msgstr "Випадки за користувачами і секціями" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "Відкритий" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/zh_CN.po b/addons/report_crm/i18n/zh_CN.po index 096410a62a8..b0dbf1f1d3b 100644 --- a/addons/report_crm/i18n/zh_CN.po +++ b/addons/report_crm/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "所有月份" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "报表" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "本月" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_crm/i18n/zh_TW.po b/addons/report_crm/i18n/zh_TW.po index f801c8bb2b3..10555dd92bd 100644 --- a/addons/report_crm/i18n/zh_TW.po +++ b/addons/report_crm/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "Avg. Probability" msgstr "" #. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:report.crm.case.service.dashboard,planned_revenue:0 +msgid "Planned Revenue" msgstr "" #. module: report_crm @@ -43,11 +43,28 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,section_id:0 +#: field:report.crm.case.section,section_id:0 #: field:report.crm.case.user,section_id:0 msgid "Section" msgstr "" #. module: report_crm +#: field:report.crm.case.service.dashboard,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_done:0 +msgid "%Done" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,nbr_cases:0 #: field:report.crm.case.user,nbr:0 msgid "# of Cases" msgstr "" @@ -62,14 +79,23 @@ msgstr "" msgid "Delay Close" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_section_tree +#: model:ir.model,name:report_crm.model_report_crm_case_section +#: view:report.crm.case.section:0 +msgid "Cases by Section" +msgstr "" + #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Draft" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Closed" msgstr "" @@ -85,6 +111,11 @@ msgstr "" msgid "All Months" msgstr "" +#. module: report_crm +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 #: field:report.crm.case.user,amount_revenue_prob:0 @@ -93,19 +124,32 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Pending" msgstr "" +#. module: report_crm +#: field:report.crm.case.section,avg_answers:0 +msgid "Avg. Answers" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,state:0 +#: field:report.crm.case.service.dashboard,state:0 #: field:report.crm.case.user,state:0 msgid "Status" msgstr "" #. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" +#: field:report.crm.case.service.dashboard,name:0 +msgid "Description" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month +msgid "Cases by user and section (this month)" msgstr "" #. module: report_crm @@ -118,6 +162,16 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned costs" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard +msgid "Closed CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 #: field:report.crm.case.user,amount_costs:0 @@ -135,11 +189,14 @@ msgid "Monthly cases by section" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" +#: field:report.crm.case.service.dashboard,date:0 +msgid "Date" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my +msgid "My cases by section (this month)" msgstr "" #. module: report_crm @@ -147,11 +204,29 @@ msgstr "" msgid "This Month" msgstr "" +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard +msgid "Open CRM Cases Within Past 15 Days" +msgstr "" + #. module: report_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" +#. module: report_crm +#: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard +msgid "Report of Closed and Open CRM Cases within past 15 days" +msgstr "" + +#. module: report_crm +#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree +#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree +#: view:report.crm.case.categ:0 +#: view:report.crm.case.user:0 +msgid "Cases by User and Section" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ #: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user @@ -165,9 +240,24 @@ msgid "Est.Revenue" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" +#: field:report.crm.case.service.dashboard,date_closed:0 +msgid "Date Closed" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,priority:0 +msgid "Priority" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,perc_cancel:0 +msgid "%Cancel" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.section,delay_close:0 +#: field:report.crm.case.user,delay_close:0 +msgid "Delay to close" msgstr "" #. module: report_crm @@ -176,6 +266,11 @@ msgstr "" msgid "Cases by Categories and Section" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "CRM Cases" +msgstr "" + #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my #: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my @@ -184,20 +279,26 @@ msgstr "" #. module: report_crm #: field:report.crm.case.categ,name:0 +#: field:report.crm.case.section,name:0 #: field:report.crm.case.user,name:0 msgid "Month" msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Canceled" msgstr "" #. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" +#: field:report.crm.case.service.dashboard,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: report_crm +#: field:report.crm.case.service.dashboard,date_deadline:0 +msgid "Deadline" msgstr "" #. module: report_crm @@ -205,6 +306,11 @@ msgstr "" msgid "Cases by user and section" msgstr "" +#. module: report_crm +#: field:report.crm.case.service.dashboard,partner_id:0 +msgid "Partner" +msgstr "" + #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information msgid "A module that adds new reports based on CRM cases.\n" @@ -213,7 +319,13 @@ msgstr "" #. module: report_crm #: selection:report.crm.case.categ,state:0 +#: selection:report.crm.case.service.dashboard,state:0 #: selection:report.crm.case.user,state:0 msgid "Open" msgstr "" +#. module: report_crm +#: view:report.crm.case.service.dashboard:0 +msgid "Planned revenue" +msgstr "" + diff --git a/addons/report_document/i18n/ar_AR.po b/addons/report_document/i18n/ar_AR.po index 5222d817405..938b3da0d66 100644 --- a/addons/report_document/i18n/ar_AR.po +++ b/addons/report_document/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/bg_BG.po b/addons/report_document/i18n/bg_BG.po index a4061512527..28bd50d46d9 100644 --- a/addons/report_document/i18n/bg_BG.po +++ b/addons/report_document/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/bs_BS.po b/addons/report_document/i18n/bs_BS.po index 3fb848714a9..3c404f0b2c1 100644 --- a/addons/report_document/i18n/bs_BS.po +++ b/addons/report_document/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ca_ES.po b/addons/report_document/i18n/ca_ES.po index 6d533a337c7..1af25921494 100644 --- a/addons/report_document/i18n/ca_ES.po +++ b/addons/report_document/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/cs_CS.po b/addons/report_document/i18n/cs_CS.po index 93eb6814306..14cd29c66de 100644 --- a/addons/report_document/i18n/cs_CS.po +++ b/addons/report_document/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,6 +50,11 @@ msgstr "" msgid "File Size" msgstr "" +#. module: report_document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all msgid "All Months" diff --git a/addons/report_document/i18n/cs_CZ.po b/addons/report_document/i18n/cs_CZ.po index 003a016d7f0..e09034bc92c 100644 --- a/addons/report_document/i18n/cs_CZ.po +++ b/addons/report_document/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/de_DE.po b/addons/report_document/i18n/de_DE.po index 487b78284d6..fdb7add305f 100644 --- a/addons/report_document/i18n/de_DE.po +++ b/addons/report_document/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/es_AR.po b/addons/report_document/i18n/es_AR.po index 7210b76a00b..e3478cb9056 100644 --- a/addons/report_document/i18n/es_AR.po +++ b/addons/report_document/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/es_ES.po b/addons/report_document/i18n/es_ES.po index 048729b7fcb..a1f1eea9a72 100644 --- a/addons/report_document/i18n/es_ES.po +++ b/addons/report_document/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/et_EE.po b/addons/report_document/i18n/et_EE.po index 6b594e61911..8a6d3f058de 100644 --- a/addons/report_document/i18n/et_EE.po +++ b/addons/report_document/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: field:report.document.user,create_date:0 #: field:report.files.partner,create_date:0 msgid "Date Created" -msgstr "Kuupäev Loodud" +msgstr "Loomise kuupäev" #. module: report_document #: model:ir.actions.act_window,name:report_document.action_view_files_by_partner @@ -36,7 +36,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_shame #: view:report.document.wall:0 msgid "Wall of Shame" -msgstr "" +msgstr "Häbipost" #. module: report_document #: model:ir.model,name:report_document.model_report_files_partner @@ -53,7 +53,7 @@ msgstr "Failisuurus" #. module: report_document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all @@ -160,7 +160,7 @@ msgstr "Omanik" #: field:report.document.user,nbr:0 #: field:report.files.partner,nbr:0 msgid "# of Files" -msgstr "" +msgstr "Failide arv" #. module: report_document #: field:report.document.user,directory:0 diff --git a/addons/report_document/i18n/fr_FR.po b/addons/report_document/i18n/fr_FR.po index 291eba8adbc..e675ccee628 100644 --- a/addons/report_document/i18n/fr_FR.po +++ b/addons/report_document/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/hr_HR.po b/addons/report_document/i18n/hr_HR.po index aae9059879c..0c943311b81 100644 --- a/addons/report_document/i18n/hr_HR.po +++ b/addons/report_document/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/hu_HU.po b/addons/report_document/i18n/hu_HU.po index 88d679aa86f..7c6b7afa623 100644 --- a/addons/report_document/i18n/hu_HU.po +++ b/addons/report_document/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/it_IT.po b/addons/report_document/i18n/it_IT.po index 106578ce887..cc22c7f380b 100644 --- a/addons/report_document/i18n/it_IT.po +++ b/addons/report_document/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/lt_LT.po b/addons/report_document/i18n/lt_LT.po index 96efeeb1394..508f8dd3ee0 100644 --- a/addons/report_document/i18n/lt_LT.po +++ b/addons/report_document/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/nl_BE.po b/addons/report_document/i18n/nl_BE.po index 3c538968470..5153dbbdccc 100644 --- a/addons/report_document/i18n/nl_BE.po +++ b/addons/report_document/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/nl_NL.po b/addons/report_document/i18n/nl_NL.po index 309e0cbd812..5e640293a82 100644 --- a/addons/report_document/i18n/nl_NL.po +++ b/addons/report_document/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pl_PL.po b/addons/report_document/i18n/pl_PL.po index c861c94c2de..c93354b35a4 100644 --- a/addons/report_document/i18n/pl_PL.po +++ b/addons/report_document/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pt_BR.po b/addons/report_document/i18n/pt_BR.po index d479c61056b..86640886659 100644 --- a/addons/report_document/i18n/pt_BR.po +++ b/addons/report_document/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pt_PT.po b/addons/report_document/i18n/pt_PT.po index 1203faa8ab4..1f9b93d082a 100644 --- a/addons/report_document/i18n/pt_PT.po +++ b/addons/report_document/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+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 7c970a4c6ec..f5eb354fc00 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ro_RO.po b/addons/report_document/i18n/ro_RO.po index 2966d844d09..ce55f0e30fd 100644 --- a/addons/report_document/i18n/ro_RO.po +++ b/addons/report_document/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:41+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ru_RU.po b/addons/report_document/i18n/ru_RU.po index 885446a8405..0aa63906362 100644 --- a/addons/report_document/i18n/ru_RU.po +++ b/addons/report_document/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sl_SL.po b/addons/report_document/i18n/sl_SL.po index 2a1f328c802..37db9581790 100644 --- a/addons/report_document/i18n/sl_SL.po +++ b/addons/report_document/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sv_SE.po b/addons/report_document/i18n/sv_SE.po index 8c45e5a225b..b97a81cb440 100644 --- a/addons/report_document/i18n/sv_SE.po +++ b/addons/report_document/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sv_SV.po b/addons/report_document/i18n/sv_SV.po index e2a7bdf8820..840517fb588 100644 --- a/addons/report_document/i18n/sv_SV.po +++ b/addons/report_document/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,6 +50,11 @@ msgstr "" msgid "File Size" msgstr "" +#. module: report_document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all msgid "All Months" @@ -89,7 +94,7 @@ msgstr "" #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: report_document #: model:ir.model,name:report_document.model_report_document_wall @@ -99,7 +104,7 @@ msgstr "" #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document msgid "Document Management" -msgstr "Dokumenthantering" +msgstr "" #. module: report_document #: field:report.document.user,type:0 diff --git a/addons/report_document/i18n/tr_TR.po b/addons/report_document/i18n/tr_TR.po index 527a2509e22..65cd08167ca 100644 --- a/addons/report_document/i18n/tr_TR.po +++ b/addons/report_document/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/uk_UK.po b/addons/report_document/i18n/uk_UK.po index 14a8cd70192..d16d5f88d0a 100644 --- a/addons/report_document/i18n/uk_UK.po +++ b/addons/report_document/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/zh_CN.po b/addons/report_document/i18n/zh_CN.po index a5466b6224d..7606ca9ad69 100644 --- a/addons/report_document/i18n/zh_CN.po +++ b/addons/report_document/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/zh_TW.po b/addons/report_document/i18n/zh_TW.po index c006d107215..149582ee5ef 100644 --- a/addons/report_document/i18n/zh_TW.po +++ b/addons/report_document/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ar_AR.po b/addons/report_intrastat/i18n/ar_AR.po index 2c4cc81371a..eaf27e869f5 100644 --- a/addons/report_intrastat/i18n/ar_AR.po +++ b/addons/report_intrastat/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/bg_BG.po b/addons/report_intrastat/i18n/bg_BG.po index 0a60eb60b2f..ef86b748a79 100644 --- a/addons/report_intrastat/i18n/bg_BG.po +++ b/addons/report_intrastat/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/bs_BS.po b/addons/report_intrastat/i18n/bs_BS.po index 3ec27cae874..3ecde1caf03 100644 --- a/addons/report_intrastat/i18n/bs_BS.po +++ b/addons/report_intrastat/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/ca_ES.po b/addons/report_intrastat/i18n/ca_ES.po index c2648812fc7..f327aabd5ad 100644 --- a/addons/report_intrastat/i18n/ca_ES.po +++ b/addons/report_intrastat/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "Preu unitat" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "Ref. empresa" msgid "Total (inclu. taxes):" msgstr "Total (amb impostos):" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "Factura d'abonament" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "Factura esborrany" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,9 +208,9 @@ msgid "Intrastat code" msgstr "Codi Intrastat" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" -msgstr "Factura d'abonament" +#: field:report.intrastat,ref:0 +msgid "Origin" +msgstr "" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -218,11 +233,6 @@ msgstr "Impost" msgid "Country code" msgstr "Codi del pais" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Mes" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/cs_CS.po b/addons/report_intrastat/i18n/cs_CS.po index 853a062a938..a7244639e37 100644 --- a/addons/report_intrastat/i18n/cs_CS.po +++ b/addons/report_intrastat/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,16 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: report_intrastat +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -132,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -179,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -188,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -213,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/cs_CZ.po b/addons/report_intrastat/i18n/cs_CZ.po index 1f976192eea..54c04175869 100644 --- a/addons/report_intrastat/i18n/cs_CZ.po +++ b/addons/report_intrastat/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/de_DE.po b/addons/report_intrastat/i18n/de_DE.po index f2711bda667..4cbe346fac5 100644 --- a/addons/report_intrastat/i18n/de_DE.po +++ b/addons/report_intrastat/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "Preis pro Einheit" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "Partner Ref." msgid "Total (inclu. taxes):" msgstr "Summe (inkl. MwST)" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "Gutschrift" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "Entwurf Rechnung" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,9 +208,9 @@ msgid "Intrastat code" msgstr "Intrastat Nummer (code)" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" -msgstr "Gutschrift" +#: field:report.intrastat,ref:0 +msgid "Origin" +msgstr "" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -218,11 +233,6 @@ msgstr "Steuer" msgid "Country code" msgstr "Ländercode" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Monat" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index 32b4a79a1a3..c3247c98515 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/es_ES.po b/addons/report_intrastat/i18n/es_ES.po index 069a735a6a4..4ac22e72ea3 100644 --- a/addons/report_intrastat/i18n/es_ES.po +++ b/addons/report_intrastat/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "Precio unidad" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "Ref. empresa" msgid "Total (inclu. taxes):" msgstr "Total (con impuestos):" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "Factura de abono" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "Factura borrador" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,9 +208,9 @@ msgid "Intrastat code" msgstr "Código Intrastat" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" -msgstr "Factura de abono" +#: field:report.intrastat,ref:0 +msgid "Origin" +msgstr "" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -218,11 +233,6 @@ msgstr "Impuesto" msgid "Country code" msgstr "Código del país" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Mes" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/et_EE.po b/addons/report_intrastat/i18n/et_EE.po index 06dc51e64ea..6a112bed0bd 100644 --- a/addons/report_intrastat/i18n/et_EE.po +++ b/addons/report_intrastat/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Allahindl. (%)" #: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_tree #: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat msgid "Intrastat (this month)" -msgstr "" +msgstr "Intrastat (see kuu)" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -49,6 +49,11 @@ msgstr "Ühiku hind" #. module: report_intrastat #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" msgstr "" #. module: report_intrastat @@ -95,7 +100,7 @@ msgstr "Liik" #. module: report_intrastat #: model:ir.actions.report.xml,name:report_intrastat.invoice_intrastat_id msgid "Invoice Intrastat" -msgstr "" +msgstr "Arve intrastat" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -105,7 +110,7 @@ msgstr "Arve kuupäev" #. module: report_intrastat #: model:ir.module.module,shortdesc:report_intrastat.module_meta_information msgid "Intrastat Reporting - Reporting" -msgstr "" +msgstr "Intrastat aruandlus - Aruandlus" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -137,6 +142,11 @@ msgstr "Partneri viide." msgid "Total (inclu. taxes):" msgstr "Kokku (sisald. makse):" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "Tagasimakse" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -145,7 +155,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat msgid "Intrastat report" -msgstr "" +msgstr "Intrastat aruanne" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -165,7 +175,7 @@ msgstr "Summa" #. module: report_intrastat #: view:report.intrastat:0 msgid "Intrastat Data" -msgstr "" +msgstr "Intrastat andmed" #. module: report_intrastat #: field:report.intrastat,value:0 @@ -177,25 +187,30 @@ msgstr "Väärtus" #: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_tree_all #: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat_all msgid "Intrastat" -msgstr "" +msgstr "Intrastat" #. module: report_intrastat #: rml:account.invoice.intrastat:0 msgid "Draft Invoice" msgstr "Arve Mustand" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 #: field:report.intrastat,intrastat_id:0 #: view:report.intrastat.code:0 msgid "Intrastat code" -msgstr "" +msgstr "Intrastat kood" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" -msgstr "Tagasimakse" +#: field:report.intrastat,ref:0 +msgid "Origin" +msgstr "" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -206,7 +221,7 @@ msgstr "Kaal" #. module: report_intrastat #: field:res.country,intrastat:0 msgid "Intrastat member" -msgstr "" +msgstr "Intrastat liige" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -218,11 +233,6 @@ msgstr "Maksud" msgid "Country code" msgstr "Riigi kood" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Kuu" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" @@ -241,7 +251,7 @@ msgstr "Fax :" #. module: report_intrastat #: rml:account.invoice.intrastat:0 msgid "Supplier Refund" -msgstr "Tarnija Tagasimakse" +msgstr "Tarnija hüvitis" #. module: report_intrastat #: rml:account.invoice.intrastat:0 @@ -258,5 +268,5 @@ msgstr "Hind" #: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat_code #: field:report.intrastat.code,name:0 msgid "Intrastat Code" -msgstr "" +msgstr "Intrastat kood" diff --git a/addons/report_intrastat/i18n/fr_FR.po b/addons/report_intrastat/i18n/fr_FR.po index 2cc1da063c8..b05faa7385c 100644 --- a/addons/report_intrastat/i18n/fr_FR.po +++ b/addons/report_intrastat/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "Code Intrastat" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "Code pays" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Mois" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/hr_HR.po b/addons/report_intrastat/i18n/hr_HR.po index 3351190de0d..e68b3e6569c 100644 --- a/addons/report_intrastat/i18n/hr_HR.po +++ b/addons/report_intrastat/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/hu_HU.po b/addons/report_intrastat/i18n/hu_HU.po index 10a7c1079c3..e6e056c4752 100644 --- a/addons/report_intrastat/i18n/hu_HU.po +++ b/addons/report_intrastat/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/it_IT.po b/addons/report_intrastat/i18n/it_IT.po index fc4e7d1c814..7dc77ba54dc 100644 --- a/addons/report_intrastat/i18n/it_IT.po +++ b/addons/report_intrastat/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "Codice Intrastat" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "Codice nazione" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Mese" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/lt_LT.po b/addons/report_intrastat/i18n/lt_LT.po index 75b4f689819..f65d437e571 100644 --- a/addons/report_intrastat/i18n/lt_LT.po +++ b/addons/report_intrastat/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index 43c7e1ccedb..2af46c1b67a 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/nl_NL.po b/addons/report_intrastat/i18n/nl_NL.po index 48e10e7d7f0..e37a1679c0e 100644 --- a/addons/report_intrastat/i18n/nl_NL.po +++ b/addons/report_intrastat/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Intrastat" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "Intrastat-code" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "Landcode" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Maand" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/pl_PL.po b/addons/report_intrastat/i18n/pl_PL.po index 838e1dcd223..a116d02983e 100644 --- a/addons/report_intrastat/i18n/pl_PL.po +++ b/addons/report_intrastat/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index 38b742c6da5..019562acb24 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/pt_PT.po b/addons/report_intrastat/i18n/pt_PT.po index 6b7997c38b0..c807002e6fa 100644 --- a/addons/report_intrastat/i18n/pt_PT.po +++ b/addons/report_intrastat/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "Interestadual" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "Código interestadual" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "Código do país" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Mês" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/report_intrastat.pot b/addons/report_intrastat/i18n/report_intrastat.pot index e882804183e..ef8be69ddf0 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/ro_RO.po b/addons/report_intrastat/i18n/ro_RO.po index 2047f61b12f..6f9afd62cbd 100644 --- a/addons/report_intrastat/i18n/ro_RO.po +++ b/addons/report_intrastat/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/ru_RU.po b/addons/report_intrastat/i18n/ru_RU.po index 11c83de8e0a..9046e81d333 100644 --- a/addons/report_intrastat/i18n/ru_RU.po +++ b/addons/report_intrastat/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "Код страны" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "Месяц" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/sl_SL.po b/addons/report_intrastat/i18n/sl_SL.po index 14b0a1d2aad..c41316bccdc 100644 --- a/addons/report_intrastat/i18n/sl_SL.po +++ b/addons/report_intrastat/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/sv_SE.po b/addons/report_intrastat/i18n/sv_SE.po index 220856a39a8..ef135df6f12 100644 --- a/addons/report_intrastat/i18n/sv_SE.po +++ b/addons/report_intrastat/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/sv_SV.po b/addons/report_intrastat/i18n/sv_SV.po index feb4d409647..ccfc32a1213 100644 --- a/addons/report_intrastat/i18n/sv_SV.po +++ b/addons/report_intrastat/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,16 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: report_intrastat +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -132,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -179,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -188,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -213,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/tr_TR.po b/addons/report_intrastat/i18n/tr_TR.po index 0d1b2c8f4df..db8e0b96d4d 100644 --- a/addons/report_intrastat/i18n/tr_TR.po +++ b/addons/report_intrastat/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/uk_UK.po b/addons/report_intrastat/i18n/uk_UK.po index 17e188dbf7f..66232c0b4b9 100644 --- a/addons/report_intrastat/i18n/uk_UK.po +++ b/addons/report_intrastat/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index ba4186d8230..c6f18fef849 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index eaa8831290c..f7f0601a370 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: report_intrastat +#: field:report.intrastat,name:0 +msgid "Period" +msgstr "" + #. module: report_intrastat #: model:ir.ui.menu,name:report_intrastat.next_id_90 msgid "All Months" @@ -137,6 +142,11 @@ msgstr "" msgid "Total (inclu. taxes):" msgstr "" +#. module: report_intrastat +#: rml:account.invoice.intrastat:0 +msgid "Refund" +msgstr "" + #. module: report_intrastat #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -184,6 +194,11 @@ msgstr "" msgid "Draft Invoice" msgstr "" +#. module: report_intrastat +#: field:report.intrastat,supply_units:0 +msgid "Supply Units" +msgstr "" + #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code #: field:product.template,intrastat_id:0 @@ -193,8 +208,8 @@ msgid "Intrastat code" msgstr "" #. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" +#: field:report.intrastat,ref:0 +msgid "Origin" msgstr "" #. module: report_intrastat @@ -218,11 +233,6 @@ msgstr "" msgid "Country code" msgstr "" -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - #. module: report_intrastat #: field:report.intrastat,currency_id:0 msgid "Currency" diff --git a/addons/report_mrp/i18n/ar_AR.po b/addons/report_mrp/i18n/ar_AR.po index d5771435a13..67fee6ba010 100644 --- a/addons/report_mrp/i18n/ar_AR.po +++ b/addons/report_mrp/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/bg_BG.po b/addons/report_mrp/i18n/bg_BG.po index b7e5c3c7081..8597e5f6b4a 100644 --- a/addons/report_mrp/i18n/bg_BG.po +++ b/addons/report_mrp/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/bs_BS.po b/addons/report_mrp/i18n/bs_BS.po index 2d36e12a50d..7957b6abba2 100644 --- a/addons/report_mrp/i18n/bs_BS.po +++ b/addons/report_mrp/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ca_ES.po b/addons/report_mrp/i18n/ca_ES.po index bd792b286d2..143dcf58252 100644 --- a/addons/report_mrp/i18n/ca_ES.po +++ b/addons/report_mrp/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/cs_CS.po b/addons/report_mrp/i18n/cs_CS.po index cbd6f611553..438f0beefa9 100644 --- a/addons/report_mrp/i18n/cs_CS.po +++ b/addons/report_mrp/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -84,8 +84,8 @@ msgid "Weekly Stock Value Variation" msgstr "" #. module: report_mrp -#: view:report.workcenter.load:0 -msgid "Workcenter load" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_mrp @@ -94,3 +94,8 @@ msgstr "" msgid "Stock value variation" msgstr "" +#. module: report_mrp +#: view:report.workcenter.load:0 +msgid "Workcenter load" +msgstr "" + diff --git a/addons/report_mrp/i18n/cs_CZ.po b/addons/report_mrp/i18n/cs_CZ.po index 71b2063af4d..ac0ddd6eae7 100644 --- a/addons/report_mrp/i18n/cs_CZ.po +++ b/addons/report_mrp/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/de_DE.po b/addons/report_mrp/i18n/de_DE.po index 0a86475995f..0c9a31860e8 100644 --- a/addons/report_mrp/i18n/de_DE.po +++ b/addons/report_mrp/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/es_AR.po b/addons/report_mrp/i18n/es_AR.po index fc933b70731..1b5379cd451 100644 --- a/addons/report_mrp/i18n/es_AR.po +++ b/addons/report_mrp/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/es_ES.po b/addons/report_mrp/i18n/es_ES.po index 293ee729d0d..8dc974e637d 100644 --- a/addons/report_mrp/i18n/es_ES.po +++ b/addons/report_mrp/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/et_EE.po b/addons/report_mrp/i18n/et_EE.po index 0c04f480ef8..766aee44331 100644 --- a/addons/report_mrp/i18n/et_EE.po +++ b/addons/report_mrp/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Töökeskkonna Koormus" #. module: report_mrp #: model:ir.module.module,shortdesc:report_mrp.module_meta_information msgid "MRP Management - Reporting" -msgstr "" +msgstr "TVP haldus - Aruandlus" #. module: report_mrp #: field:report.mrp.inout,value:0 @@ -86,7 +86,7 @@ msgstr "Nädalased laoväärtuse muutused" #. module: report_mrp #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_mrp #: model:ir.model,name:report_mrp.model_report_mrp_inout diff --git a/addons/report_mrp/i18n/fr_FR.po b/addons/report_mrp/i18n/fr_FR.po index 360d58b32ab..d506370027b 100644 --- a/addons/report_mrp/i18n/fr_FR.po +++ b/addons/report_mrp/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/hr_HR.po b/addons/report_mrp/i18n/hr_HR.po index a24f6af116b..af6cca0dd8a 100644 --- a/addons/report_mrp/i18n/hr_HR.po +++ b/addons/report_mrp/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/hu_HU.po b/addons/report_mrp/i18n/hu_HU.po index 58dca55b435..4a2e35aaaf3 100644 --- a/addons/report_mrp/i18n/hu_HU.po +++ b/addons/report_mrp/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/it_IT.po b/addons/report_mrp/i18n/it_IT.po index 4fa210fe767..c5a627d452a 100644 --- a/addons/report_mrp/i18n/it_IT.po +++ b/addons/report_mrp/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/lt_LT.po b/addons/report_mrp/i18n/lt_LT.po index 5018bad9ae9..8852c6eb4dc 100644 --- a/addons/report_mrp/i18n/lt_LT.po +++ b/addons/report_mrp/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/nl_BE.po b/addons/report_mrp/i18n/nl_BE.po index bb3ce79abd8..7ac0e4d74ee 100644 --- a/addons/report_mrp/i18n/nl_BE.po +++ b/addons/report_mrp/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/nl_NL.po b/addons/report_mrp/i18n/nl_NL.po index 0de500c7266..187610edde9 100644 --- a/addons/report_mrp/i18n/nl_NL.po +++ b/addons/report_mrp/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pl_PL.po b/addons/report_mrp/i18n/pl_PL.po index 8ff54ccc404..bc066129ba7 100644 --- a/addons/report_mrp/i18n/pl_PL.po +++ b/addons/report_mrp/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pt_BR.po b/addons/report_mrp/i18n/pt_BR.po index d7538f8ebdf..5459c5981c9 100644 --- a/addons/report_mrp/i18n/pt_BR.po +++ b/addons/report_mrp/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pt_PT.po b/addons/report_mrp/i18n/pt_PT.po index d1a3b4e78c1..e837574c677 100644 --- a/addons/report_mrp/i18n/pt_PT.po +++ b/addons/report_mrp/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 c90a5dd5e67..fae15dcb622 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ro_RO.po b/addons/report_mrp/i18n/ro_RO.po index ad328c6f810..ba1524520d1 100644 --- a/addons/report_mrp/i18n/ro_RO.po +++ b/addons/report_mrp/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ru_RU.po b/addons/report_mrp/i18n/ru_RU.po index 9dc22ed42b0..89bb008df68 100644 --- a/addons/report_mrp/i18n/ru_RU.po +++ b/addons/report_mrp/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sl_SL.po b/addons/report_mrp/i18n/sl_SL.po index 26ac8f18bb4..7cee8922709 100644 --- a/addons/report_mrp/i18n/sl_SL.po +++ b/addons/report_mrp/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sv_SE.po b/addons/report_mrp/i18n/sv_SE.po index e76a87aaaed..0a0a9f49f4b 100644 --- a/addons/report_mrp/i18n/sv_SE.po +++ b/addons/report_mrp/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sv_SV.po b/addons/report_mrp/i18n/sv_SV.po index d9cbe694d14..09d84e326dd 100644 --- a/addons/report_mrp/i18n/sv_SV.po +++ b/addons/report_mrp/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: report_mrp #: model:ir.ui.menu,name:report_mrp.next_id_77 msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: report_mrp #: constraint:ir.model:0 @@ -84,8 +84,8 @@ msgid "Weekly Stock Value Variation" msgstr "" #. module: report_mrp -#: view:report.workcenter.load:0 -msgid "Workcenter load" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_mrp @@ -94,3 +94,8 @@ msgstr "" msgid "Stock value variation" msgstr "" +#. module: report_mrp +#: view:report.workcenter.load:0 +msgid "Workcenter load" +msgstr "" + diff --git a/addons/report_mrp/i18n/tr_TR.po b/addons/report_mrp/i18n/tr_TR.po index 2b408fd9e70..1000d40ca0b 100644 --- a/addons/report_mrp/i18n/tr_TR.po +++ b/addons/report_mrp/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/uk_UK.po b/addons/report_mrp/i18n/uk_UK.po index 2dd5ce4d88b..4d45cc87270 100644 --- a/addons/report_mrp/i18n/uk_UK.po +++ b/addons/report_mrp/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/zh_CN.po b/addons/report_mrp/i18n/zh_CN.po index 386a349f0f7..c8dbebf1b08 100644 --- a/addons/report_mrp/i18n/zh_CN.po +++ b/addons/report_mrp/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/zh_TW.po b/addons/report_mrp/i18n/zh_TW.po index 2f5c775edef..435c6dccbaa 100644 --- a/addons/report_mrp/i18n/zh_TW.po +++ b/addons/report_mrp/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ar_AR.po b/addons/report_project/i18n/ar_AR.po index d9d0d1fbcc7..e0d816b1cd8 100644 --- a/addons/report_project/i18n/ar_AR.po +++ b/addons/report_project/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/bg_BG.po b/addons/report_project/i18n/bg_BG.po index 079ebcf9bf9..1ef20db4d60 100644 --- a/addons/report_project/i18n/bg_BG.po +++ b/addons/report_project/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/bs_BS.po b/addons/report_project/i18n/bs_BS.po index b16a0b677b7..70e42e35e45 100644 --- a/addons/report_project/i18n/bs_BS.po +++ b/addons/report_project/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ca_ES.po b/addons/report_project/i18n/ca_ES.po index 6c16d4dc9d7..3d0e4266807 100644 --- a/addons/report_project/i18n/ca_ES.po +++ b/addons/report_project/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/cs_CS.po b/addons/report_project/i18n/cs_CS.po index edcd2c628c9..930423f5c34 100644 --- a/addons/report_project/i18n/cs_CS.po +++ b/addons/report_project/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,32 +21,11 @@ msgstr "" msgid "Tasks finished by project (this month)" msgstr "" -#. module: report_project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by Project and User" -msgstr "" - #. module: report_project #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by projects and users" -msgstr "" - -#. module: report_project -#: field:report.project.task,task_closed:0 -#: field:report.project.task.user,task_closed:0 -msgid "Task Closed" -msgstr "" - #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_user_tree #: model:ir.ui.menu,name:report_project.menu_project_task_user_tree @@ -54,15 +33,66 @@ msgid "Tasks Closed by Project and User" msgstr "" #. module: report_project -#: field:report.project.task,hours_delay:0 -#: field:report.project.task.user,hours_delay:0 -msgid "Avg. Plan.-Eff." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_project -#: field:report.project.task,name:0 -#: field:report.project.task.user,name:0 -msgid "Month" +#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month +#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree_month +msgid "Tasks finished by project and user (this month)" +msgstr "" + +#. module: report_project +#: field:report.project.task,hours_effective:0 +#: field:report.project.task.user,hours_effective:0 +msgid "Effective Hours" +msgstr "" + +#. module: report_project +#: model:ir.model,name:report_project.model_report_project_task_user +msgid "Tasks by user and project" +msgstr "" + +#. module: report_project +#: field:report.project.task,task_closed:0 +#: field:report.project.task.user,task_closed:0 +msgid "Task Closed" +msgstr "" + +#. module: report_project +#: view:report.project.task:0 +msgid "Tasks by Project" +msgstr "" + +#. module: report_project +#: model:ir.module.module,shortdesc:report_project.module_meta_information +msgid "Sales Management - Reporting" +msgstr "" + +#. module: report_project +#: field:report.project.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_project +#: view:report.project.task.user:0 +msgid "Tasks by Project and User" +msgstr "" + +#. module: report_project +#: model:ir.ui.menu,name:report_project.next_id_63 +msgid "This Month" +msgstr "" + +#. module: report_project +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_project +#: view:report.project.task.user:0 +msgid "Tasks by projects and users" msgstr "" #. module: report_project @@ -77,58 +107,33 @@ msgstr "" msgid "Avg Closing Delay" msgstr "" -#. module: report_project -#: model:ir.module.module,shortdesc:report_project.module_meta_information -msgid "Sales Management - Reporting" -msgstr "" - -#. module: report_project -#: model:ir.model,name:report_project.model_report_project_task_user -msgid "Tasks by user and project" -msgstr "" - #. module: report_project #: model:ir.model,name:report_project.model_report_project_task #: view:report.project.task:0 msgid "Tasks by project" msgstr "" +#. module: report_project +#: field:report.project.task,hours_delay:0 +#: field:report.project.task.user,hours_delay:0 +msgid "Avg. Plan.-Eff." +msgstr "" + +#. module: report_project +#: field:report.project.task,name:0 +#: field:report.project.task.user,name:0 +msgid "Month" +msgstr "" + #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_tree #: model:ir.ui.menu,name:report_project.menu_project_task_tree msgid "Tasks Closed by Project" msgstr "" -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month -#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree_month -msgid "Tasks finished by project and user (this month)" -msgstr "" - -#. module: report_project -#: view:report.project.task:0 -msgid "Tasks by Project" -msgstr "" - -#. module: report_project -#: model:ir.ui.menu,name:report_project.next_id_63 -msgid "This Month" -msgstr "" - -#. module: report_project -#: field:report.project.task,hours_effective:0 -#: field:report.project.task.user,hours_effective:0 -msgid "Effective Hours" -msgstr "" - #. module: report_project #: field:report.project.task,hours_planned:0 #: field:report.project.task.user,hours_planned:0 msgid "Planned Hours" msgstr "" -#. module: report_project -#: field:report.project.task.user,user_id:0 -msgid "User" -msgstr "" - diff --git a/addons/report_project/i18n/cs_CZ.po b/addons/report_project/i18n/cs_CZ.po index 174004e74d9..68970d16510 100644 --- a/addons/report_project/i18n/cs_CZ.po +++ b/addons/report_project/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/de_DE.po b/addons/report_project/i18n/de_DE.po index 3eb99be4e3d..7723352b4d1 100644 --- a/addons/report_project/i18n/de_DE.po +++ b/addons/report_project/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/es_AR.po b/addons/report_project/i18n/es_AR.po index 3093a7bf5e7..8cbe34c1191 100644 --- a/addons/report_project/i18n/es_AR.po +++ b/addons/report_project/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/es_ES.po b/addons/report_project/i18n/es_ES.po index d57a14c5445..c1b7f99c787 100644 --- a/addons/report_project/i18n/es_ES.po +++ b/addons/report_project/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/et_EE.po b/addons/report_project/i18n/et_EE.po index 0f25b59bd87..0745469ec62 100644 --- a/addons/report_project/i18n/et_EE.po +++ b/addons/report_project/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Ülesanded suletud Kategooria ja Kasutajajärgi" #. module: report_project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month @@ -68,7 +68,7 @@ msgstr "Ülesanded Projektijärgi" #. module: report_project #: model:ir.module.module,shortdesc:report_project.module_meta_information msgid "Sales Management - Reporting" -msgstr "" +msgstr "Müügihaldus - Aruandlus" #. module: report_project #: field:report.project.task.user,user_id:0 diff --git a/addons/report_project/i18n/fr_FR.po b/addons/report_project/i18n/fr_FR.po index 05895f21164..6af01dbf3de 100644 --- a/addons/report_project/i18n/fr_FR.po +++ b/addons/report_project/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/hr_HR.po b/addons/report_project/i18n/hr_HR.po index bb3562b9cfa..beb6a75bdcf 100644 --- a/addons/report_project/i18n/hr_HR.po +++ b/addons/report_project/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/hu_HU.po b/addons/report_project/i18n/hu_HU.po index aeff4981258..bb4380cf478 100644 --- a/addons/report_project/i18n/hu_HU.po +++ b/addons/report_project/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/it_IT.po b/addons/report_project/i18n/it_IT.po index 16950c51787..08c576ce168 100644 --- a/addons/report_project/i18n/it_IT.po +++ b/addons/report_project/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/lt_LT.po b/addons/report_project/i18n/lt_LT.po index f5c0876f3a7..30a1af5e06e 100644 --- a/addons/report_project/i18n/lt_LT.po +++ b/addons/report_project/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/nl_BE.po b/addons/report_project/i18n/nl_BE.po index 860f8b6914d..ce70febd42a 100644 --- a/addons/report_project/i18n/nl_BE.po +++ b/addons/report_project/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/nl_NL.po b/addons/report_project/i18n/nl_NL.po index b2421509f20..c7268e5cc7f 100644 --- a/addons/report_project/i18n/nl_NL.po +++ b/addons/report_project/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pl_PL.po b/addons/report_project/i18n/pl_PL.po index 9e6f967b495..b0d93487651 100644 --- a/addons/report_project/i18n/pl_PL.po +++ b/addons/report_project/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pt_BR.po b/addons/report_project/i18n/pt_BR.po index 08817ae9931..4f48cbbc695 100644 --- a/addons/report_project/i18n/pt_BR.po +++ b/addons/report_project/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pt_PT.po b/addons/report_project/i18n/pt_PT.po index b8ea0f2fd64..dcf3abc4881 100644 --- a/addons/report_project/i18n/pt_PT.po +++ b/addons/report_project/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 d18f9bbad17..d1eb37e8a9c 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ro_RO.po b/addons/report_project/i18n/ro_RO.po index 3032e89656b..cbcb5eabca6 100644 --- a/addons/report_project/i18n/ro_RO.po +++ b/addons/report_project/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ru_RU.po b/addons/report_project/i18n/ru_RU.po index e2e7925ee0f..771a01a4563 100644 --- a/addons/report_project/i18n/ru_RU.po +++ b/addons/report_project/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sl_SL.po b/addons/report_project/i18n/sl_SL.po index cba4e3aab3e..44a0b932866 100644 --- a/addons/report_project/i18n/sl_SL.po +++ b/addons/report_project/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sv_SE.po b/addons/report_project/i18n/sv_SE.po index 7a2a7e1b1d6..435b4ffcbe0 100644 --- a/addons/report_project/i18n/sv_SE.po +++ b/addons/report_project/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sv_SV.po b/addons/report_project/i18n/sv_SV.po index cae6564ee59..e3c43299f9c 100644 --- a/addons/report_project/i18n/sv_SV.po +++ b/addons/report_project/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,24 +21,37 @@ msgstr "" msgid "Tasks finished by project (this month)" msgstr "" -#. module: report_project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by Project and User" -msgstr "" - #. module: report_project #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" #. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by projects and users" +#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree +#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree +msgid "Tasks Closed by Project and User" +msgstr "" + +#. module: report_project +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_project +#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month +#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree_month +msgid "Tasks finished by project and user (this month)" +msgstr "" + +#. module: report_project +#: field:report.project.task,hours_effective:0 +#: field:report.project.task.user,hours_effective:0 +msgid "Effective Hours" +msgstr "" + +#. module: report_project +#: model:ir.model,name:report_project.model_report_project_task_user +msgid "Tasks by user and project" msgstr "" #. module: report_project @@ -48,21 +61,38 @@ msgid "Task Closed" msgstr "" #. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree -#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree -msgid "Tasks Closed by Project and User" +#: view:report.project.task:0 +msgid "Tasks by Project" msgstr "" #. module: report_project -#: field:report.project.task,hours_delay:0 -#: field:report.project.task.user,hours_delay:0 -msgid "Avg. Plan.-Eff." +#: model:ir.module.module,shortdesc:report_project.module_meta_information +msgid "Sales Management - Reporting" msgstr "" #. module: report_project -#: field:report.project.task,name:0 -#: field:report.project.task.user,name:0 -msgid "Month" +#: field:report.project.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_project +#: view:report.project.task.user:0 +msgid "Tasks by Project and User" +msgstr "" + +#. module: report_project +#: model:ir.ui.menu,name:report_project.next_id_63 +msgid "This Month" +msgstr "" + +#. module: report_project +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_project +#: view:report.project.task.user:0 +msgid "Tasks by projects and users" msgstr "" #. module: report_project @@ -77,58 +107,33 @@ msgstr "" msgid "Avg Closing Delay" msgstr "" -#. module: report_project -#: model:ir.module.module,shortdesc:report_project.module_meta_information -msgid "Sales Management - Reporting" -msgstr "" - -#. module: report_project -#: model:ir.model,name:report_project.model_report_project_task_user -msgid "Tasks by user and project" -msgstr "" - #. module: report_project #: model:ir.model,name:report_project.model_report_project_task #: view:report.project.task:0 msgid "Tasks by project" msgstr "" +#. module: report_project +#: field:report.project.task,hours_delay:0 +#: field:report.project.task.user,hours_delay:0 +msgid "Avg. Plan.-Eff." +msgstr "" + +#. module: report_project +#: field:report.project.task,name:0 +#: field:report.project.task.user,name:0 +msgid "Month" +msgstr "" + #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_tree #: model:ir.ui.menu,name:report_project.menu_project_task_tree msgid "Tasks Closed by Project" msgstr "" -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month -#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree_month -msgid "Tasks finished by project and user (this month)" -msgstr "" - -#. module: report_project -#: view:report.project.task:0 -msgid "Tasks by Project" -msgstr "" - -#. module: report_project -#: model:ir.ui.menu,name:report_project.next_id_63 -msgid "This Month" -msgstr "" - -#. module: report_project -#: field:report.project.task,hours_effective:0 -#: field:report.project.task.user,hours_effective:0 -msgid "Effective Hours" -msgstr "" - #. module: report_project #: field:report.project.task,hours_planned:0 #: field:report.project.task.user,hours_planned:0 msgid "Planned Hours" msgstr "" -#. module: report_project -#: field:report.project.task.user,user_id:0 -msgid "User" -msgstr "" - diff --git a/addons/report_project/i18n/tr_TR.po b/addons/report_project/i18n/tr_TR.po index e78bc5401e2..c24a7379ffb 100644 --- a/addons/report_project/i18n/tr_TR.po +++ b/addons/report_project/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/uk_UK.po b/addons/report_project/i18n/uk_UK.po index 2113ea5c958..e64b21d2ad5 100644 --- a/addons/report_project/i18n/uk_UK.po +++ b/addons/report_project/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/zh_CN.po b/addons/report_project/i18n/zh_CN.po index 201c3f63a2b..d949781c718 100644 --- a/addons/report_project/i18n/zh_CN.po +++ b/addons/report_project/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/zh_TW.po b/addons/report_project/i18n/zh_TW.po index 286e4d139d5..bf0a7e71a91 100644 --- a/addons/report_project/i18n/zh_TW.po +++ b/addons/report_project/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ar_AR.po b/addons/report_purchase/i18n/ar_AR.po index 73ac9be9610..a3f495fc5e4 100644 --- a/addons/report_purchase/i18n/ar_AR.po +++ b/addons/report_purchase/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/bg_BG.po b/addons/report_purchase/i18n/bg_BG.po index 6c05c87349f..0e2b7e1be63 100644 --- a/addons/report_purchase/i18n/bg_BG.po +++ b/addons/report_purchase/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/bs_BS.po b/addons/report_purchase/i18n/bs_BS.po index b5fbccadea8..c9626c65fbf 100644 --- a/addons/report_purchase/i18n/bs_BS.po +++ b/addons/report_purchase/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ca_ES.po b/addons/report_purchase/i18n/ca_ES.po index 7eabaf39e79..90e88fdc36b 100644 --- a/addons/report_purchase/i18n/ca_ES.po +++ b/addons/report_purchase/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/cs_CS.po b/addons/report_purchase/i18n/cs_CS.po index 837cc752682..425668fa7c3 100644 --- a/addons/report_purchase/i18n/cs_CS.po +++ b/addons/report_purchase/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,17 +39,22 @@ msgstr "" msgid "Purchases Orders by Products" msgstr "" -#. module: report_purchase -#: model:ir.ui.menu,name:report_purchase.next_id_75 -msgid "All Months" -msgstr "" - #. module: report_purchase #: model:ir.actions.act_window,name:report_purchase.action_order_product_tree_all #: model:ir.ui.menu,name:report_purchase.menu_report_order_product_all msgid "Purchases by Products" msgstr "" +#. module: report_purchase +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_purchase +#: model:ir.ui.menu,name:report_purchase.next_id_75 +msgid "All Months" +msgstr "" + #. module: report_purchase #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/report_purchase/i18n/cs_CZ.po b/addons/report_purchase/i18n/cs_CZ.po index 2ca7f5dce70..e28b6e22431 100644 --- a/addons/report_purchase/i18n/cs_CZ.po +++ b/addons/report_purchase/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/de_DE.po b/addons/report_purchase/i18n/de_DE.po index f1c3a938fe2..8c182243ee4 100644 --- a/addons/report_purchase/i18n/de_DE.po +++ b/addons/report_purchase/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/es_AR.po b/addons/report_purchase/i18n/es_AR.po index e31047acb45..50fc95c9603 100644 --- a/addons/report_purchase/i18n/es_AR.po +++ b/addons/report_purchase/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/es_ES.po b/addons/report_purchase/i18n/es_ES.po index 159fb95a045..d4682e8ab9e 100644 --- a/addons/report_purchase/i18n/es_ES.po +++ b/addons/report_purchase/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/et_EE.po b/addons/report_purchase/i18n/et_EE.po index 4634add42a1..6ae4788cae7 100644 --- a/addons/report_purchase/i18n/et_EE.po +++ b/addons/report_purchase/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Ostud Toodetejärgi" #. module: report_purchase #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_purchase #: model:ir.ui.menu,name:report_purchase.next_id_75 @@ -90,7 +90,7 @@ msgstr "Aruandlus" #. module: report_purchase #: model:ir.module.module,shortdesc:report_purchase.module_meta_information msgid "Purchase Management - Reporting" -msgstr "" +msgstr "Ostuhaldus - Aruandlus" #. module: report_purchase #: selection:report.purchase.order.category,state:0 @@ -108,7 +108,7 @@ msgstr "Hind kokku" #: field:report.purchase.order.category,quantity:0 #: field:report.purchase.order.product,quantity:0 msgid "# of Products" -msgstr "" +msgstr "Toodete arv" #. module: report_purchase #: view:report.purchase.order.product:0 @@ -130,7 +130,8 @@ msgstr "Käesolev kuu" #: model:ir.module.module,description:report_purchase.module_meta_information msgid "Module to add views like\n" " Purchase By Product, Purchase By Category of Product, All Months, Current Month." -msgstr "" +msgstr "Moodul, et lisada vaateid nagu nt:\n" +" Ostud toote kaupa, Ostud toote kategooria kaupa, Kõik kuud, Käesolev kuu." #. module: report_purchase #: selection:report.purchase.order.category,state:0 @@ -147,7 +148,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #: selection:report.purchase.order.category,state:0 #: selection:report.purchase.order.product,state:0 msgid "Manual in progress" -msgstr "" +msgstr "Edenemisel käsitsi" #. module: report_purchase #: model:ir.actions.act_window,name:report_purchase.action_order_category_tree diff --git a/addons/report_purchase/i18n/fr_FR.po b/addons/report_purchase/i18n/fr_FR.po index 9016788c0cc..cd0e2299864 100644 --- a/addons/report_purchase/i18n/fr_FR.po +++ b/addons/report_purchase/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/hr_HR.po b/addons/report_purchase/i18n/hr_HR.po index 78940e64618..9d56937ac02 100644 --- a/addons/report_purchase/i18n/hr_HR.po +++ b/addons/report_purchase/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/hu_HU.po b/addons/report_purchase/i18n/hu_HU.po index 8d8159363e5..b7cb23a6d29 100644 --- a/addons/report_purchase/i18n/hu_HU.po +++ b/addons/report_purchase/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/it_IT.po b/addons/report_purchase/i18n/it_IT.po index a0e6acf9e99..f4ddb0fc27e 100644 --- a/addons/report_purchase/i18n/it_IT.po +++ b/addons/report_purchase/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/lt_LT.po b/addons/report_purchase/i18n/lt_LT.po index 8a9e464630b..a4e159c31de 100644 --- a/addons/report_purchase/i18n/lt_LT.po +++ b/addons/report_purchase/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/nl_BE.po b/addons/report_purchase/i18n/nl_BE.po index 7aef1b7a8a3..d5f52ffa7e4 100644 --- a/addons/report_purchase/i18n/nl_BE.po +++ b/addons/report_purchase/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/nl_NL.po b/addons/report_purchase/i18n/nl_NL.po index 80502ebd27f..c778138618c 100644 --- a/addons/report_purchase/i18n/nl_NL.po +++ b/addons/report_purchase/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pl_PL.po b/addons/report_purchase/i18n/pl_PL.po index ecf50a8ca97..144c202817c 100644 --- a/addons/report_purchase/i18n/pl_PL.po +++ b/addons/report_purchase/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pt_BR.po b/addons/report_purchase/i18n/pt_BR.po index 4a0d21d71bb..3fca9f4ee40 100644 --- a/addons/report_purchase/i18n/pt_BR.po +++ b/addons/report_purchase/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pt_PT.po b/addons/report_purchase/i18n/pt_PT.po index 10cc0854e71..814c10cc945 100644 --- a/addons/report_purchase/i18n/pt_PT.po +++ b/addons/report_purchase/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+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 e8b7ff10d9b..0fe4cfa7df0 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ro_RO.po b/addons/report_purchase/i18n/ro_RO.po index 6a0371be8e6..a1e6fd87a2a 100644 --- a/addons/report_purchase/i18n/ro_RO.po +++ b/addons/report_purchase/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ru_RU.po b/addons/report_purchase/i18n/ru_RU.po index def42842270..273ff5c998a 100644 --- a/addons/report_purchase/i18n/ru_RU.po +++ b/addons/report_purchase/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sl_SL.po b/addons/report_purchase/i18n/sl_SL.po index 5d8acac789a..fc5664b62ac 100644 --- a/addons/report_purchase/i18n/sl_SL.po +++ b/addons/report_purchase/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sv_SE.po b/addons/report_purchase/i18n/sv_SE.po index 2b04d7807fa..d1336507058 100644 --- a/addons/report_purchase/i18n/sv_SE.po +++ b/addons/report_purchase/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sv_SV.po b/addons/report_purchase/i18n/sv_SV.po index f569f7cf8ed..216c0b4a97d 100644 --- a/addons/report_purchase/i18n/sv_SV.po +++ b/addons/report_purchase/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,17 +39,22 @@ msgstr "" msgid "Purchases Orders by Products" msgstr "" -#. module: report_purchase -#: model:ir.ui.menu,name:report_purchase.next_id_75 -msgid "All Months" -msgstr "" - #. module: report_purchase #: model:ir.actions.act_window,name:report_purchase.action_order_product_tree_all #: model:ir.ui.menu,name:report_purchase.menu_report_order_product_all msgid "Purchases by Products" msgstr "" +#. module: report_purchase +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_purchase +#: model:ir.ui.menu,name:report_purchase.next_id_75 +msgid "All Months" +msgstr "" + #. module: report_purchase #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -80,7 +85,7 @@ msgstr "" #. module: report_purchase #: model:ir.ui.menu,name:report_purchase.next_id_73 msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: report_purchase #: model:ir.module.module,shortdesc:report_purchase.module_meta_information diff --git a/addons/report_purchase/i18n/tr_TR.po b/addons/report_purchase/i18n/tr_TR.po index 40d4242daec..76693b3c401 100644 --- a/addons/report_purchase/i18n/tr_TR.po +++ b/addons/report_purchase/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/uk_UK.po b/addons/report_purchase/i18n/uk_UK.po index 339d7127ec7..c6a035c1797 100644 --- a/addons/report_purchase/i18n/uk_UK.po +++ b/addons/report_purchase/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/zh_CN.po b/addons/report_purchase/i18n/zh_CN.po index 9314bb67293..c6e9f157534 100644 --- a/addons/report_purchase/i18n/zh_CN.po +++ b/addons/report_purchase/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/zh_TW.po b/addons/report_purchase/i18n/zh_TW.po index 663a950282d..fef54596ac0 100644 --- a/addons/report_purchase/i18n/zh_TW.po +++ b/addons/report_purchase/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/ar_AR.po b/addons/report_sale/i18n/ar_AR.po index 95ff25395ee..b5684cc529f 100644 --- a/addons/report_sale/i18n/ar_AR.po +++ b/addons/report_sale/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/bg_BG.po b/addons/report_sale/i18n/bg_BG.po index 9066f2ee4c2..8d7ad6da3d7 100644 --- a/addons/report_sale/i18n/bg_BG.po +++ b/addons/report_sale/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Името на обекта трябва да започва с \"x_\" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Невалиден XML за преглед на архитектурата" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Справки" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/bs_BS.po b/addons/report_sale/i18n/bs_BS.po index 7829f8c9ada..74525fec463 100644 --- a/addons/report_sale/i18n/bs_BS.po +++ b/addons/report_sale/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neodgovarajući XML za arhitekturu prikaza!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/ca_ES.po b/addons/report_sale/i18n/ca_ES.po index 498e5cdec0d..4c4c13399e7 100644 --- a/addons/report_sale/i18n/ca_ES.po +++ b/addons/report_sale/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Preu mig" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Estat de la comanda" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Comandes de vendes per categoria" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Moviment mensual de vendes acumulades sobre un any" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Comandes de vendes per productes" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Moviment mensual de vendes acumulades sobre un any" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Moviment mensual de vendes sobre un any" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter e #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "Esperant data planificada" @@ -72,6 +96,7 @@ msgstr "Preu total" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Producte" @@ -92,6 +117,11 @@ msgstr "Vendes del mes" msgid "Sales by Product (this month)" msgstr "Vendes per producte (aquest mes)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Moviment mensual de vendes sobre un any" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Excepció de factura" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Vendes per categoria de productes" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Moviment mensual de vendes acumulades sobre un any" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "# de productes" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Categories" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Pressupost" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML invàlid per a la definició de la vista!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Moviment mensual de vendes sobre un any" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Informe" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Moviment diari de vendes sobre un any" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Moviment mensual de vendes acumulades sobre un any" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Manual en procés" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Excepció d'enviament" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "En procés" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Vendes per categoria de producte (aquest mes)" msgid "Daily sales turnover over one year" msgstr "Moviment diari de vendes sobre un any" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Mes" @@ -222,14 +294,26 @@ msgstr "Mes" msgid "# of Lines" msgstr "# de línies" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Realitzat" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Cancel·la" @@ -240,3 +324,8 @@ msgstr "Cancel·la" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/cs_CS.po b/addons/report_sale/i18n/cs_CS.po index 6b8c62162d8..e1508f9fbd3 100644 --- a/addons/report_sale/i18n/cs_CS.po +++ b/addons/report_sale/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,47 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" + +#. module: report_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_sale @@ -55,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -67,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -87,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -95,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -111,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -136,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -155,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -183,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -205,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -217,15 +294,38 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_so_pipeline +#: view:sale.order:0 +msgid "Sales by State" +msgstr "" + +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/cs_CZ.po b/addons/report_sale/i18n/cs_CZ.po index 2bc28fa0d71..f197bee61c6 100644 --- a/addons/report_sale/i18n/cs_CZ.po +++ b/addons/report_sale/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/de_DE.po b/addons/report_sale/i18n/de_DE.po index cb5a68f5ee1..52eb90d46d4 100644 --- a/addons/report_sale/i18n/de_DE.po +++ b/addons/report_sale/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Durch. Preis" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Auftragsstatus" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Verkäufe nach Kategorien" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Jahresumsatz nach Monaten kumm." + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Verkäufe nach Produkten" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Jahresumsatz nach Monaten kumm." +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Jahresumsatz nach Monaten" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen b #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "Warteliste" @@ -72,6 +96,7 @@ msgstr "Gesamtpreis" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Produkt" @@ -92,6 +117,11 @@ msgstr "Verkäufe des Monats" msgid "Sales by Product (this month)" msgstr "Verkäufe nach Produkten (dieser Monat)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Jahresumsatz nach Monaten" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Überfällige Rechnungen" @@ -116,12 +147,22 @@ msgstr "Verkaufsverwaltung - Berichte" msgid "Sales by Category of Products" msgstr "Verkäufe nach Produktkategorien" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Jahresumsatz nach Monaten kumm." + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "# Produkte" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Kategorien" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Angebote" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Jahresumsatz nach Monaten" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Berichtswesen" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Jahresumsatz nach Tagen" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Jahresumsatz nach Monaten kumm." +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Manuelle Bearbeitung" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Versandproblem" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "Im Fortschritt" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Verkäufe nach Produktkategorien (dieser Monat)" msgid "Daily sales turnover over one year" msgstr "Jahresumsatz nach Tagen" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Monat" @@ -222,14 +294,26 @@ msgstr "Monat" msgid "# of Lines" msgstr "# Positionen" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Fertig" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Abgebrochen" @@ -240,3 +324,8 @@ msgstr "Abgebrochen" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/es_AR.po b/addons/report_sale/i18n/es_AR.po index cf1fea4bdf4..6736257af99 100644 --- a/addons/report_sale/i18n/es_AR.po +++ b/addons/report_sale/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Facturación mensual acumulada del último año" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Facturación mensual acumulada del último año" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Facturación mensual para el último año" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "Facturación diaria para el último año" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/es_ES.po b/addons/report_sale/i18n/es_ES.po index 5cccf8d6266..9d8331b3748 100644 --- a/addons/report_sale/i18n/es_ES.po +++ b/addons/report_sale/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Precio medio" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Estado del pedido" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Pedidos de ventas por categoría" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Movimiento mensual de ventas acumuladas sobre un año" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Pedidos de ventas por productos" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Movimiento mensual de ventas acumuladas sobre un año" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Movimiento mensual de ventas sobre un año" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún caráct #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "Esperando fecha planificada" @@ -72,6 +96,7 @@ msgstr "Precio total" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Producto" @@ -92,6 +117,11 @@ msgstr "Ventas del mes" msgid "Sales by Product (this month)" msgstr "Ventas por producto (este mes)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Movimiento mensual de ventas sobre un año" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Excepción de factura" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Ventas por categoría de productos" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Movimiento mensual de ventas acumuladas sobre un año" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "# de productos" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Categorías" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Presupuesto" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "¡XML inválido para la definición de la vista!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Movimiento mensual de ventas sobre un año" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Informe" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Movimiento diario de ventas sobre un año" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Movimiento mensual de ventas acumuladas sobre un año" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Manual en proceso" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Excepción de envío" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "En proceso" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Ventas por categoría de producto (este mes)" msgid "Daily sales turnover over one year" msgstr "Movimiento diario de ventas sobre un año" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Mes" @@ -222,14 +294,26 @@ msgstr "Mes" msgid "# of Lines" msgstr "# de líneas" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Realizado" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Cancelar" @@ -240,3 +324,8 @@ msgstr "Cancelar" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/et_EE.po b/addons/report_sale/i18n/et_EE.po index 824511c567e..549c2cbea55 100644 --- a/addons/report_sale/i18n/et_EE.po +++ b/addons/report_sale/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,30 +28,48 @@ msgstr "Keskmine hind" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Tellimuse olek" #. module: report_sale -#: view:report.sale.order.category:0 -msgid "Sales Orders by category" +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" msgstr "" #. module: report_sale -#: model:ir.model,name:report_sale.model_report_sale_order_product -msgid "Sales Orders by Products" -msgstr "" +#: view:report.sale.order.category:0 +msgid "Sales Orders by category" +msgstr "Müügikorraldused kategooria kaupa" #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_6 #: model:ir.report.custom,title:report_sale.ir_report_custom_6 msgid "Monthly cumulated sales turnover over one year" +msgstr "Kuu kumuleeritud müükide käive ühe aasta jooksul" + +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_product +msgid "Sales Orders by Products" +msgstr "Müügikorraldused toodete kaupa" + +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Kuu müükide käive ühe aasta jooksul" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_82 @@ -60,61 +83,74 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" -msgstr "" +msgstr "Ootegraafik" #. module: report_sale #: field:report.sale.order.category,price_total:0 #: field:report.sale.order.product,price_total:0 msgid "Total Price" -msgstr "" +msgstr "Hind kokku" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Toode" #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_category msgid "Sales Orders by Categories" -msgstr "" +msgstr "Müügikorraldused kategooria kaupa" #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_sale_list #: model:ir.ui.menu,name:report_sale.menu_report_order_sale_list msgid "Sales of the Month" -msgstr "" +msgstr "Kuu müügid" #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_product msgid "Sales by Product (this month)" +msgstr "Müügid toote kaupa (see kuu)" + +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" msgstr "" #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 msgid "Monthly sales turnover over one year" -msgstr "" +msgstr "Kuu müükide käive ühe aasta jooksul" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" -msgstr "" +msgstr "Arve erand" #. module: report_sale #: model:ir.module.module,shortdesc:report_sale.module_meta_information msgid "Sales Management - Reporting" -msgstr "" +msgstr "Müügihaldus - Aruandlus" #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_category_all #: view:report.sale.order.category:0 msgid "Sales by Category of Products" -msgstr "" +msgstr "Müügid toote kategooriate kaupa" + +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Kuu kumuleeritud müükide käive ühe aasta jooksul" #. module: report_sale #: field:report.sale.order.category,quantity:0 @@ -122,12 +158,17 @@ msgstr "" msgid "# of Products" msgstr "Toodete arv" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all #: view:report.sale.order.product:0 msgid "Sales by Product" -msgstr "" +msgstr "Müügid toodete kaupa" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_81 @@ -141,18 +182,24 @@ msgstr "Kategooriad" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Hinnapakkumine" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Vigane XML vaate arhitektuurile!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -161,13 +208,20 @@ msgid "Reporting" msgstr "Aruandlus" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu2 -msgid "Daily Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu2 +msgid "Daily Sales Turnover Over One Year" +msgstr "Päeva müükide käive ühe aasta jooksul" + +#. module: report_sale +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -178,18 +232,25 @@ msgstr "Müügitellimused" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_83 msgid "Graphs" -msgstr "" +msgstr "Graafikud" #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "Manual in progress" -msgstr "" +msgstr "Edenemisel käsitsi" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" +msgstr "Kättetoimetamise erand" + +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" msgstr "" #. module: report_sale @@ -198,21 +259,32 @@ msgstr "" msgid "In progress" msgstr "Töös" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category msgid "Sales by Category of Product (this month)" -msgstr "" +msgstr "Müügid toote kategooriate kaupa (see kuu)" #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_5 #: model:ir.report.custom,title:report_sale.ir_report_custom_5 msgid "Daily sales turnover over one year" +msgstr "Päeva müükide käive ühe aasta jooksul" + +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" msgstr "" #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Kuu" @@ -220,16 +292,28 @@ msgstr "Kuu" #: field:report.sale.order.category,count:0 #: field:report.sale.order.product,count:0 msgid "# of Lines" +msgstr "Ridade arv" + +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Valmis" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Tühista" @@ -238,5 +322,10 @@ msgstr "Tühista" #: model:ir.actions.act_window,name:report_sale.action_so_pipeline #: view:sale.order:0 msgid "Sales by State" +msgstr "Müügid oleku kaupa" + +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" msgstr "" diff --git a/addons/report_sale/i18n/fr_FR.po b/addons/report_sale/i18n/fr_FR.po index 57e7649698e..ad51585f302 100644 --- a/addons/report_sale/i18n/fr_FR.po +++ b/addons/report_sale/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Prix moyen" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "État commande" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Commmande de ventes par catégories" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Chiffres d'affaires Mensuel des ventes cumules depuis un an" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Commandes de ventes par Produits" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Chiffres d'affaires Mensuel des ventes cumules depuis un an" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Chiffres d'affaires mensuel depuis un an" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "Attente d'exécution" @@ -72,6 +96,7 @@ msgstr "Prix Total" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Produit" @@ -92,6 +117,11 @@ msgstr "Ventes du Mois" msgid "Sales by Product (this month)" msgstr "Ventes par Produit (Ce mois)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Chiffres d'affaires mensuel depuis un an" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Exception de facture" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Ventes par Catégorie de Produits" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Chiffres d'affaires mensuel des ventes cumulés depuis un an" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "# de Produits" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Catégories" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Proposition" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Chiffres d'affaires mensuel depuis un an" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Reporting" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Chiffres d'affaires journalier depuis un an" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Chiffres d'affaires mensuel des ventes cumulés depuis un an" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Manuel en cours" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Exception de livraison" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "En cours" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Ventes par Catgorie de Produit (ce mois)" msgid "Daily sales turnover over one year" msgstr "Chiffres d'affaires journalier depuis un an" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Mois" @@ -222,14 +294,26 @@ msgstr "Mois" msgid "# of Lines" msgstr "# de lignes" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Terminer" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Annuler" @@ -240,3 +324,8 @@ msgstr "Annuler" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/hr_HR.po b/addons/report_sale/i18n/hr_HR.po index 8c4e04e8677..6b622e3140a 100644 --- a/addons/report_sale/i18n/hr_HR.po +++ b/addons/report_sale/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/hu_HU.po b/addons/report_sale/i18n/hu_HU.po index 921b34b90b5..55dfcfe4e2f 100644 --- a/addons/report_sale/i18n/hu_HU.po +++ b/addons/report_sale/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/it_IT.po b/addons/report_sale/i18n/it_IT.po index f6281987b1b..610a68ca199 100644 --- a/addons/report_sale/i18n/it_IT.po +++ b/addons/report_sale/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Prezzo Medio" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Stato Ordine" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Ordini di Vendita per Categoria" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Totale cumulativo Vendite Mensili per un anno" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Ordini di Vendita per Prodotto" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Totale cumulativo Vendite Mensili per un anno" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Ammontare Vendite mensili dopo un anno" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "In attesa di data programmata" @@ -72,6 +96,7 @@ msgstr "Prezzo Totale" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Prodotto" @@ -92,6 +117,11 @@ msgstr "Vendite del mese" msgid "Sales by Product (this month)" msgstr "Vendite per Prodotto (questo mese)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Ammontare complessivo vendite mensili dopo un anno" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Eccezione Fattura" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Vendite per categoria di Prodotto" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Ammontare cumulativo Vendite mensili dopo un anno" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "Numero Prodotti" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Categorie" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Preventivo" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML non valido per Visualizzazione Architettura!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Ammontare Vendite mensili dopo un anno" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Reportistica" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Ammontare Vendite giornaliere dopo un anno" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Ammontare cumulativo Vendite mensili dopo un anno" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Progressione Manuale" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Eccezione Spedizione" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "In corso" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Vendite per categoria di Prodotto (questo mese)" msgid "Daily sales turnover over one year" msgstr "Ammontare Vendite giornaliere dopo un anno" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Mese" @@ -222,14 +294,26 @@ msgstr "Mese" msgid "# of Lines" msgstr "Numero Righe" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Completato" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Annulla" @@ -240,3 +324,8 @@ msgstr "Annulla" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/lt_LT.po b/addons/report_sale/i18n/lt_LT.po index e927b45c328..240468f5ae0 100644 --- a/addons/report_sale/i18n/lt_LT.po +++ b/addons/report_sale/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/nl_BE.po b/addons/report_sale/i18n/nl_BE.po index c919dea2b1a..050462c11d5 100644 --- a/addons/report_sale/i18n/nl_BE.po +++ b/addons/report_sale/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatt #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/nl_NL.po b/addons/report_sale/i18n/nl_NL.po index 61776f70cf3..838c0dae927 100644 --- a/addons/report_sale/i18n/nl_NL.po +++ b/addons/report_sale/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Maandelijkse cumulatieve verkoop over een jaar" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Maandelijkse cumulatieve verkoop over een jaar" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatt #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Maandelijkse verkoopomzet gedurende een jaar" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Ongeldige XML voor overzicht" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Rapportering" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "Dagelijkse Verkoopomzet over één jaar" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/pl_PL.po b/addons/report_sale/i18n/pl_PL.po index c2d67a5c993..1dfe2f89d88 100644 --- a/addons/report_sale/i18n/pl_PL.po +++ b/addons/report_sale/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML niewłaściwy dla tej architektury wyświetlania!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Raportowanie" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/pt_BR.po b/addons/report_sale/i18n/pt_BR.po index 8cf7d59a0eb..ab78d6bce79 100644 --- a/addons/report_sale/i18n/pt_BR.po +++ b/addons/report_sale/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter es #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Invalido XML para Arquitetura da View" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Relatórios" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/pt_PT.po b/addons/report_sale/i18n/pt_PT.po index 17986b93cb4..95ba073818c 100644 --- a/addons/report_sale/i18n/pt_PT.po +++ b/addons/report_sale/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,25 +28,43 @@ msgstr "Preço Médio" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Estado da venda" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Ordens de venda por categoria" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "Volume de vendas mensais acumuladas ao longo de um ano" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Ordens de venda por produtos" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "Volume de vendas mensais acumuladas ao longo de um ano" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "Volume de vendas mensais ao longo de um ano" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 @@ -60,6 +83,7 @@ msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter e #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "Aguarda data Agendada" @@ -72,6 +96,7 @@ msgstr "Preço Total" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Produto" @@ -92,6 +117,11 @@ msgstr "Vendas do mês" msgid "Sales by Product (this month)" msgstr "Vendas por produto (mês actual)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "Volume de vendas mensais ao longo de um ano" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Excepção da Factura" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Vendas por categorias e produtos" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "Volume de vendas mensais acumuladas ao longo de um ano" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "Nº de produtos" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,34 +182,47 @@ msgstr "Categorias" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Cotação" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "XML inválido para a arquitectura de vista" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "Volume de vendas mensais ao longo de um ano" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" msgstr "Relatório" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "Volume de vendas diárias ao longo de um ano" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "Volume de vendas mensais acumuladas ao longo de um ano" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" +msgstr "" #. module: report_sale #: view:sale.order:0 @@ -188,16 +242,28 @@ msgstr "Manual em curso" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Excepção de Envio" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "Em curso" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Vendas por categoria de produtos (mês actual)" msgid "Daily sales turnover over one year" msgstr "Volume de vendas diárias ao longo de um ano" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Mês" @@ -222,14 +294,26 @@ msgstr "Mês" msgid "# of Lines" msgstr "# de Linhas" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Concluído" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Cancelar" @@ -240,3 +324,8 @@ msgstr "Cancelar" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/report_sale.pot b/addons/report_sale/i18n/report_sale.pot index 31562b5fb0a..0d62a74a0e7 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/ro_RO.po b/addons/report_sale/i18n/ro_RO.po index 4a87986ad41..1d8c55ed36e 100644 --- a/addons/report_sale/i18n/ro_RO.po +++ b/addons/report_sale/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/ru_RU.po b/addons/report_sale/i18n/ru_RU.po index 0c586aa5029..0ed6974a124 100644 --- a/addons/report_sale/i18n/ru_RU.po +++ b/addons/report_sale/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "Средняя цена" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "Состояние заказа" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "Клиентские заказы по категориям" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "Клиентские заказы по продукции" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Название объекта должно начинаться с x_ #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "В ожидании расписания" @@ -72,6 +96,7 @@ msgstr "Итоговая цена" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "Продукция" @@ -92,6 +117,11 @@ msgstr "Продажи месяца" msgid "Sales by Product (this month)" msgstr "Продужи по продуктам (тек. мес.)" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "Исключительная ситуация счета" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "Продажи по категриям продукции" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "Кол-во продукции" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "Категории" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "Предложение" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильный XML для просмотра архитектуры!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Отчетность" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "Выполняется вручную" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "Исключительная ситуация поставки" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "Выполняется" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "Продажи по категории продукции (тек.мес msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "Месяц" @@ -222,14 +294,26 @@ msgstr "Месяц" msgid "# of Lines" msgstr "Кол-во позиций" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "Выполнено" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "Отмена" @@ -240,3 +324,8 @@ msgstr "Отмена" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/sl_SL.po b/addons/report_sale/i18n/sl_SL.po index d5a60b4b9ef..80ff6a1d4a3 100644 --- a/addons/report_sale/i18n/sl_SL.po +++ b/addons/report_sale/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Neveljaven XML za arhitekturo pogleda." #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Poročanje" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/sv_SE.po b/addons/report_sale/i18n/sv_SE.po index 46f3a157635..f83fb971112 100644 --- a/addons/report_sale/i18n/sv_SE.po +++ b/addons/report_sale/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/sv_SV.po b/addons/report_sale/i18n/sv_SV.po index 93b19935dfb..74fb78fa174 100644 --- a/addons/report_sale/i18n/sv_SV.po +++ b/addons/report_sale/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,47 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" +msgstr "" + +#. module: report_sale +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_sale @@ -55,6 +83,7 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -67,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -87,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -95,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -111,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -136,24 +182,37 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_80 msgid "Reporting" -msgstr "Rapportering" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 @@ -161,8 +220,8 @@ msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -183,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -205,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -217,15 +294,38 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_so_pipeline +#: view:sale.order:0 +msgid "Sales by State" +msgstr "" + +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/tr_TR.po b/addons/report_sale/i18n/tr_TR.po index a0ab3282c0f..fda2cb51708 100644 --- a/addons/report_sale/i18n/tr_TR.po +++ b/addons/report_sale/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:49+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:49+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Görüntüleme mimarisi için Geçersiz XML" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/uk_UK.po b/addons/report_sale/i18n/uk_UK.po index b4461776270..5ee4065937b 100644 --- a/addons/report_sale/i18n/uk_UK.po +++ b/addons/report_sale/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "Назва об'єкту має починатися з x_ і не мі #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "Неправильний XML для Архітектури Вигляду!" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "Звіти" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/zh_CN.po b/addons/report_sale/i18n/zh_CN.po index e3795725ca2..29bd8bef112 100644 --- a/addons/report_sale/i18n/zh_CN.po +++ b/addons/report_sale/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "报表" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_sale/i18n/zh_TW.po b/addons/report_sale/i18n/zh_TW.po index 9f7bc677605..d790118d085 100644 --- a/addons/report_sale/i18n/zh_TW.po +++ b/addons/report_sale/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+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: report_sale +#: selection:report.sale.order.created,state:0 +msgid "In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,price_average:0 #: field:report.sale.order.product,price_average:0 @@ -23,24 +28,42 @@ msgstr "" #. module: report_sale #: field:report.sale.order.category,state:0 +#: field:report.sale.order.created,state:0 #: field:report.sale.order.product,state:0 msgid "Order State" msgstr "" +#. module: report_sale +#: model:ir.model,name:report_sale.model_report_sale_order_created +msgid "Report of Created Sale Order" +msgstr "" + #. module: report_sale #: view:report.sale.order.category:0 msgid "Sales Orders by category" msgstr "" +#. module: report_sale +#: model:ir.report.custom,name:report_sale.ir_report_custom_6 +#: model:ir.report.custom,title:report_sale.ir_report_custom_6 +msgid "Monthly cumulated sales turnover over one year" +msgstr "" + #. module: report_sale #: model:ir.model,name:report_sale.model_report_sale_order_product msgid "Sales Orders by Products" msgstr "" #. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" +#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 +msgid "Monthly Sales Turnover Over One Year" +msgstr "" + +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_product_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_product +#: view:report.turnover.per.product:0 +msgid "Turnover Per Product" msgstr "" #. module: report_sale @@ -60,6 +83,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Waiting Schedule" msgstr "" @@ -72,6 +96,7 @@ msgstr "" #. module: report_sale #: field:report.sale.order.product,product_id:0 +#: field:report.turnover.per.product,product_id:0 msgid "Product" msgstr "" @@ -92,6 +117,11 @@ msgstr "" msgid "Sales by Product (this month)" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_shipping_id:0 +msgid "Shipping Address" +msgstr "" + #. module: report_sale #: model:ir.report.custom,name:report_sale.ir_report_custom_4 #: model:ir.report.custom,title:report_sale.ir_report_custom_4 @@ -100,6 +130,7 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Invoice Exception" msgstr "" @@ -116,12 +147,22 @@ msgstr "" msgid "Sales by Category of Products" msgstr "" +#. module: report_sale +#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 +msgid "Monthly Cumulated Sales Turnover Over One Year" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,quantity:0 #: field:report.sale.order.product,quantity:0 msgid "# of Products" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,name:0 +msgid "Order Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all #: model:ir.ui.menu,name:report_sale.menu_report_order_product_all @@ -141,18 +182,24 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Quotation" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,partner_id:0 +msgid "Customer" +msgstr "" + #. module: report_sale #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" +#: model:ir.actions.act_window,name:report_sale.action_view_created_sale_order_dashboard +msgid "Created Sale Orders" msgstr "" #. module: report_sale @@ -160,14 +207,21 @@ msgstr "" msgid "Reporting" msgstr "" +#. module: report_sale +#: model:ir.actions.act_window,name:report_sale.action_turnover_month_tree +#: model:ir.model,name:report_sale.model_report_turnover_per_month +#: view:report.turnover.per.month:0 +msgid "Turnover Per Month" +msgstr "" + #. module: report_sale #: model:ir.ui.menu,name:report_sale.ir_ui_menu2 msgid "Daily Sales Turnover Over One Year" msgstr "" #. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" +#: field:report.sale.order.created,date_order:0 +msgid "Date Ordered" msgstr "" #. module: report_sale @@ -188,16 +242,28 @@ msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Shipping Exception" msgstr "" +#. module: report_sale +#: field:report.turnover.per.month,turnover:0 +#: field:report.turnover.per.product,turnover:0 +msgid "Total Turnover" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 #: selection:report.sale.order.product,state:0 msgid "In progress" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Reference" +msgstr "" + #. module: report_sale #: model:ir.actions.act_window,name:report_sale.action_order_category_tree #: model:ir.ui.menu,name:report_sale.menu_report_order_category @@ -210,9 +276,15 @@ msgstr "" msgid "Daily sales turnover over one year" msgstr "" +#. module: report_sale +#: selection:report.sale.order.created,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: report_sale #: field:report.sale.order.category,name:0 #: field:report.sale.order.product,name:0 +#: field:report.turnover.per.month,name:0 msgid "Month" msgstr "" @@ -222,14 +294,26 @@ msgstr "" msgid "# of Lines" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,create_date:0 +msgid "Create Date" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Done" msgstr "" +#. module: report_sale +#: view:report.sale.order.created:0 +msgid "Created Sales orders" +msgstr "" + #. module: report_sale #: selection:report.sale.order.category,state:0 +#: selection:report.sale.order.created,state:0 #: selection:report.sale.order.product,state:0 msgid "Cancel" msgstr "" @@ -240,3 +324,8 @@ msgstr "" msgid "Sales by State" msgstr "" +#. module: report_sale +#: field:report.sale.order.created,amount_untaxed:0 +msgid "Untaxed Amount" +msgstr "" + diff --git a/addons/report_task/i18n/ar_AR.po b/addons/report_task/i18n/ar_AR.po index e69de29bb2d..61974556d40 100644 --- a/addons/report_task/i18n/ar_AR.po +++ b/addons/report_task/i18n/ar_AR.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/bg_BG.po b/addons/report_task/i18n/bg_BG.po index e69de29bb2d..acb32340d39 100644 --- a/addons/report_task/i18n/bg_BG.po +++ b/addons/report_task/i18n/bg_BG.po @@ -0,0 +1,160 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Справки" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Невалиден XML за преглед \ No newline at end of file diff --git a/addons/report_task/i18n/bs_BS.po b/addons/report_task/i18n/bs_BS.po index e69de29bb2d..3b190d91ab5 100644 --- a/addons/report_task/i18n/bs_BS.po +++ b/addons/report_task/i18n/bs_BS.po @@ -0,0 +1,168 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 \ No newline at end of file diff --git a/addons/report_task/i18n/ca_ES.po b/addons/report_task/i18n/ca_ES.po index e69de29bb2d..3a6e3d14ab1 100644 --- a/addons/report_task/i18n/ca_ES.po +++ b/addons/report_task/i18n/ca_ES.po @@ -0,0 +1,164 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Informe" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML invàlid per a la definició de la vista!" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +ms \ No newline at end of file diff --git a/addons/report_task/i18n/cs_CS.po b/addons/report_task/i18n/cs_CS.po index e69de29bb2d..d98ab54cdd4 100644 --- a/addons/report_task/i18n/cs_CS.po +++ b/addons/report_task/i18n/cs_CS.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/cs_CZ.po b/addons/report_task/i18n/cs_CZ.po index e69de29bb2d..02db1718e59 100644 --- a/addons/report_task/i18n/cs_CZ.po +++ b/addons/report_task/i18n/cs_CZ.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/de_DE.po b/addons/report_task/i18n/de_DE.po index e69de29bb2d..d1a35e7a532 100644 --- a/addons/report_task/i18n/de_DE.po +++ b/addons/report_task/i18n/de_DE.po @@ -0,0 +1,164 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Berichtswesen" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +ms \ No newline at end of file diff --git a/addons/report_task/i18n/es_AR.po b/addons/report_task/i18n/es_AR.po index e69de29bb2d..bd1cd101a2b 100644 --- a/addons/report_task/i18n/es_AR.po +++ b/addons/report_task/i18n/es_AR.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/es_ES.po b/addons/report_task/i18n/es_ES.po index e69de29bb2d..cde99c2f423 100644 --- a/addons/report_task/i18n/es_ES.po +++ b/addons/report_task/i18n/es_ES.po @@ -0,0 +1,163 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Informe" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML inválido para la definición de la vista!" + +#. module: report_task +#: field:report.closed.task,delay_hours: \ No newline at end of file diff --git a/addons/report_task/i18n/et_EE.po b/addons/report_task/i18n/et_EE.po index e69de29bb2d..0a679040d9d 100644 --- a/addons/report_task/i18n/et_EE.po +++ b/addons/report_task/i18n/et_EE.po @@ -0,0 +1,163 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Aruandlus" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" + +#. module: report_task +#: field:report.close \ No newline at end of file diff --git a/addons/report_task/i18n/fr_FR.po b/addons/report_task/i18n/fr_FR.po index e69de29bb2d..ea7f38f8aaa 100644 --- a/addons/report_task/i18n/fr_FR.po +++ b/addons/report_task/i18n/fr_FR.po @@ -0,0 +1,163 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Reporting" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valide pour l'architecture de la vue" + +#. module: report_task +#: field:report.closed.task,delay_hours \ No newline at end of file diff --git a/addons/report_task/i18n/hr_HR.po b/addons/report_task/i18n/hr_HR.po index e69de29bb2d..a4d56b24e64 100644 --- a/addons/report_task/i18n/hr_HR.po +++ b/addons/report_task/i18n/hr_HR.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/hu_HU.po b/addons/report_task/i18n/hu_HU.po index e69de29bb2d..6e21db2458e 100644 --- a/addons/report_task/i18n/hu_HU.po +++ b/addons/report_task/i18n/hu_HU.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/it_IT.po b/addons/report_task/i18n/it_IT.po index e69de29bb2d..f65e2e946b1 100644 --- a/addons/report_task/i18n/it_IT.po +++ b/addons/report_task/i18n/it_IT.po @@ -0,0 +1,163 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Reportistica" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per Visualizzazione Architettura!" + +#. module: report_task +#: field:report.closed.task,delay_hou \ No newline at end of file diff --git a/addons/report_task/i18n/lt_LT.po b/addons/report_task/i18n/lt_LT.po index e69de29bb2d..75bde5dddb0 100644 --- a/addons/report_task/i18n/lt_LT.po +++ b/addons/report_task/i18n/lt_LT.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/nl_BE.po b/addons/report_task/i18n/nl_BE.po index e69de29bb2d..c64f59f7c3a 100644 --- a/addons/report_task/i18n/nl_BE.po +++ b/addons/report_task/i18n/nl_BE.po @@ -0,0 +1,168 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: fiel \ No newline at end of file diff --git a/addons/report_task/i18n/nl_NL.po b/addons/report_task/i18n/nl_NL.po index e69de29bb2d..976d1d92430 100644 --- a/addons/report_task/i18n/nl_NL.po +++ b/addons/report_task/i18n/nl_NL.po @@ -0,0 +1,165 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Rapportering" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +m \ No newline at end of file diff --git a/addons/report_task/i18n/pl_PL.po b/addons/report_task/i18n/pl_PL.po index e69de29bb2d..bb722d55e92 100644 --- a/addons/report_task/i18n/pl_PL.po +++ b/addons/report_task/i18n/pl_PL.po @@ -0,0 +1,163 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Raportowanie" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML niewłaściwy dla tej architektury wyświetlania!" + +#. module: report_task +#: field:report.closed.task, \ No newline at end of file diff --git a/addons/report_task/i18n/pt_BR.po b/addons/report_task/i18n/pt_BR.po index e69de29bb2d..a8ad87359a1 100644 --- a/addons/report_task/i18n/pt_BR.po +++ b/addons/report_task/i18n/pt_BR.po @@ -0,0 +1,164 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Relatórios" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalido XML para Arquitetura da View" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Del \ No newline at end of file diff --git a/addons/report_task/i18n/pt_PT.po b/addons/report_task/i18n/pt_PT.po index e69de29bb2d..ef4236e1746 100644 --- a/addons/report_task/i18n/pt_PT.po +++ b/addons/report_task/i18n/pt_PT.po @@ -0,0 +1,164 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Relatório" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML inválido para a arquitectura de vista" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid \ No newline at end of file diff --git a/addons/report_task/i18n/report_task.pot b/addons/report_task/i18n/report_task.pot index e69de29bb2d..00e7153821e 100644 --- a/addons/report_task/i18n/report_task.pot +++ b/addons/report_task/i18n/report_task.pot @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/ro_RO.po b/addons/report_task/i18n/ro_RO.po index e69de29bb2d..3c91fac8246 100644 --- a/addons/report_task/i18n/ro_RO.po +++ b/addons/report_task/i18n/ro_RO.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_task/i18n/ru_RU.po b/addons/report_task/i18n/ru_RU.po index e69de29bb2d..97ee15a5ba5 100644 --- a/addons/report_task/i18n/ru_RU.po +++ b/addons/report_task/i18n/ru_RU.po @@ -0,0 +1,160 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Отчетность" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильный XML д \ No newline at end of file diff --git a/addons/report_task/i18n/sl_SL.po b/addons/report_task/i18n/sl_SL.po index e69de29bb2d..fcee78dbcec 100644 --- a/addons/report_task/i18n/sl_SL.po +++ b/addons/report_task/i18n/sl_SL.po @@ -0,0 +1,164 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Poročanje" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neveljaven XML za arhitekturo pogleda." + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hou \ No newline at end of file diff --git a/addons/report_task/i18n/sv_SE.po b/addons/report_task/i18n/sv_SE.po index e69de29bb2d..d6855b2ee9a 100644 --- a/addons/report_task/i18n/sv_SE.po +++ b/addons/report_task/i18n/sv_SE.po @@ -0,0 +1,168 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: \ No newline at end of file diff --git a/addons/report_task/i18n/sv_SV.po b/addons/report_task/i18n/sv_SV.po index e69de29bb2d..4d2993b778a 100644 --- a/addons/report_task/i18n/sv_SV.po +++ b/addons/report_task/i18n/sv_SV.po @@ -0,0 +1,168 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: \ No newline at end of file diff --git a/addons/report_task/i18n/tr_TR.po b/addons/report_task/i18n/tr_TR.po index e69de29bb2d..c9a97cf51f5 100644 --- a/addons/report_task/i18n/tr_TR.po +++ b/addons/report_task/i18n/tr_TR.po @@ -0,0 +1,168 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Görüntüleme mimarisi için Geçersiz XML" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 \ No newline at end of file diff --git a/addons/report_task/i18n/uk_UK.po b/addons/report_task/i18n/uk_UK.po index e69de29bb2d..35f3047311a 100644 --- a/addons/report_task/i18n/uk_UK.po +++ b/addons/report_task/i18n/uk_UK.po @@ -0,0 +1,160 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "Звіти" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури \ No newline at end of file diff --git a/addons/report_task/i18n/zh_CN.po b/addons/report_task/i18n/zh_CN.po index e69de29bb2d..83e911caa3f 100644 --- a/addons/report_task/i18n/zh_CN.po +++ b/addons/report_task/i18n/zh_CN.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "报表" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module \ No newline at end of file diff --git a/addons/report_task/i18n/zh_TW.po b/addons/report_task/i18n/zh_TW.po index e69de29bb2d..41885f66f03 100644 --- a/addons/report_task/i18n/zh_TW.po +++ b/addons/report_task/i18n/zh_TW.po @@ -0,0 +1,172 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * report_task +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_task +#: selection:report.closed.task,state:0 +msgid "In Progress" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_project_task +#: model:ir.ui.menu,name:report_task.menu_project_task_user_tree +#: view:report.task.user.pipeline.open:0 +msgid "Tasks by User" +msgstr "" + +#. module: report_task +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: report_task +#: field:report.closed.task,remaining_hours:0 +msgid "Remaining Hours" +msgstr "" + +#. module: report_task +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "No Task" +msgstr "" + +#. module: report_task +#: model:ir.module.module,shortdesc:report_task.module_meta_information +msgid "Report on tasks by user for projects" +msgstr "" + +#. module: report_task +#: view:report.closed.task:0 +msgid "Delay" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very Low" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Draft" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Low" +msgstr "" + +#. module: report_task +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: report_task +#: field:report.closed.task,name:0 +msgid "Task summary" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Pending" +msgstr "" + +#. module: report_task +#: field:report.closed.task,state:0 +#: field:report.task.user.pipeline.open,task_state:0 +msgid "Status" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Medium" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_report_timesheet_task_user +#: model:ir.ui.menu,name:report_task.menu_timesheet_task_user +msgid "Timesheet / Task Hours Per Month" +msgstr "" + +#. module: report_task +#: field:report.closed.task,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: report_task +#: field:report.closed.task,priority:0 +msgid "Importance" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_task +#: model:ir.ui.menu,name:report_task.next_id_57 +msgid "Reporting" +msgstr "" + +#. module: report_task +#: model:ir.module.module,description:report_task.module_meta_information +msgid "Gives statistics on tasks by user on projects to check the pipeline of users." +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,user_id:0 +#: field:report.timesheet.task.user,user_id:0 +msgid "User" +msgstr "" + +#. module: report_task +#: model:ir.actions.act_window,name:report_task.action_closed_task_board +msgid "Task Closed Within Past 15 Days" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,priority:0 +msgid "Very urgent" +msgstr "" + +#. module: report_task +#: selection:report.closed.task,state:0 +#: selection:report.task.user.pipeline.open,task_state:0 +msgid "Done" +msgstr "" + +#. module: report_task +#: field:report.task.user.pipeline.open,task_hrs:0 +#: field:report.timesheet.task.user,task_hrs:0 +msgid "Task Hours" +msgstr "" + +#. module: report_task +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: report_task +#: field:report.closed.task,delay_hours:0 +msgid "Delay Hours" +msgstr "" + +#. module: report_task +#: field:report.closed.task,project_id:0 +msgid "Project" +msgstr "" + +#. module: repo \ No newline at end of file diff --git a/addons/report_timesheet/i18n/ar_AR.po b/addons/report_timesheet/i18n/ar_AR.po index 8ca2105af9e..f57f0e6074c 100644 --- a/addons/report_timesheet/i18n/ar_AR.po +++ b/addons/report_timesheet/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/bg_BG.po b/addons/report_timesheet/i18n/bg_BG.po index 75b6d2e7499..e29e0486f96 100644 --- a/addons/report_timesheet/i18n/bg_BG.po +++ b/addons/report_timesheet/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/bs_BS.po b/addons/report_timesheet/i18n/bs_BS.po index 398f3a38e8b..0db59a10c7d 100644 --- a/addons/report_timesheet/i18n/bs_BS.po +++ b/addons/report_timesheet/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/ca_ES.po b/addons/report_timesheet/i18n/ca_ES.po index b17bd8872a6..caba7c105b3 100644 --- a/addons/report_timesheet/i18n/ca_ES.po +++ b/addons/report_timesheet/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Costos a facturar" msgid "My Timesheet of the Month" msgstr "El meu full de serveis del mes" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Fulls de serveis per compte" msgid "Timesheets to invoice" msgstr "Fulls de serveis a facturar" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Fulls de serveis per dia" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Full de serveis diària per compte" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Full de serveis per dia" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Data" msgid "Timesheet by invoice" msgstr "Full de serveis per factura" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Quantitat" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Full de serveis diària per compte" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Fulls de serveis per dia" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Projecte" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Quantitat" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Full de serveis per dia" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Mes" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Director" msgid "Cost" msgstr "Cost" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/cs_CS.po b/addons/report_timesheet/i18n/cs_CS.po index 5c9d4b0f506..ccba3433522 100644 --- a/addons/report_timesheet/i18n/cs_CS.po +++ b/addons/report_timesheet/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,11 +26,22 @@ msgstr "" msgid "Timesheet by user" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_all +#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_all +msgid "Timesheet by Account" +msgstr "" + #. module: report_timesheet #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: report_timesheet +#: view:report_timesheet.account:0 +msgid "Timesheet by account" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_invoice #: model:ir.model,name:report_timesheet.model_report_timesheet_invoice @@ -43,14 +54,20 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" msgstr "" #. module: report_timesheet -#: view:report_timesheet.account:0 -msgid "Timesheet by account" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_timesheet @@ -63,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -70,8 +92,14 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,name:0 +#: field:report.random.timesheet,name:0 +msgid "Description" msgstr "" #. module: report_timesheet @@ -81,12 +109,13 @@ msgid "Timesheet per account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_all -msgid "Timesheet by Account" +#: model:ir.module.module,shortdesc:report_timesheet.module_meta_information +msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 +#: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 msgid "Date" @@ -97,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -109,6 +148,13 @@ msgid "My timesheets by account" msgstr "" #. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_random_timesheet +msgid "Random Timesheet Report" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 +#: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 #: field:report_timesheet.invoice,user_id:0 @@ -122,8 +168,8 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_timesheet -#: model:ir.module.module,shortdesc:report_timesheet.module_meta_information -msgid "Timesheet - Reporting" +#: view:report.random.timesheet:0 +msgid "Random Timesheets" msgstr "" #. module: report_timesheet @@ -132,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -141,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -159,11 +210,23 @@ msgid "Timesheet by Invoice" msgstr "" #. module: report_timesheet -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_board +msgid "Random Timesheet" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -190,6 +253,8 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 +#: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 msgid "Analytic Account" @@ -205,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/cs_CZ.po b/addons/report_timesheet/i18n/cs_CZ.po index d8595baf807..67827abf609 100644 --- a/addons/report_timesheet/i18n/cs_CZ.po +++ b/addons/report_timesheet/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/de_DE.po b/addons/report_timesheet/i18n/de_DE.po index 3c0afeb7d2e..2d06cd01792 100644 --- a/addons/report_timesheet/i18n/de_DE.po +++ b/addons/report_timesheet/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Abzurechnende Kosten" msgid "My Timesheet of the Month" msgstr "Monatliche Zeiterfassung" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Zeiterfassungen pro Konto" msgid "Timesheets to invoice" msgstr "Abrechenbare Zeiten" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Zeiterfassung pro Tag" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Tägliche Zeiterfassung nach Konto" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Tägliche Zeiterfassung" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "Arbeitszeitaufzeichnung - Berichte" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Datum" msgid "Timesheet by invoice" msgstr "Zeiterfassung nach Rechnung" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Menge" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Tägliche Zeiterfassung nach Konto" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Zeiterfassung pro Tag" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Projektportal" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Menge" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Tägliche Zeiterfassung" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -219,6 +254,7 @@ msgid "Month" msgstr "Monat" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -235,6 +271,11 @@ msgstr "Manager" msgid "Cost" msgstr "Kosten" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/es_AR.po b/addons/report_timesheet/i18n/es_AR.po index 7925e6d0f59..236234cd81b 100644 --- a/addons/report_timesheet/i18n/es_AR.po +++ b/addons/report_timesheet/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/es_ES.po b/addons/report_timesheet/i18n/es_ES.po index 77998eaadee..4c5e85e7d14 100644 --- a/addons/report_timesheet/i18n/es_ES.po +++ b/addons/report_timesheet/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Costos a facturar" msgid "My Timesheet of the Month" msgstr "Mi hoja de servicios del mes" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Hojas de servicios por cuenta" msgid "Timesheets to invoice" msgstr "Hojas de servicios a facturar" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Hojas de servicios por día" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Hoja de servicios diaria por cuenta" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Hoja de servicios por día" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Fecha" msgid "Timesheet by invoice" msgstr "Hoja de servicios por factura" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Cantidad" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Hoja de servicios diaria por cuenta" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Hojas de servicios por día" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Proyecto" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Cantidad" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Hoja de servicios por día" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Mes" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Responsable" msgid "Cost" msgstr "Coste" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/et_EE.po b/addons/report_timesheet/i18n/et_EE.po index 4b0e3c2fdc8..5a8c8b13791 100644 --- a/addons/report_timesheet/i18n/et_EE.po +++ b/addons/report_timesheet/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Kulud arveldamiseks" msgid "My Timesheet of the Month" msgstr "Minu kuu tööajakaart" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -62,7 +68,7 @@ msgstr "Tööajalehed" #. module: report_timesheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timehsheet_account @@ -74,6 +80,11 @@ msgstr "Tööajakaardid konto kohta" msgid "Timesheets to invoice" msgstr "Tääajakaardid arveldamiseks" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Tööajakaardid päeva kohta" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,14 +92,15 @@ msgid "Daily Timesheet by Account" msgstr "Igapäevane tööajakaart konto järgi" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Tööajakaart päeva kohta" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" -msgstr "" +msgstr "Kirjeldus" #. module: report_timesheet #: model:ir.model,name:report_timesheet.model_report_timesheet_account @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "Tööajaleht - Aruandlus" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Kuupäev" msgid "Timesheet by invoice" msgstr "Tööajakaart arveldamiseks" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Kogus" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -127,9 +150,10 @@ msgstr "Minu tööajakaardid konto järgi" #. module: report_timesheet #: model:ir.model,name:report_timesheet.model_report_random_timesheet msgid "Random Timesheet Report" -msgstr "" +msgstr "Juhuslik tööajalehe aruanne" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -146,7 +170,7 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: report_timesheet #: view:report.random.timesheet:0 msgid "Random Timesheets" -msgstr "" +msgstr "Juhuslikud tööajalehed" #. module: report_timesheet #: view:report_timesheet.account.date:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Igapäevane tööajakaart konto järgi" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Tööajakaardid päeva kohta" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Projekt" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -183,16 +212,22 @@ msgstr "Tööajakaart arve järgi" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_board msgid "Random Timesheet" +msgstr "Juhuslik tööajaleht" + +#. module: report_timesheet +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Kogus" +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Tööajakaart päeva kohta" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -219,6 +254,7 @@ msgid "Month" msgstr "Kuu" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -235,6 +271,11 @@ msgstr "Haldur" msgid "Cost" msgstr "Kulu" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/fr_FR.po b/addons/report_timesheet/i18n/fr_FR.po index 54cee08a719..f75b2bdd463 100644 --- a/addons/report_timesheet/i18n/fr_FR.po +++ b/addons/report_timesheet/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Coûts à facturer" msgid "My Timesheet of the Month" msgstr "Mes feuilles de présence du mois" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Feuille de présence par compte" msgid "Timesheets to invoice" msgstr "Timesheet à facturer" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "feuille de présence par jour" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Feuilles de présences jounalière par Compte" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Feuille de présence par jour" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Date" msgid "Timesheet by invoice" msgstr "Timesheets par facture" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Quantité" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Timesheet journalière par compte" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "feuille de présence par jour" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Projet" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Quantité" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Feuille de présence par jour" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Mois" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Manager" msgid "Cost" msgstr "Coût" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/hr_HR.po b/addons/report_timesheet/i18n/hr_HR.po index b1a8e9eef4a..9b6c369c586 100644 --- a/addons/report_timesheet/i18n/hr_HR.po +++ b/addons/report_timesheet/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/hu_HU.po b/addons/report_timesheet/i18n/hu_HU.po index a8734e58a7a..1037aab6abf 100644 --- a/addons/report_timesheet/i18n/hu_HU.po +++ b/addons/report_timesheet/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/it_IT.po b/addons/report_timesheet/i18n/it_IT.po index 74d6793dbc6..d0f71102445 100644 --- a/addons/report_timesheet/i18n/it_IT.po +++ b/addons/report_timesheet/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Costi da Fatturare" msgid "My Timesheet of the Month" msgstr "I Miei Orari di Lavoro del mese" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Orari di Lavoro da Contabilità" msgid "Timesheets to invoice" msgstr "Orari di Lavoro da Fatturare" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Orari di Lavoro per giorno" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Orari di Lavoro giornalieri da Contabilità" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Orari di Lavoro giornalieri" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Data" msgid "Timesheet by invoice" msgstr "Orari di Lavoro da Fattura" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Quantità" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Orario di Lavoro giornaliero da Contabilità" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Orari di Lavoro per giorno" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Progetto" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Quantità" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Orari di Lavoro giornalieri" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Mese" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Responsabile" msgid "Cost" msgstr "Costo" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/lt_LT.po b/addons/report_timesheet/i18n/lt_LT.po index 9cdd8b94b5c..c5b45b4b48d 100644 --- a/addons/report_timesheet/i18n/lt_LT.po +++ b/addons/report_timesheet/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/nl_BE.po b/addons/report_timesheet/i18n/nl_BE.po index ff65055aeb3..251b0f51d20 100644 --- a/addons/report_timesheet/i18n/nl_BE.po +++ b/addons/report_timesheet/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/nl_NL.po b/addons/report_timesheet/i18n/nl_NL.po index 1e1e970d7b0..102c9d0f52b 100644 --- a/addons/report_timesheet/i18n/nl_NL.po +++ b/addons/report_timesheet/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Nog te ontvangen facturen" msgid "My Timesheet of the Month" msgstr "Mijn urenstaat van de maand" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Urenstaten per rekening" msgid "Timesheets to invoice" msgstr "Urenstaten voor facturatie" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Urenstaat per dag" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Dagelijkse urenstaat per rekening" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Urenstaat per dag" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "Urenstaat - Rapportage" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Datum" msgid "Timesheet by invoice" msgstr "Urenstaat op factuur" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Aantal" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Dagelijkse urenstaat op rekening" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Urenstaat per dag" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Project" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Aantal" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Urenstaat per dag" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -219,6 +254,7 @@ msgid "Month" msgstr "Maand" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -235,6 +271,11 @@ msgstr "Manager" msgid "Cost" msgstr "Kosten" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/pl_PL.po b/addons/report_timesheet/i18n/pl_PL.po index d43614e6040..0266ebe6e75 100644 --- a/addons/report_timesheet/i18n/pl_PL.po +++ b/addons/report_timesheet/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/pt_BR.po b/addons/report_timesheet/i18n/pt_BR.po index a897e173635..75d4c72fbf8 100644 --- a/addons/report_timesheet/i18n/pt_BR.po +++ b/addons/report_timesheet/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/pt_PT.po b/addons/report_timesheet/i18n/pt_PT.po index ff69b65272d..99a23b71170 100644 --- a/addons/report_timesheet/i18n/pt_PT.po +++ b/addons/report_timesheet/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Custos a facturar" msgid "My Timesheet of the Month" msgstr "Meu horário do mês" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Horários por conta" msgid "Timesheets to invoice" msgstr "Horário a facturar" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Horários por dia" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Horário diário por conta" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Horários por dia" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Data" msgid "Timesheet by invoice" msgstr "Horário por factura" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Quantidade" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Horário diários por conta" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Horários por dia" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Projecto" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Quantidade" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Horários por dia" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Mês" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Gestor" msgid "Cost" msgstr "Custo" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/report_timesheet.pot b/addons/report_timesheet/i18n/report_timesheet.pot index 22e5cb51b3a..774b1719d5a 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/ro_RO.po b/addons/report_timesheet/i18n/ro_RO.po index d56c74a965b..cf144a9bc28 100644 --- a/addons/report_timesheet/i18n/ro_RO.po +++ b/addons/report_timesheet/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/ru_RU.po b/addons/report_timesheet/i18n/ru_RU.po index 19e9ed0aa05..4822d4a0238 100644 --- a/addons/report_timesheet/i18n/ru_RU.po +++ b/addons/report_timesheet/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Расходы для выставления счетов" msgid "My Timesheet of the Month" msgstr "Мой табель за месяц" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Табели по счетам" msgid "Timesheets to invoice" msgstr "Табели для выставления счетов" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Табели по дням" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Дневной табель по счетам" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Табель по дням" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Дата" msgid "Timesheet by invoice" msgstr "Табели по счетам" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Количество" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Дневные табели по счетам" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Табели по дням" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Проект" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Количество" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Табель по дням" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Месяц" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Начальник" msgid "Cost" msgstr "Стоимость" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/sl_SL.po b/addons/report_timesheet/i18n/sl_SL.po index 5d6c6191324..b6a911943bc 100644 --- a/addons/report_timesheet/i18n/sl_SL.po +++ b/addons/report_timesheet/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/sv_SE.po b/addons/report_timesheet/i18n/sv_SE.po index a84282f2530..7a43999c4c0 100644 --- a/addons/report_timesheet/i18n/sv_SE.po +++ b/addons/report_timesheet/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/sv_SV.po b/addons/report_timesheet/i18n/sv_SV.po index 1ac21b8202a..b8e29670be6 100644 --- a/addons/report_timesheet/i18n/sv_SV.po +++ b/addons/report_timesheet/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,11 +26,22 @@ msgstr "" msgid "Timesheet by user" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_all +#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_all +msgid "Timesheet by Account" +msgstr "" + #. module: report_timesheet #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#. module: report_timesheet +#: view:report_timesheet.account:0 +msgid "Timesheet by account" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_invoice #: model:ir.model,name:report_timesheet.model_report_timesheet_invoice @@ -43,14 +54,20 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" msgstr "" #. module: report_timesheet -#: view:report_timesheet.account:0 -msgid "Timesheet by account" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: report_timesheet @@ -63,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -70,8 +92,14 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,name:0 +#: field:report.random.timesheet,name:0 +msgid "Description" msgstr "" #. module: report_timesheet @@ -81,12 +109,13 @@ msgid "Timesheet per account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_all -msgid "Timesheet by Account" +#: model:ir.module.module,shortdesc:report_timesheet.module_meta_information +msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 +#: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 msgid "Date" @@ -97,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -109,6 +148,13 @@ msgid "My timesheets by account" msgstr "" #. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_random_timesheet +msgid "Random Timesheet Report" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 +#: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 #: field:report_timesheet.invoice,user_id:0 @@ -122,8 +168,8 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: report_timesheet -#: model:ir.module.module,shortdesc:report_timesheet.module_meta_information -msgid "Timesheet - Reporting" +#: view:report.random.timesheet:0 +msgid "Random Timesheets" msgstr "" #. module: report_timesheet @@ -132,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -141,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -159,11 +210,23 @@ msgid "Timesheet by Invoice" msgstr "" #. module: report_timesheet -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_board +msgid "Random Timesheet" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -190,6 +253,8 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 +#: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 msgid "Analytic Account" @@ -205,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/tr_TR.po b/addons/report_timesheet/i18n/tr_TR.po index 4de4a490266..97e2bdd8a51 100644 --- a/addons/report_timesheet/i18n/tr_TR.po +++ b/addons/report_timesheet/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/uk_UK.po b/addons/report_timesheet/i18n/uk_UK.po index b106d40a93c..276ebd23c24 100644 --- a/addons/report_timesheet/i18n/uk_UK.po +++ b/addons/report_timesheet/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "Кошти для інвойсування" msgid "My Timesheet of the Month" msgstr "Мій табель за місяць" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "Табелі за рахунками" msgid "Timesheets to invoice" msgstr "Табель за накладними" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "Табелі за днями" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "Щоденний табель за рахунками" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "Табель за днем" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" +msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "Дата" msgid "Timesheet by invoice" msgstr "Табель за накладними" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "Кількість" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,15 +178,20 @@ msgid "Daily timesheet by account" msgstr "Щоденний табель за рахунком" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "Табелі за днями" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" +msgstr "" #. module: report_timesheet #: field:report_timesheet.invoice,account_id:0 msgid "Project" msgstr "Проект" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,13 +215,19 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "Кількість" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" +msgstr "Табель за днем" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my @@ -218,6 +253,7 @@ msgid "Month" msgstr "Місяць" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "Менеджер" msgid "Cost" msgstr "Витрати" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/zh_CN.po b/addons/report_timesheet/i18n/zh_CN.po index e9a145c2eb4..b458a5d83c2 100644 --- a/addons/report_timesheet/i18n/zh_CN.po +++ b/addons/report_timesheet/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/report_timesheet/i18n/zh_TW.po b/addons/report_timesheet/i18n/zh_TW.po index 23b4353be26..6252e08cfe2 100644 --- a/addons/report_timesheet/i18n/zh_TW.po +++ b/addons/report_timesheet/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,6 +54,12 @@ msgstr "" msgid "My Timesheet of the Month" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.action_random_timesheet_lines_board +#: model:ir.model,name:report_timesheet.model_random_timesheet_lines +msgid "Random Timesheet Lines" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account msgid "Timesheets" @@ -74,6 +80,11 @@ msgstr "" msgid "Timesheets to invoice" msgstr "" +#. module: report_timesheet +#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user +msgid "Timesheets per day" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all @@ -81,11 +92,12 @@ msgid "Daily Timesheet by Account" msgstr "" #. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" +#: field:random.timesheet.lines,product_id:0 +msgid "Product" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,name:0 #: field:report.random.timesheet,name:0 msgid "Description" msgstr "" @@ -102,6 +114,7 @@ msgid "Timesheet - Reporting" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,date:0 #: field:report.random.timesheet,date:0 #: field:report_timesheet.account.date,name:0 #: field:report_timesheet.user,name:0 @@ -113,6 +126,16 @@ msgstr "" msgid "Timesheet by invoice" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,quantity:0 +#: field:report.random.timesheet,quantity:0 +#: field:report_timesheet.account,quantity:0 +#: field:report_timesheet.account.date,quantity:0 +#: field:report_timesheet.invoice,quantity:0 +#: field:report_timesheet.user,quantity:0 +msgid "Quantity" +msgstr "" + #. module: report_timesheet #: model:ir.ui.menu,name:report_timesheet.next_id_69 msgid "This Month" @@ -130,6 +153,7 @@ msgid "Random Timesheet Report" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,user_id:0 #: field:report.random.timesheet,user_id:0 #: field:report_timesheet.account,user_id:0 #: field:report_timesheet.account.date,user_id:0 @@ -154,8 +178,8 @@ msgid "Daily timesheet by account" msgstr "" #. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" +#: view:random.timesheet.lines:0 +msgid "Random Timesheets Lines" msgstr "" #. module: report_timesheet @@ -163,6 +187,11 @@ msgstr "" msgid "Project" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,amount:0 +msgid "Amount" +msgstr "" + #. module: report_timesheet #: field:report_timesheet.invoice,amount_invoice:0 msgid "To invoice" @@ -186,12 +215,18 @@ msgid "Random Timesheet" msgstr "" #. module: report_timesheet -#: field:report.random.timesheet,quantity:0 -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" +#: field:random.timesheet.lines,to_invoice:0 +msgid "Invoicing" +msgstr "" + +#. module: report_timesheet +#: field:random.timesheet.lines,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: report_timesheet +#: model:ir.model,name:report_timesheet.model_report_timesheet_user +msgid "Timesheet per day" msgstr "" #. module: report_timesheet @@ -218,6 +253,7 @@ msgid "Month" msgstr "" #. module: report_timesheet +#: field:random.timesheet.lines,analytic_account_id:0 #: field:report.random.timesheet,analytic_account_id:0 #: field:report_timesheet.account,account_id:0 #: field:report_timesheet.account.date,account_id:0 @@ -234,6 +270,11 @@ msgstr "" msgid "Cost" msgstr "" +#. module: report_timesheet +#: field:random.timesheet.lines,uom_id:0 +msgid "UoM" +msgstr "" + #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat #: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user diff --git a/addons/sale/i18n/ar_AR.po b/addons/sale/i18n/ar_AR.po index 34dc85a6c8a..d0156f449de 100644 --- a/addons/sale/i18n/ar_AR.po +++ b/addons/sale/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/bg_BG.po b/addons/sale/i18n/bg_BG.po index 651664e287d..c7237f11864 100644 --- a/addons/sale/i18n/bg_BG.po +++ b/addons/sale/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/bs_BS.po b/addons/sale/i18n/bs_BS.po index 117382d1dc1..d4700b03e70 100644 --- a/addons/sale/i18n/bs_BS.po +++ b/addons/sale/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ca_ES.po b/addons/sale/i18n/ca_ES.po index 7a636a054b4..107581fcc68 100644 --- a/addons/sale/i18n/ca_ES.po +++ b/addons/sale/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/cs_CS.po b/addons/sale/i18n/cs_CS.po index 615dce01bf5..79a1c2bf74d 100644 --- a/addons/sale/i18n/cs_CS.po +++ b/addons/sale/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,8 +41,8 @@ msgid "Allotment Partner" msgstr "" #. module: sale -#: view:sale.order:0 -msgid "Recreate Invoice" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: sale @@ -619,6 +619,11 @@ msgstr "" msgid "Order Ref" msgstr "" +#. module: sale +#: view:sale.order:0 +msgid "Recreate Invoice" +msgstr "" + #. module: sale #: field:sale.order,user_id:0 msgid "Salesman" diff --git a/addons/sale/i18n/cs_CZ.po b/addons/sale/i18n/cs_CZ.po index 6db9f855fc2..58a00693fe5 100644 --- a/addons/sale/i18n/cs_CZ.po +++ b/addons/sale/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/de_DE.po b/addons/sale/i18n/de_DE.po index 8286c3d48c8..1f15ada4635 100644 --- a/addons/sale/i18n/de_DE.po +++ b/addons/sale/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index faeac6113a2..ab998da0281 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/es_ES.po b/addons/sale/i18n/es_ES.po index 9df4c574b0e..5de5a213388 100644 --- a/addons/sale/i18n/es_ES.po +++ b/addons/sale/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/et_EE.po b/addons/sale/i18n/et_EE.po index f6650768710..fb10e169947 100644 --- a/addons/sale/i18n/et_EE.po +++ b/addons/sale/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: sale #: selection:sale.order,picking_policy:0 msgid "Partial Delivery" -msgstr "" +msgstr "Osaline kohaletoimetamine" #. module: sale #: view:sale.order:0 @@ -28,7 +28,7 @@ msgstr "Loo hange uuesti" #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 msgid "Confirm Quotation" -msgstr "" +msgstr "Kinnita hinnapakkumine" #. module: sale #: model:process.node,name:sale.process_node_deliveryorder0 @@ -43,7 +43,7 @@ msgstr "" #. module: sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: sale #: selection:sale.order,state:0 @@ -53,17 +53,17 @@ msgstr "Ootegraafik" #. module: sale #: help:sale.order,picking_policy:0 msgid "If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?" -msgstr "" +msgstr "Kas sa aktsepteerid osalist tarnimist, kui sul pole piisavalt laovarusid, et tarnida kõik korraga." #. module: sale #: selection:sale.order.line,type:0 msgid "from stock" -msgstr "" +msgstr "laost" #. module: sale #: field:sale.config.picking_policy,step:0 msgid "Steps To Deliver a Sale Order" -msgstr "" +msgstr "Sammud müügikorralduse kohaletoimetamiseks" #. module: sale #: wizard_field:sale.advance_payment_inv,init,qtty:0 @@ -80,33 +80,33 @@ msgstr "sinu arve on loodud !" #: view:sale.order:0 #: view:sale.order.line:0 msgid "Automatic Declaration" -msgstr "" +msgstr "Automaatne deklareerimine" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree3 #: model:ir.ui.menu,name:sale.menu_action_order_line_tree3 msgid "Uninvoiced and Delivered Lines" -msgstr "" +msgstr "Arveldamata ja kättetoimetatud read" #. module: sale #: view:sale.order:0 msgid "Set to Draft" -msgstr "" +msgstr "Sea mustandiks" #. module: sale #: selection:sale.order,state:0 msgid "Invoice Exception" -msgstr "" +msgstr "Arve erand" #. module: sale #: help:sale.order,picking_ids:0 msgid "This is the list of picking list that have been generated for this invoice" -msgstr "" +msgstr "See on nimekiri noppelehtedest, mis on genereeritud sellele arvele." #. module: sale #: model:process.node,note:sale.process_node_deliveryorder0 msgid "Delivery, from the warehouse to the customer." -msgstr "" +msgstr "Kättetoimetamine laost kliendile." #. module: sale #: model:ir.actions.todo,note:sale.config_wizard_step_sale_picking_policy @@ -121,7 +121,7 @@ msgstr "Valideeri" #. module: sale #: model:process.node,note:sale.process_node_order0 msgid "After confirming order, Create the invoice." -msgstr "" +msgstr "Pärast tellimuse kinnitamist loo arve." #. module: sale #: field:sale.order.line,price_subtotal:0 @@ -131,7 +131,7 @@ msgstr "Vahesumma" #. module: sale #: model:process.transition,note:sale.process_transition_confirmquotation0 msgid "Whenever confirm button is clicked, the draft state is moved to manual. that is, quotation is moved to sale order." -msgstr "" +msgstr "Kui kinnita nuppu vajutatakse siis mustandi olek muudetakse manuaalseks ja hinnapakkumine müügikorralduseks." #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancelorder0 @@ -142,12 +142,12 @@ msgstr "Tühista tellimus" #. module: sale #: field:sale.order.line,move_ids:0 msgid "Inventory Moves" -msgstr "" +msgstr "Inventuuri liikumised" #. module: sale #: view:sale.order.line:0 msgid "Manual Designation" -msgstr "" +msgstr "Käsitsi määramine" #. module: sale #: view:sale.order:0 @@ -160,7 +160,7 @@ msgstr "Märkmed" #. module: sale #: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 msgid "Invoice after delivery" -msgstr "" +msgstr "Arvelda pärast kättetoimetamist" #. module: sale #: field:sale.order,amount_tax:0 @@ -176,17 +176,17 @@ msgstr "Tellimuse viide" #. module: sale #: rml:sale.order:0 msgid "Net Total :" -msgstr "" +msgstr "Netosumma:" #. module: sale #: field:sale.order,order_policy:0 msgid "Shipping Policy" -msgstr "" +msgstr "Saatmispoliitika" #. module: sale #: selection:sale.order,state:0 msgid "Shipping Exception" -msgstr "" +msgstr "Kättetoimetamise erand" #. module: sale #: field:sale.order,amount_total:0 @@ -206,7 +206,7 @@ msgstr "Arve aadress" #. module: sale #: model:process.node,name:sale.process_node_packinglist0 msgid "Outgoing Products" -msgstr "" +msgstr "Väljuvad tooted" #. module: sale #: view:sale.order:0 @@ -216,23 +216,23 @@ msgstr "Viide" #. module: sale #: selection:sale.config.picking_policy,picking_policy:0 msgid "All at Once" -msgstr "" +msgstr "Kõik korraga" #. module: sale #: model:process.transition,note:sale.process_transition_saleprocurement0 msgid "Procurement is created after confirmation of sale order." -msgstr "" +msgstr "Hange luuakse pärast müügikorralduse kinnitamist." #. module: sale #: field:sale.order,project_id:0 #: field:sale.shop,project_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: sale #: rml:sale.order:0 msgid "TVA :" -msgstr "" +msgstr "KM:" #. module: sale #: field:sale.order.line,type:0 @@ -247,7 +247,7 @@ msgstr "Täiendav info" #. module: sale #: rml:sale.order:0 msgid "Fax :" -msgstr "" +msgstr "Faks :" #. module: sale #: field:sale.order.line,price_net:0 @@ -258,17 +258,17 @@ msgstr "Netohind" #: model:ir.actions.act_window,name:sale.action_order_tree9 #: model:ir.ui.menu,name:sale.menu_action_order_tree9 msgid "My sales order in progress" -msgstr "" +msgstr "Minu edenemisel müügikorraldused" #. module: sale #: field:sale.order.line,product_uos_qty:0 msgid "Quantity (UoS)" -msgstr "" +msgstr "Kogus (TÜ)" #. module: sale #: help:sale.order,invoice_quantity:0 msgid "The sale order will automatically create the invoice proposition (draft invoice). Ordered and delivered quantities may not be the same. You have to choose if you invoice based on ordered or shipped quantities. If the product is a service, shipped quantities means hours spent on the associated tasks." -msgstr "" +msgstr "Müügikorraldus loob automaatselt arve ettepaneku (mustand arve). Tellitud ja kätte toimetatud kogused ei pruugi olla samad. Sa pead valima, kas sa arveldad tellitud või saadetud koguste põhjal. Kui toode on teenus siis saadetud kogused tähendavad seotud ülesannetele kulutatud tunde." #. module: sale #: code:addons/sale/wizard/make_invoice_advance.py:0 @@ -284,7 +284,7 @@ msgstr "Kinnitatud" #. module: sale #: field:sale.shop,payment_default_id:0 msgid "Default Payment Term" -msgstr "" +msgstr "Vaikimisi maksetähtaeg" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree_all @@ -301,7 +301,7 @@ msgstr "Kinnita" #: code:addons/sale/sale.py:0 #, python-format msgid "You must first cancel all packing attached to this sale order." -msgstr "" +msgstr "Sa pead kõigepealt tühistama kõik pakkimised, mis sellele müügikorraldusele lisatud." #. module: sale #: field:sale.order,partner_shipping_id:0 @@ -317,18 +317,18 @@ msgstr "" #. module: sale #: selection:sale.order,invoice_quantity:0 msgid "Shipped Quantities" -msgstr "" +msgstr "Saadetud kogused" #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Sales Orders" -msgstr "" +msgstr "Arve müügikorralduste põhjal" #. module: sale #: model:ir.model,name:sale.model_sale_shop #: view:sale.shop:0 msgid "Sale Shop" -msgstr "" +msgstr "Müügikauplus" #. module: sale #: field:sale.shop,warehouse_id:0 @@ -338,40 +338,40 @@ msgstr "Ladu" #. module: sale #: rml:sale.order:0 msgid "Order N°" -msgstr "" +msgstr "Korraldus Nr." #. module: sale #: field:sale.order,order_line:0 #: view:sale.order.line:0 msgid "Order Lines" -msgstr "" +msgstr "Korralduse read" #. module: sale #: rml:sale.order:0 msgid "Disc.(%)" -msgstr "" +msgstr "Allah. (%)" #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 #: field:sale.order.line,invoice_lines:0 msgid "Invoice Lines" -msgstr "" +msgstr "Arve read" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_forceassignation0 msgid "Force Assignation" -msgstr "" +msgstr "Sunni omistamine" #. module: sale #: view:sale.order:0 msgid "Untaxed amount" -msgstr "" +msgstr "Maksustamata summa" #. module: sale #: model:process.transition,note:sale.process_transition_packing0 msgid "Packing list is created when 'Assign' is being clicked after confirming the sale order. This transaction moves the sale order to packing list." -msgstr "" +msgstr "Pakkeleht luuakse, kui klõpsatakse 'Omista' pärast müügikorralduse kinnitamist. See tehing liigutab müügikorralduse pakkelehele." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree8 @@ -382,33 +382,33 @@ msgstr "Minu möögitellimused mis ootavad Arvet" #. module: sale #: rml:sale.order:0 msgid "Shipping address :" -msgstr "" +msgstr "Tarneaadress :" #. module: sale #: model:process.transition,note:sale.process_transition_invoiceafterdelivery0 msgid "When you select Shipping Ploicy = 'Automatic Invoice after delivery' , it will automatic create after delivery." -msgstr "" +msgstr "Kui sa valid Tarnepoliitikaks 'Automaatne arve pärast tarnimist' siis arve luuakse automaatselt pärast tarnimist." #. module: sale #: code:addons/sale/sale.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Viga!" #. module: sale #: selection:sale.order,picking_policy:0 msgid "Complete Delivery" -msgstr "" +msgstr "Täielik kättetoimetamine" #. module: sale #: view:sale.order:0 msgid "Manual Description" -msgstr "" +msgstr "Manuaalne kirjeldus" #. module: sale #: field:sale.order.line,product_uom_qty:0 msgid "Quantity (UoM)" -msgstr "" +msgstr "Kogus (MÜ)" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree1 @@ -426,7 +426,7 @@ msgstr "Pead kõigepealt tühistama kõik arved mis on seotud selle ostutellimus #. module: sale #: selection:sale.order,invoice_quantity:0 msgid "Ordered Quantities" -msgstr "" +msgstr "Tellitud kogused" #. module: sale #: model:process.node,name:sale.process_node_saleorderprocurement0 @@ -436,7 +436,7 @@ msgstr "Müügitellimuste Hanked" #. module: sale #: model:process.transition,name:sale.process_transition_packing0 msgid "Packing" -msgstr "" +msgstr "Pakkimine" #. module: sale #: rml:sale.order:0 @@ -452,7 +452,7 @@ msgstr "Kinnita tellimus" #: code:addons/sale/sale.py:0 #, python-format msgid "Invalid action !" -msgstr "" +msgstr "Vigane toiming!" #. module: sale #: selection:sale.order,state:0 @@ -475,7 +475,7 @@ msgstr "Seadistus" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice on Order After Delivery" -msgstr "" +msgstr "Arve tellimusele pärast kättetoimetamist" #. module: sale #: constraint:ir.ui.view:0 @@ -485,27 +485,27 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: sale #: field:sale.order,picking_ids:0 msgid "Related Packing" -msgstr "" +msgstr "Seotud pakkimine" #. module: sale #: field:sale.shop,payment_account_id:0 msgid "Payment Accounts" -msgstr "" +msgstr "Maksekontod" #. module: sale #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "" +msgstr "Viga: TÜ kategooria peab erinema MÜ kategooriast" #. module: sale #: field:sale.order,client_order_ref:0 msgid "Customer Ref" -msgstr "" +msgstr "Kliendi viide" #. module: sale #: model:ir.model,name:sale.model_sale_config_picking_policy msgid "sale.config.picking_policy" -msgstr "" +msgstr "sale.config.picking_policy" #. module: sale #: view:sale.order:0 @@ -521,24 +521,24 @@ msgstr "Hankimine" #. module: sale #: view:sale.shop:0 msgid "Payment accounts" -msgstr "" +msgstr "Maksekontod" #. module: sale #: wizard_button:sale.advance_payment_inv,create,end:0 msgid "Close" -msgstr "" +msgstr "Sulge" #. module: sale #: model:process.node,name:sale.process_node_invoice0 #: model:process.node,name:sale.process_node_invoiceafterdelivery0 msgid "Draft Invoice" -msgstr "" +msgstr "Arve mustand" #. module: sale #: wizard_field:sale.order.line.make_invoice,init,grouped:0 #: wizard_field:sale.order.make_invoice,init,grouped:0 msgid "Group the invoices" -msgstr "" +msgstr "Grupeeri arved" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree5 @@ -554,18 +554,18 @@ msgstr "Allahindlus (%)" #. module: sale #: model:process.node,note:sale.process_node_invoice0 msgid "Draft customer invoice, to be reviewed by accountant." -msgstr "" +msgstr "Kliendi arve mustand, raamatupidajale üle vaatamiseks." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree3 #: model:ir.ui.menu,name:sale.menu_action_order_tree3 msgid "Sales Order To Be Invoiced" -msgstr "" +msgstr "Müügikorraldus arveldada" #. module: sale #: model:process.node,note:sale.process_node_saleorderprocurement0 msgid "Procurement for each line" -msgstr "" +msgstr "Hankimine igale reale" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree10 @@ -576,27 +576,27 @@ msgstr "Minu hinnapakkumised" #. module: sale #: wizard_view:sale.advance_payment_inv,create:0 msgid "Invoices" -msgstr "" +msgstr "Arved" #. module: sale #: view:sale.order:0 msgid "Order Line" -msgstr "" +msgstr "Korralduse rida" #. module: sale #: field:sale.config.picking_policy,picking_policy:0 msgid "Packing Default Policy" -msgstr "" +msgstr "Pakkimise vaikimisi poliitika" #. module: sale #: model:process.node,note:sale.process_node_saleorder0 msgid "Manages the delivery and invoicing progress" -msgstr "" +msgstr "Haldab tarne ja arveldamise edenemist" #. module: sale #: field:sale.config.picking_policy,order_policy:0 msgid "Shipping Default Policy" -msgstr "" +msgstr "Tarnimise vaikimisi poliitika" #. module: sale #: code:addons/sale/sale.py:0 @@ -607,7 +607,7 @@ msgstr "Müügitellimust ei saa tühistada!" #. module: sale #: field:sale.order.line,product_packaging:0 msgid "Packaging" -msgstr "" +msgstr "Pakendamine" #. module: sale #: selection:sale.order.line,state:0 @@ -632,12 +632,12 @@ msgstr "Müügimees" #. module: sale #: model:process.transition,note:sale.process_transition_saleorderprocurement0 msgid "In sale order , procuerement for each line and it comes into the procurement order" -msgstr "" +msgstr "Müügikorraldusel hankimine igale reale ja see muutub hankekorralduseks." #. module: sale #: rml:sale.order:0 msgid "Taxes :" -msgstr "" +msgstr "Maksud :" #. module: sale #: field:sale.order,invoiced_rate:0 @@ -648,7 +648,7 @@ msgstr "Arve tegemine" #. module: sale #: model:ir.actions.wizard,name:sale.advance_payment msgid "Advance Invoice" -msgstr "" +msgstr "Ettemaksuarve" #. module: sale #: field:sale.order,state:0 @@ -659,13 +659,13 @@ msgstr "Tellimuse olek" #: model:ir.actions.act_window,name:sale.action_order_line_tree2 #: model:ir.ui.menu,name:sale.menu_action_order_line_tree2 msgid "Uninvoiced Lines" -msgstr "" +msgstr "Arveldamata read" #. module: sale #: code:addons/sale/sale.py:0 #, python-format msgid "No Customer Defined !" -msgstr "" +msgstr "Klienti pole määratud!" #. module: sale #: help:sale.order,order_policy:0 @@ -679,7 +679,7 @@ msgstr "" #. module: sale #: model:process.process,name:sale.process_process_salesprocess0 msgid "Sales Process" -msgstr "" +msgstr "Müügiprotsess" #. module: sale #: wizard_view:sale.order.line.make_invoice,init:0 @@ -687,7 +687,7 @@ msgstr "" #: wizard_view:sale.order.make_invoice,init:0 #: wizard_button:sale.order.make_invoice,init,invoice:0 msgid "Create invoices" -msgstr "" +msgstr "Loo arved" #. module: sale #: constraint:product.template:0 @@ -698,7 +698,7 @@ msgstr "Viga: vaikimisi mõõtühik ja ostu mõõtühik peavad olema samast kate #: model:ir.actions.act_window,name:sale.action_order_tree7 #: model:ir.ui.menu,name:sale.menu_action_order_tree7 msgid "My sales in shipping exception" -msgstr "" +msgstr "Minu müügid saatmise erandis" #. module: sale #: view:sale.config.picking_policy:0 @@ -709,12 +709,12 @@ msgstr "Müükide Seadistused" #: model:ir.actions.act_window,name:sale.action_order_tree2 #: model:ir.ui.menu,name:sale.menu_action_order_tree2 msgid "Sales in Exception" -msgstr "" +msgstr "Müügid erandis" #. module: sale #: selection:sale.order.line,type:0 msgid "on order" -msgstr "" +msgstr "tellimusel" #. module: sale #: selection:sale.order.line,state:0 @@ -729,12 +729,12 @@ msgstr "Tasutud" #. module: sale #: view:sale.order:0 msgid "Procurement Corrected" -msgstr "" +msgstr "Hange korrastatud" #. module: sale #: selection:sale.order,order_policy:0 msgid "Shipping & Manual Invoice" -msgstr "" +msgstr "Saatmine ja käsitsi arveldamine" #. module: sale #: model:process.transition,name:sale.process_transition_saleorderprocurement0 @@ -745,12 +745,12 @@ msgstr "Müügihange" #. module: sale #: view:sale.config.picking_policy:0 msgid "Configure Sale Order Logistic" -msgstr "" +msgstr "Seadista müügikorralduse logistika" #. module: sale #: field:sale.order,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "" +msgstr "Maksustamata summa" #. module: sale #: field:sale.order.line,state:0 @@ -760,33 +760,33 @@ msgstr "Staatus" #. module: sale #: field:sale.order,picking_policy:0 msgid "Packing Policy" -msgstr "" +msgstr "Pakkimise poliitika" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_product_tree msgid "Product sales" -msgstr "" +msgstr "Toote müügid" #. module: sale #: code:addons/sale/sale.py:0 #, python-format msgid "invalid mode for test_state" -msgstr "" +msgstr "vigane viis test_olekule" #. module: sale #: rml:sale.order:0 msgid "Our Salesman" -msgstr "" +msgstr "Meie müügimees" #. module: sale #: wizard_button:sale.advance_payment_inv,init,create:0 msgid "Create Advance Invoice" -msgstr "" +msgstr "Loo ettemaksuarve" #. module: sale #: model:process.node,note:sale.process_node_saleprocurement0 msgid "One procurement for each product." -msgstr "" +msgstr "Üks hange igale tootele." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_form @@ -811,14 +811,14 @@ msgstr "Müügi Hinnakirjad" #. module: sale #: selection:sale.config.picking_policy,picking_policy:0 msgid "Direct Delivery" -msgstr "" +msgstr "Otsetarne" #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 #: field:sale.order.line,property_ids:0 msgid "Properties" -msgstr "" +msgstr "Omadused" #. module: sale #: model:process.node,name:sale.process_node_quotation0 @@ -829,12 +829,12 @@ msgstr "Hinnapakkumine" #. module: sale #: model:product.template,name:sale.advance_product_0_product_template msgid "Advance Product" -msgstr "" +msgstr "Ettemaksu toode" #. module: sale #: model:process.transition,note:sale.process_transition_invoice0 msgid "Invoice is created when 'Create Invoice' is being clicked after confirming the sale order. This transaction moves the sale order to invoices." -msgstr "" +msgstr "Arve luuakse, kui klõpsatakse 'Loo arve' pärast müügikorralduse kinnitamist. See tehing liigutab müügikorralduse arvetele." #. module: sale #: view:sale.order:0 @@ -857,18 +857,18 @@ msgstr "Käibemaks" #: model:ir.actions.act_window,name:sale.action_order_tree4 #: model:ir.ui.menu,name:sale.menu_action_order_tree4 msgid "Sales Order in Progress" -msgstr "" +msgstr "Edenemisel müügikorraldused" #. module: sale #: code:addons/sale/wizard/make_invoice_advance.py:0 #, python-format msgid "Error" -msgstr "" +msgstr "Viga" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_assign0 msgid "Assign" -msgstr "" +msgstr "Omista" #. module: sale #: view:sale.order:0 @@ -878,17 +878,17 @@ msgstr "Ajalugu" #. module: sale #: view:sale.order:0 msgid "Make Invoice" -msgstr "" +msgstr "Loo arve" #. module: sale #: rml:sale.order:0 msgid "Your Reference" -msgstr "" +msgstr "Sinu viide" #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Delivery Order Only" -msgstr "" +msgstr "Ainult kättetoimetamise korraldus" #. module: sale #: view:sale.order:0 @@ -899,7 +899,7 @@ msgstr "Müügitellimuse read" #. module: sale #: field:sale.order.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Järjekord" #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order @@ -920,7 +920,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Other data" -msgstr "" +msgstr "Muud andmed" #. module: sale #: wizard_field:sale.advance_payment_inv,init,amount:0 @@ -932,7 +932,7 @@ msgstr "Ühiku hind" #. module: sale #: field:sale.order,fiscal_position:0 msgid "Fiscal Position" -msgstr "" +msgstr "Finantspositsioon" #. module: sale #: rml:sale.order:0 @@ -967,33 +967,33 @@ msgstr "" #: view:sale.order:0 #: view:sale.order.line:0 msgid "UoM" -msgstr "" +msgstr "MÜ" #. module: sale #: field:sale.order.line,number_packages:0 msgid "Number Packages" -msgstr "" +msgstr "Pakkide arv" #. module: sale #: model:process.transition,note:sale.process_transition_deliver0 msgid "Confirming the packing list moves them to delivery order. This can be done by clicking on 'Validate' button." -msgstr "" +msgstr "Pakkelehe kinnitamine liigutab need kättetoimetamise korraldusele. Seda saab teha klõpsates 'Valideeri' nuppu." #. module: sale #: code:addons/sale/sale.py:0 #, python-format msgid "You cannot cancel a sale order line that has already been invoiced !" -msgstr "" +msgstr "Sa ei saa tühistada müügikorralduse rida, mis on juba arveldatud!" #. module: sale #: selection:sale.order,state:0 msgid "In Progress" -msgstr "" +msgstr "Töös" #. module: sale #: wizard_view:sale.advance_payment_inv,init:0 msgid "Advance Payment" -msgstr "" +msgstr "Ettemaks" #. module: sale #: constraint:ir.model:0 @@ -1008,12 +1008,12 @@ msgstr "Kinnita müügitellimus ja Loo arve." #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Packing List & Delivery Order" -msgstr "" +msgstr "Pakkeleht ja kättetoimetamise korraldus" #. module: sale #: selection:sale.order.line,state:0 msgid "Exception" -msgstr "" +msgstr "Erand" #. module: sale #: view:sale.order:0 @@ -1024,23 +1024,23 @@ msgstr "Müügitellimuse Read" #: model:process.transition.action,name:sale.process_transition_action_createinvoice0 #: view:sale.order:0 msgid "Create Invoice" -msgstr "" +msgstr "Loo arve" #. module: sale #: wizard_view:sale.order.line.make_invoice,init:0 #: wizard_view:sale.order.make_invoice,init:0 msgid "Do you really want to create the invoices ?" -msgstr "" +msgstr "Kas soovid tõesti luua arved ?" #. module: sale #: model:process.node,note:sale.process_node_invoiceafterdelivery0 msgid "Invoice based on packing lists" -msgstr "" +msgstr "Arve pakkelehtede põhjal" #. module: sale #: view:sale.config.picking_policy:0 msgid "Set Default" -msgstr "" +msgstr "Sea vaikeväärtus" #. module: sale #: view:sale.order:0 @@ -1050,7 +1050,7 @@ msgstr "Müügitellimused" #. module: sale #: model:process.node,note:sale.process_node_quotation0 msgid "Quotation (A sale order in draft state)" -msgstr "" +msgstr "Hinnapakkumine (Müügikorraldus mustandi olekus)" #. module: sale #: model:process.transition,name:sale.process_transition_saleinvoice0 @@ -1060,7 +1060,7 @@ msgstr "Müügiarve" #. module: sale #: field:sale.order,incoterm:0 msgid "Incoterm" -msgstr "" +msgstr "Tarneklausel" #. module: sale #: wizard_field:sale.advance_payment_inv,init,product_id:0 @@ -1071,12 +1071,12 @@ msgstr "Toode" #. module: sale #: wizard_button:sale.advance_payment_inv,create,open:0 msgid "Open Advance Invoice" -msgstr "" +msgstr "Ava ettemaksuarve" #. module: sale #: field:sale.order,partner_order_id:0 msgid "Ordering Contact" -msgstr "" +msgstr "Tellija kontakt" #. module: sale #: rml:sale.order:0 @@ -1098,7 +1098,7 @@ msgstr "Hind" #. module: sale #: model:process.transition,name:sale.process_transition_deliver0 msgid "Deliver" -msgstr "" +msgstr "Kätte toimetama" #. module: sale #: model:ir.actions.report.xml,name:sale.report_sale_order @@ -1108,12 +1108,12 @@ msgstr "Hinnapakkumine / Korraldus" #. module: sale #: rml:sale.order:0 msgid "Tel. :" -msgstr "" +msgstr "Tel. :" #. module: sale #: rml:sale.order:0 msgid "Quotation N°" -msgstr "" +msgstr "Hinnapakkumine Nr" #. module: sale #: code:addons/sale/sale.py:0 @@ -1129,12 +1129,12 @@ msgstr "Müügitellimuse Rida" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancelassignation0 msgid "Cancel Assignation" -msgstr "" +msgstr "Tühista omistamine" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice from the Packing" -msgstr "" +msgstr "Arve pakkimisest" #. module: sale #: model:ir.actions.wizard,name:sale.wizard_sale_order_line_invoice @@ -1145,7 +1145,7 @@ msgstr "Loo arved" #. module: sale #: help:sale.order,partner_order_id:0 msgid "The name and address of the contact that requested the order or quotation." -msgstr "" +msgstr "Kontakti nimi ja aadress, kes taotles tellimust või hinnapakkumist." #. module: sale #: field:sale.order,partner_id:0 @@ -1156,13 +1156,13 @@ msgstr "Klient" #. module: sale #: field:product.product,pricelist_purchase:0 msgid "Purchase Pricelists" -msgstr "" +msgstr "Ostu hinnakirjad" #. module: sale #: code:addons/sale/sale.py:0 #, python-format msgid "Cannot delete Sale Order(s) which are already confirmed !" -msgstr "" +msgstr "Ei saa kustutada juba kinnitatud müügikorraldust!" #. module: sale #: field:sale.config.picking_policy,name:0 @@ -1178,94 +1178,94 @@ msgstr "" #: model:ir.actions.act_window,name:sale.action_order_tree_new #: model:ir.ui.menu,name:sale.menu_action_order_tree_new msgid "New Quotation" -msgstr "" +msgstr "Uus hinnapakkumine" #. module: sale #: view:sale.order:0 msgid "Total amount" -msgstr "" +msgstr "Kogusumma" #. module: sale #: rml:sale.order:0 #: field:sale.order,date_order:0 msgid "Date Ordered" -msgstr "" +msgstr "Tellimise kuupäev" #. module: sale #: field:sale.order.line,product_uos:0 msgid "Product UoS" -msgstr "" +msgstr "Toote TÜ" #. module: sale #: selection:sale.order,state:0 msgid "Manual In Progress" -msgstr "" +msgstr "Edenemisel käsitsi" #. module: sale #: field:sale.order.line,product_uom:0 msgid "Product UoM" -msgstr "" +msgstr "Toote MÜ" #. module: sale #: help:sale.config.picking_policy,step:0 msgid "By default, Open ERP is able to manage complex routing and paths of products in your warehouse and partner locations. This will configure the most common and simple methods to deliver products to the customer in one or two operations by the worker." -msgstr "" +msgstr "Open ERP suudab vaikimisi hallata kompleksmarsruutimist ja toodete radasid sinu loas ja partnerasukohtades. See seadistab kõige tavalisemad ja lihtsamad meetodid toodete kättetoimetamiseks kliendile ühe või kahe operatsioonina töötaja poolt." #. module: sale #: model:ir.actions.act_window,name:sale.action_config_picking_policy msgid "Configure Picking Policy for Sale Order" -msgstr "" +msgstr "Seadista noppepoliitika müügikorraldusele" #. module: sale #: model:process.node,name:sale.process_node_order0 msgid "Order" -msgstr "" +msgstr "Korraldus" #. module: sale #: rml:sale.order:0 msgid "Payment Terms" -msgstr "" +msgstr "Maksetingimused" #. module: sale #: view:sale.order:0 msgid "Invoice Corrected" -msgstr "" +msgstr "Arve korrigeeritud" #. module: sale #: field:sale.order.line,delay:0 msgid "Delivery Delay" -msgstr "" +msgstr "Kohaletoimetamise viivitus" #. module: sale #: view:sale.order:0 msgid "Related invoices" -msgstr "" +msgstr "Seotud arved" #. module: sale #: field:sale.shop,name:0 msgid "Shop Name" -msgstr "" +msgstr "Poe nimi" #. module: sale #: field:sale.order,payment_term:0 msgid "Payment Term" -msgstr "" +msgstr "Maksetingimus" #. module: sale #: selection:sale.order,order_policy:0 msgid "Payment Before Delivery" -msgstr "" +msgstr "Maksmine enne kättetoimetamist" #. module: sale #: help:sale.order,invoice_ids:0 msgid "This is the list of invoices that have been generated for this sale order. The same sale order may have been invoiced in several times (by line for example)." -msgstr "" +msgstr "See on nimekiri arvetest, mis on genereeritud sellele müügikorraldusele. Sama müügikorraldus võib olla arveldatud mitu korda (rea kaupa nt)." #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 msgid "States" -msgstr "" +msgstr "Staatused" #. module: sale #: field:sale.order.line,th_weight:0 @@ -1275,28 +1275,28 @@ msgstr "Kaal" #. module: sale #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Viga: Vigane EAN kood" #. module: sale #: field:sale.order,picked_rate:0 #: field:sale.order,shipped:0 msgid "Picked" -msgstr "" +msgstr "Nopitud" #. module: sale #: view:sale.shop:0 msgid "Accounting" -msgstr "" +msgstr "Raamatupidamine" #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Deliveries" -msgstr "" +msgstr "Arve kättetoimetamiste põhjal" #. module: sale #: view:sale.order:0 msgid "Stock Moves" -msgstr "" +msgstr "Lao liikumised" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree diff --git a/addons/sale/i18n/fr_FR.po b/addons/sale/i18n/fr_FR.po index aa1c8cb5ecd..2927e3701ff 100644 --- a/addons/sale/i18n/fr_FR.po +++ b/addons/sale/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/hr_HR.po b/addons/sale/i18n/hr_HR.po index 013b3d37492..16b53f85e36 100644 --- a/addons/sale/i18n/hr_HR.po +++ b/addons/sale/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/hu_HU.po b/addons/sale/i18n/hu_HU.po index 46f2629b577..c849f596578 100644 --- a/addons/sale/i18n/hu_HU.po +++ b/addons/sale/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/id_ID.po b/addons/sale/i18n/id_ID.po index ed53fc7ace7..d2b3b884205 100644 --- a/addons/sale/i18n/id_ID.po +++ b/addons/sale/i18n/id_ID.po @@ -7,16 +7,32 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-23 14:23+0000\n" -"PO-Revision-Date: 2009-01-07 13:25+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-10 13:40+0000\n" "Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:28+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:31+0000\n" "X-Generator: Launchpad (build Unknown)\n" +#. module: sale +#: model:process.node,name:sale.process_node_deliveryorder0 +msgid "Delivery Order" +msgstr "Pengiriman Order" + +#. module: sale +#: wizard_view:sale.advance_payment_inv,create:0 +msgid "You invoice has been successfully created !" +msgstr "Invoice berhasil dibuat" + +#. module: sale +#: field:sale.order,invoiced_rate:0 +#: field:sale.order.line,invoiced:0 +msgid "Invoiced" +msgstr "Terinvoice" + #. module: sale #: selection:sale.order,picking_policy:0 msgid "Partial Delivery" @@ -32,19 +48,14 @@ msgstr "" msgid "Confirm Quotation" msgstr "" -#. module: sale -#: model:process.node,name:sale.process_node_deliveryorder0 -msgid "Delivery Order" -msgstr "Pengiriman Order" - #. module: sale #: field:sale.order.line,address_allotment_id:0 msgid "Allotment Partner" msgstr "" #. module: sale -#: view:sale.order:0 -msgid "Recreate Invoice" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: sale @@ -52,6 +63,13 @@ msgstr "" msgid "Waiting Schedule" msgstr "" +#. module: sale +#: help:sale.order,picking_policy:0 +msgid "" +"If you don't have enough stock available to deliver all at once, do you " +"accept partial shipments or not?" +msgstr "" + #. module: sale #: selection:sale.order.line,type:0 msgid "from stock" @@ -68,11 +86,6 @@ msgstr "" msgid "Quantity" msgstr "" -#. module: sale -#: wizard_view:sale.advance_payment_inv,create:0 -msgid "You invoice has been successfully created !" -msgstr "Invoice berhasil dibuat" - #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 @@ -107,13 +120,10 @@ msgid "Delivery, from the warehouse to the customer." msgstr "" #. module: sale -#: field:sale.order,client_order_ref:0 -msgid "Customer Ref." -msgstr "" - -#. module: sale -#: model:ir.model,name:sale.model_sale_config_picking_policy -msgid "sale.config.picking_policy" +#: model:ir.actions.todo,note:sale.config_wizard_step_sale_picking_policy +msgid "" +"This Configuration step use to set default picking policy when make sale " +"order" msgstr "" #. module: sale @@ -154,11 +164,6 @@ msgstr "" msgid "Manual Designation" msgstr "" -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "Invoice from the packings" -msgstr "" - #. module: sale #: view:sale.order:0 #: field:sale.order,note:0 @@ -194,13 +199,8 @@ msgid "Shipping Policy" msgstr "" #. module: sale -#: field:sale.shop,name:0 -msgid "Shop name" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "VAT" +#: selection:sale.order,state:0 +msgid "Shipping Exception" msgstr "" #. module: sale @@ -275,6 +275,11 @@ msgstr "" msgid "My sales order in progress" msgstr "" +#. module: sale +#: field:sale.order.line,product_uos_qty:0 +msgid "Quantity (UoS)" +msgstr "" + #. module: sale #: help:sale.order,invoice_quantity:0 msgid "" @@ -313,11 +318,25 @@ msgstr "" msgid "Confirm" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "You must first cancel all packing attached to this sale order." +msgstr "" + #. module: sale #: field:sale.order,partner_shipping_id:0 msgid "Shipping Address" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "" +"You have to select a customer in the sale form !\n" +"Please set one customer before choosing a product." +msgstr "" + #. module: sale #: selection:sale.order,invoice_quantity:0 msgid "Shipped Quantities" @@ -328,6 +347,12 @@ msgstr "" msgid "Invoice Based on Sales Orders" msgstr "" +#. module: sale +#: model:ir.model,name:sale.model_sale_shop +#: view:sale.shop:0 +msgid "Sale Shop" +msgstr "" + #. module: sale #: field:sale.shop,warehouse_id:0 msgid "Warehouse" @@ -457,13 +482,10 @@ msgid "Invalid action !" msgstr "" #. module: sale -#: help:sale.order,state:0 -msgid "" -"Gives the state of the quotation or sale order. The exception state is " -"automatically set when a cancel operation occurs in the invoice validation " -"(Invoice Exception) or in the packing list process (Shipping Exception). The " -"'Waiting Schedule' state is set when the invoice is confirmed but waiting " -"for the scheduler to be on the date 'Date Ordered'." +#: selection:sale.order,state:0 +#: view:sale.order.line:0 +#: selection:sale.order.line,state:0 +msgid "Done" msgstr "" #. module: sale @@ -477,11 +499,6 @@ msgstr "" msgid "Configuration" msgstr "" -#. module: sale -#: view:sale.order:0 -msgid "Total amount" -msgstr "" - #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice on Order After Delivery" @@ -493,9 +510,13 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: sale -#: model:ir.model,name:sale.model_sale_shop -#: view:sale.shop:0 -msgid "Sale Shop" +#: field:sale.order,picking_ids:0 +msgid "Related Packing" +msgstr "" + +#. module: sale +#: field:sale.shop,payment_account_id:0 +msgid "Payment Accounts" msgstr "" #. module: sale @@ -503,6 +524,16 @@ msgstr "" msgid "Error: UOS must be in a different category than the UOM" msgstr "" +#. module: sale +#: field:sale.order,client_order_ref:0 +msgid "Customer Ref" +msgstr "" + +#. module: sale +#: model:ir.model,name:sale.model_sale_config_picking_policy +msgid "sale.config.picking_policy" +msgstr "" + #. module: sale #: view:sale.order:0 msgid "Sales orders" @@ -514,20 +545,14 @@ msgstr "" msgid "Procurement" msgstr "" -#. module: sale -#: selection:sale.order,state:0 -msgid "Manual in progress" -msgstr "" - #. module: sale #: view:sale.shop:0 -#: field:sale.shop,payment_account_id:0 msgid "Payment accounts" msgstr "" #. module: sale -#: selection:sale.order,state:0 -msgid "Shipping Exception" +#: wizard_button:sale.advance_payment_inv,create,end:0 +msgid "Close" msgstr "" #. module: sale @@ -548,34 +573,14 @@ msgstr "" msgid "All Quotations" msgstr "" -#. module: sale -#: field:sale.order.line,number_packages:0 -msgid "Number packages" -msgstr "" - #. module: sale #: field:sale.order.line,discount:0 msgid "Discount (%)" msgstr "" #. module: sale -#: help:sale.order,order_policy:0 -msgid "" -"The Shipping Policy is used to synchronise invoice and delivery operations.\n" -" - The 'Pay before delivery' choice will first generate the invoice and " -"then generate the packing order after the payment of this invoice.\n" -" - The 'Shipping & Manual Invoice' will create the packing order directly " -"and wait for the user to manually click on the 'Invoice' button to generate " -"the draft invoice.\n" -" - The 'Invoice on Order Ater Delivery' choice will generate the draft " -"invoice based on sale order after all packing lists have been finished.\n" -" - The 'Invoice from the packings' choice is used to create an invoice " -"during the packing process." -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "In progress" +#: model:process.node,note:sale.process_node_invoice0 +msgid "Draft customer invoice, to be reviewed by accountant." msgstr "" #. module: sale @@ -641,6 +646,11 @@ msgstr "" msgid "Order Ref" msgstr "" +#. module: sale +#: view:sale.order:0 +msgid "Recreate Invoice" +msgstr "" + #. module: sale #: field:sale.order,user_id:0 msgid "Salesman" @@ -658,12 +668,6 @@ msgstr "" msgid "Taxes :" msgstr "" -#. module: sale -#: field:sale.order,invoiced_rate:0 -#: field:sale.order.line,invoiced:0 -msgid "Invoiced" -msgstr "Terinvoice" - #. module: sale #: model:ir.actions.wizard,name:sale.advance_payment msgid "Advance Invoice" @@ -681,10 +685,24 @@ msgid "Uninvoiced Lines" msgstr "" #. module: sale -#: model:ir.actions.todo,note:sale.config_wizard_step_sale_picking_policy +#: code:addons/sale/sale.py:0 +#, python-format +msgid "No Customer Defined !" +msgstr "" + +#. module: sale +#: help:sale.order,order_policy:0 msgid "" -"This Configuration step use to set default picking policy when make sale " -"order" +"The Shipping Policy is used to synchronise invoice and delivery operations.\n" +" - The 'Pay before delivery' choice will first generate the invoice and " +"then generate the packing order after the payment of this invoice.\n" +" - The 'Shipping & Manual Invoice' will create the packing order directly " +"and wait for the user to manually click on the 'Invoice' button to generate " +"the draft invoice.\n" +" - The 'Invoice on Order Ater Delivery' choice will generate the draft " +"invoice based on sale order after all packing lists have been finished.\n" +" - The 'Invoice from the packing' choice is used to create an invoice " +"during the packing process." msgstr "" #. module: sale @@ -723,6 +741,11 @@ msgstr "" msgid "Sales in Exception" msgstr "" +#. module: sale +#: selection:sale.order.line,type:0 +msgid "on order" +msgstr "" + #. module: sale #: selection:sale.order.line,state:0 msgid "Draft" @@ -738,6 +761,11 @@ msgstr "" msgid "Procurement Corrected" msgstr "" +#. module: sale +#: selection:sale.order,order_policy:0 +msgid "Shipping & Manual Invoice" +msgstr "" + #. module: sale #: model:process.transition,name:sale.process_transition_saleorderprocurement0 #: model:process.transition,name:sale.process_transition_saleprocurement0 @@ -749,11 +777,6 @@ msgstr "" msgid "Configure Sale Order Logistic" msgstr "" -#. module: sale -#: field:sale.order.line,product_uos_qty:0 -msgid "Quantity (UOS)" -msgstr "" - #. module: sale #: field:sale.order,amount_untaxed:0 msgid "Untaxed Amount" @@ -796,15 +819,9 @@ msgid "One procurement for each product." msgstr "" #. module: sale -#: field:sale.order,picking_ids:0 -msgid "Related Packings" -msgstr "" - -#. module: sale -#: help:sale.order,picking_policy:0 -msgid "" -"If you don't have enough stock available to deliver all at once, do you " -"accept partial shippings or not." +#: model:ir.actions.act_window,name:sale.action_order_form +#: model:ir.ui.menu,name:sale.menu_sale_order +msgid "Sales Orders" msgstr "" #. module: sale @@ -857,15 +874,15 @@ msgid "Compute" msgstr "" #. module: sale -#: model:process.node,note:sale.process_node_invoice0 -msgid "Draft customer invoice, to be reviewed by accountant." +#: model:ir.actions.act_window,name:sale.action_shop_form +#: model:ir.ui.menu,name:sale.menu_action_shop_form +#: field:sale.order,shop_id:0 +msgid "Shop" msgstr "" #. module: sale -#: selection:sale.order,state:0 -#: view:sale.order.line:0 -#: selection:sale.order.line,state:0 -msgid "Done" +#: rml:sale.order:0 +msgid "VAT" msgstr "" #. module: sale @@ -890,12 +907,6 @@ msgstr "" msgid "History" msgstr "" -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You must first cancel all packings attached to this sale order." -msgstr "" - #. module: sale #: view:sale.order:0 msgid "Make Invoice" @@ -980,8 +991,13 @@ msgid "Cancel" msgstr "" #. module: sale -#: wizard_button:sale.advance_payment_inv,create,end:0 -msgid "Close" +#: help:sale.order,state:0 +msgid "" +"Gives the state of the quotation or sale order. The exception state is " +"automatically set when a cancel operation occurs in the invoice validation " +"(Invoice Exception) or in the packing list process (Shipping Exception). The " +"'Waiting Schedule' state is set when the invoice is confirmed but waiting " +"for the scheduler to run on the date 'Date Ordered'." msgstr "" #. module: sale @@ -991,8 +1007,8 @@ msgid "UoM" msgstr "" #. module: sale -#: selection:sale.order,order_policy:0 -msgid "Shipping & Manual Invoice" +#: field:sale.order.line,number_packages:0 +msgid "Number Packages" msgstr "" #. module: sale @@ -1003,9 +1019,14 @@ msgid "" msgstr "" #. module: sale -#: model:ir.actions.act_window,name:sale.action_order_form -#: model:ir.ui.menu,name:sale.menu_sale_order -msgid "Sales Orders" +#: code:addons/sale/sale.py:0 +#, python-format +msgid "You cannot cancel a sale order line that has already been invoiced !" +msgstr "" + +#. module: sale +#: selection:sale.order,state:0 +msgid "In Progress" msgstr "" #. module: sale @@ -1104,6 +1125,7 @@ msgid "Description" msgstr "" #. module: sale +#: model:ir.module.module,shortdesc:sale.module_meta_information #: model:ir.ui.menu,name:sale.menu_sale_root msgid "Sales Management" msgstr "" @@ -1118,11 +1140,6 @@ msgstr "" msgid "Deliver" msgstr "" -#. module: sale -#: field:sale.order.line,product_uos:0 -msgid "Product UOS" -msgstr "" - #. module: sale #: model:ir.actions.report.xml,name:sale.report_sale_order msgid "Quotation / Order" @@ -1155,8 +1172,8 @@ msgid "Cancel Assignation" msgstr "" #. module: sale -#: selection:sale.order.line,type:0 -msgid "on order" +#: selection:sale.order,order_policy:0 +msgid "Invoice from the Packing" msgstr "" #. module: sale @@ -1177,12 +1194,6 @@ msgstr "" msgid "Customer" msgstr "" -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You can not cancel a sale order line that has already been invoiced !" -msgstr "" - #. module: sale #: field:product.product,pricelist_purchase:0 msgid "Purchase Pricelists" @@ -1211,10 +1222,8 @@ msgid "New Quotation" msgstr "" #. module: sale -#: model:ir.actions.act_window,name:sale.action_shop_form -#: model:ir.ui.menu,name:sale.menu_action_shop_form -#: field:sale.order,shop_id:0 -msgid "Shop" +#: view:sale.order:0 +msgid "Total amount" msgstr "" #. module: sale @@ -1223,6 +1232,16 @@ msgstr "" msgid "Date Ordered" msgstr "" +#. module: sale +#: field:sale.order.line,product_uos:0 +msgid "Product UoS" +msgstr "" + +#. module: sale +#: selection:sale.order,state:0 +msgid "Manual In Progress" +msgstr "" + #. module: sale #: field:sale.order.line,product_uom:0 msgid "Product UoM" @@ -1267,6 +1286,11 @@ msgstr "" msgid "Related invoices" msgstr "" +#. module: sale +#: field:sale.shop,name:0 +msgid "Shop Name" +msgstr "" + #. module: sale #: field:sale.order,payment_term:0 msgid "Payment Term" @@ -1307,6 +1331,11 @@ msgstr "" msgid "Picked" msgstr "" +#. module: sale +#: view:sale.shop:0 +msgid "Accounting" +msgstr "" + #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Deliveries" @@ -1327,6 +1356,3 @@ msgstr "" #: model:ir.model,name:sale.model_sale_order_line msgid "Sale Order line" msgstr "" - -#~ msgid "Order Ref." -#~ msgstr "Ref. Order" diff --git a/addons/sale/i18n/it_IT.po b/addons/sale/i18n/it_IT.po index 68768cad0a8..2a1b1aeb886 100644 --- a/addons/sale/i18n/it_IT.po +++ b/addons/sale/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1088,7 +1088,7 @@ msgstr "Descrizione" #: model:ir.module.module,shortdesc:sale.module_meta_information #: model:ir.ui.menu,name:sale.menu_sale_root msgid "Sales Management" -msgstr "gestione Vendite" +msgstr "Gestione Vendite" #. module: sale #: rml:sale.order:0 diff --git a/addons/sale/i18n/lt_LT.po b/addons/sale/i18n/lt_LT.po index cd87b16d96f..5965a091973 100644 --- a/addons/sale/i18n/lt_LT.po +++ b/addons/sale/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index a4210722ecf..f89312fae27 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/nl_NL.po b/addons/sale/i18n/nl_NL.po index 2264d7e40c0..1ea30f3c7ce 100644 --- a/addons/sale/i18n/nl_NL.po +++ b/addons/sale/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/pl_PL.po b/addons/sale/i18n/pl_PL.po index 182abd5f042..05a90a61a09 100644 --- a/addons/sale/i18n/pl_PL.po +++ b/addons/sale/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index a3a3ed981d9..e00aad118eb 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1286,7 +1286,7 @@ msgstr "" #. module: sale #: view:sale.shop:0 msgid "Accounting" -msgstr "" +msgstr "Contas" #. module: sale #: selection:sale.config.picking_policy,order_policy:0 diff --git a/addons/sale/i18n/pt_PT.po b/addons/sale/i18n/pt_PT.po index 47658759dea..b92c7bc299c 100644 --- a/addons/sale/i18n/pt_PT.po +++ b/addons/sale/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ro_RO.po b/addons/sale/i18n/ro_RO.po index 8a24e43783c..7f6b667a354 100644 --- a/addons/sale/i18n/ro_RO.po +++ b/addons/sale/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ru_RU.po b/addons/sale/i18n/ru_RU.po index 1576a7211b1..cbdb4326ab3 100644 --- a/addons/sale/i18n/ru_RU.po +++ b/addons/sale/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+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 548131c58e5..7a875eb2f73 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sl_SL.po b/addons/sale/i18n/sl_SL.po index 723c2bc7a01..c84bc6b28c6 100644 --- a/addons/sale/i18n/sl_SL.po +++ b/addons/sale/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sv_SE.po b/addons/sale/i18n/sv_SE.po index b95dd9bd5db..9e8e3fbaa33 100644 --- a/addons/sale/i18n/sv_SE.po +++ b/addons/sale/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sv_SV.po b/addons/sale/i18n/sv_SV.po index 60ed2b43071..cc5b849597e 100644 --- a/addons/sale/i18n/sv_SV.po +++ b/addons/sale/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,9 +41,9 @@ msgid "Allotment Partner" msgstr "" #. module: sale -#: view:sale.order:0 -msgid "Recreate Invoice" -msgstr "Återskapa faktura" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: sale #: selection:sale.order,state:0 @@ -619,6 +619,11 @@ msgstr "" msgid "Order Ref" msgstr "" +#. module: sale +#: view:sale.order:0 +msgid "Recreate Invoice" +msgstr "Återskapa faktura" + #. module: sale #: field:sale.order,user_id:0 msgid "Salesman" diff --git a/addons/sale/i18n/tr_TR.po b/addons/sale/i18n/tr_TR.po index 91f2fd0fc96..a8e6890aa4c 100644 --- a/addons/sale/i18n/tr_TR.po +++ b/addons/sale/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/uk_UK.po b/addons/sale/i18n/uk_UK.po index 7d99e87bd51..fb226fca7d4 100644 --- a/addons/sale/i18n/uk_UK.po +++ b/addons/sale/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index 5d1e330eb32..db9fd23ca70 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index 15031a14e9c..7fb66918ced 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ar_AR.po b/addons/sale_analytic_plans/i18n/ar_AR.po index 47cd9ef4dfe..45522f2b145 100644 --- a/addons/sale_analytic_plans/i18n/ar_AR.po +++ b/addons/sale_analytic_plans/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/bg_BG.po b/addons/sale_analytic_plans/i18n/bg_BG.po index 7e6b2ae2dd8..8a074c31e61 100644 --- a/addons/sale_analytic_plans/i18n/bg_BG.po +++ b/addons/sale_analytic_plans/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/bs_BS.po b/addons/sale_analytic_plans/i18n/bs_BS.po index f3c5d19b8e2..8a69daf0e5c 100644 --- a/addons/sale_analytic_plans/i18n/bs_BS.po +++ b/addons/sale_analytic_plans/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ca_ES.po b/addons/sale_analytic_plans/i18n/ca_ES.po index 428975503f0..15324a97f25 100644 --- a/addons/sale_analytic_plans/i18n/ca_ES.po +++ b/addons/sale_analytic_plans/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/cs_CS.po b/addons/sale_analytic_plans/i18n/cs_CS.po index c3c0d227329..5b0b26ec73c 100644 --- a/addons/sale_analytic_plans/i18n/cs_CS.po +++ b/addons/sale_analytic_plans/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/cs_CZ.po b/addons/sale_analytic_plans/i18n/cs_CZ.po index dd77543c466..dd729d1c5aa 100644 --- a/addons/sale_analytic_plans/i18n/cs_CZ.po +++ b/addons/sale_analytic_plans/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/de_DE.po b/addons/sale_analytic_plans/i18n/de_DE.po index e70a873fe2c..4f9f3f02bc2 100644 --- a/addons/sale_analytic_plans/i18n/de_DE.po +++ b/addons/sale_analytic_plans/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index 52460096613..93d722a65d1 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/es_ES.po b/addons/sale_analytic_plans/i18n/es_ES.po index 3b8cfef6ad9..2fe3c56728b 100644 --- a/addons/sale_analytic_plans/i18n/es_ES.po +++ b/addons/sale_analytic_plans/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/et_EE.po b/addons/sale_analytic_plans/i18n/et_EE.po index 6ecdadfcdd3..a5825c5b531 100644 --- a/addons/sale_analytic_plans/i18n/et_EE.po +++ b/addons/sale_analytic_plans/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 msgid "Analytic Distribution" -msgstr "" +msgstr "Analüütiline jaotus" #. module: sale_analytic_plans #: constraint:ir.ui.view:0 @@ -28,5 +28,5 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: sale_analytic_plans #: model:ir.module.module,shortdesc:sale_analytic_plans.module_meta_information msgid "Sales Analytic Distribution Management" -msgstr "" +msgstr "Müükide analuutilise jaotuse haldamine" diff --git a/addons/sale_analytic_plans/i18n/fr_FR.po b/addons/sale_analytic_plans/i18n/fr_FR.po index 30933f0e2fe..1cbe4b4eb3a 100644 --- a/addons/sale_analytic_plans/i18n/fr_FR.po +++ b/addons/sale_analytic_plans/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/hr_HR.po b/addons/sale_analytic_plans/i18n/hr_HR.po index 81b9c8878e8..ef22dd76cbc 100644 --- a/addons/sale_analytic_plans/i18n/hr_HR.po +++ b/addons/sale_analytic_plans/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/hu_HU.po b/addons/sale_analytic_plans/i18n/hu_HU.po index 6947498945e..dbab3aeb68e 100644 --- a/addons/sale_analytic_plans/i18n/hu_HU.po +++ b/addons/sale_analytic_plans/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/it_IT.po b/addons/sale_analytic_plans/i18n/it_IT.po index ee1735fceb5..7e982473b9c 100644 --- a/addons/sale_analytic_plans/i18n/it_IT.po +++ b/addons/sale_analytic_plans/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/lt_LT.po b/addons/sale_analytic_plans/i18n/lt_LT.po index 2c0eaa7a573..1bdc1b4ee2b 100644 --- a/addons/sale_analytic_plans/i18n/lt_LT.po +++ b/addons/sale_analytic_plans/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index d4e92037fad..0feb495ebe4 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/nl_NL.po b/addons/sale_analytic_plans/i18n/nl_NL.po index bded64fb902..ec2bf7a90e4 100644 --- a/addons/sale_analytic_plans/i18n/nl_NL.po +++ b/addons/sale_analytic_plans/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pl_PL.po b/addons/sale_analytic_plans/i18n/pl_PL.po index 7e8aec1fad8..159c0565c04 100644 --- a/addons/sale_analytic_plans/i18n/pl_PL.po +++ b/addons/sale_analytic_plans/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 79ba6b4cc4b..1aa6f410e4e 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pt_PT.po b/addons/sale_analytic_plans/i18n/pt_PT.po index fd26694796b..e8b0a4b969d 100644 --- a/addons/sale_analytic_plans/i18n/pt_PT.po +++ b/addons/sale_analytic_plans/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ro_RO.po b/addons/sale_analytic_plans/i18n/ro_RO.po index c27af1b14c6..f7f42606cd2 100644 --- a/addons/sale_analytic_plans/i18n/ro_RO.po +++ b/addons/sale_analytic_plans/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ru_RU.po b/addons/sale_analytic_plans/i18n/ru_RU.po index 426f3ffbda5..309b0dfeb71 100644 --- a/addons/sale_analytic_plans/i18n/ru_RU.po +++ b/addons/sale_analytic_plans/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot index d722e7f8227..6664cee0e48 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sl_SL.po b/addons/sale_analytic_plans/i18n/sl_SL.po index 2f68cedaf01..46488f64ef7 100644 --- a/addons/sale_analytic_plans/i18n/sl_SL.po +++ b/addons/sale_analytic_plans/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sv_SE.po b/addons/sale_analytic_plans/i18n/sv_SE.po index 407bbbfe9ee..547636149ee 100644 --- a/addons/sale_analytic_plans/i18n/sv_SE.po +++ b/addons/sale_analytic_plans/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sv_SV.po b/addons/sale_analytic_plans/i18n/sv_SV.po index f9e1997e997..cd1f894d124 100644 --- a/addons/sale_analytic_plans/i18n/sv_SV.po +++ b/addons/sale_analytic_plans/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/tr_TR.po b/addons/sale_analytic_plans/i18n/tr_TR.po index 8e554330166..a96ca7c3e25 100644 --- a/addons/sale_analytic_plans/i18n/tr_TR.po +++ b/addons/sale_analytic_plans/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/uk_UK.po b/addons/sale_analytic_plans/i18n/uk_UK.po index 4e79e7f241e..ac66f725fb1 100644 --- a/addons/sale_analytic_plans/i18n/uk_UK.po +++ b/addons/sale_analytic_plans/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index 41bd2c97f9d..9d828d7a912 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index e0f1ba4c3b3..823fe1ef4e0 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/ar_AR.po b/addons/sale_crm/i18n/ar_AR.po index 51881a7ed49..c975b631d3b 100644 --- a/addons/sale_crm/i18n/ar_AR.po +++ b/addons/sale_crm/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/bg_BG.po b/addons/sale_crm/i18n/bg_BG.po index 8b5af7a5fcc..94461660476 100644 --- a/addons/sale_crm/i18n/bg_BG.po +++ b/addons/sale_crm/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "Аналтична сметка" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Отговорности на потребителя" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/bs_BS.po b/addons/sale_crm/i18n/bs_BS.po index 1bf091e6c93..11857cacc30 100644 --- a/addons/sale_crm/i18n/bs_BS.po +++ b/addons/sale_crm/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/ca_ES.po b/addons/sale_crm/i18n/ca_ES.po index 18f709f0385..af5a1471961 100644 --- a/addons/sale_crm/i18n/ca_ES.po +++ b/addons/sale_crm/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "Pressupost oportunitat CRM" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Oportunitat - Analítica" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Client" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Compte analític" msgid "Convert opportunity to quotation" msgstr "Converteix oportunitat en pressupost" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Converteix a pressupost" msgid "Check this to close the case after having created the sale order." msgstr "Marqueu aquesta opció per tancar el cas després d'haver creat la comanda de venda." -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Client" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Usuari responsable" msgid "Reflect the contract made with customer" msgstr "Reflexa el contracte realitzat amb el client" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Oportunitat - Analítica" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/cs_CS.po b/addons/sale_crm/i18n/cs_CS.po index 764e5577bc2..61b27279e39 100644 --- a/addons/sale_crm/i18n/cs_CS.po +++ b/addons/sale_crm/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/cs_CZ.po b/addons/sale_crm/i18n/cs_CZ.po index d4aada1c7bc..c7103673b11 100644 --- a/addons/sale_crm/i18n/cs_CZ.po +++ b/addons/sale_crm/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/de_DE.po b/addons/sale_crm/i18n/de_DE.po index e01cd974b3e..5d21c24fa6c 100644 --- a/addons/sale_crm/i18n/de_DE.po +++ b/addons/sale_crm/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "CRM Verkaufschance Angebot" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Verkaufschance Analyse" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Kunde" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Analytisches Konto" msgid "Convert opportunity to quotation" msgstr "Konvertiere Verkaufschance zu Angebot" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Erzeuge Angebot" msgid "Check this to close the case after having created the sale order." msgstr "Prüfe dieses um den Fall abzuschliessen wenn ein Verkaufsauftrag generiert wurde" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Kunde" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Verkäufer" msgid "Reflect the contract made with customer" msgstr "Reflektiert den Vertrag mit Kunden" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Verkaufschance Analyse" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index d7efd2d75c9..f6823c0b517 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/es_ES.po b/addons/sale_crm/i18n/es_ES.po index d4023d27c45..57633c4e899 100644 --- a/addons/sale_crm/i18n/es_ES.po +++ b/addons/sale_crm/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "Presupuesto oportunidad CRM" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Oportunidad - Analítica" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Cliente" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Cuenta analítica" msgid "Convert opportunity to quotation" msgstr "Convertir oportunidad en presupuesto" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Convertir a presupuesto" msgid "Check this to close the case after having created the sale order." msgstr "Marque esta opción para cerrar el caso después de haber creado el pedido de venta." -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Cliente" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Usuario responsable" msgid "Reflect the contract made with customer" msgstr "Reflejar el contrato hecho con el cliente" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Oportunidad - Analítica" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/et_EE.po b/addons/sale_crm/i18n/et_EE.po index 93c9c917b2b..3ab85abd7d1 100644 --- a/addons/sale_crm/i18n/et_EE.po +++ b/addons/sale_crm/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" #. module: sale_crm #: model:process.transition,name:sale_crm.process_transition_crmopportunityquotation msgid "Crm opportunity quotation" -msgstr "" +msgstr "KSH võimaluste noteering" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Klient" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 msgid "Use this partner if there is no partner on the case" -msgstr "" +msgstr "Kasuta seda partnerit, kui juhtumil puudub partner" #. module: sale_crm #: wizard_button:sale_crm.make_case,init,create:0 @@ -38,7 +38,7 @@ msgstr "Loo" #. module: sale_crm #: selection:crm.case.make_order,init,picking_policy:0 msgid "All at once" -msgstr "" +msgstr "Kõik korraga" #. module: sale_crm #: constraint:ir.ui.view:0 @@ -48,16 +48,28 @@ msgstr "Vigane XML vaate arhitektuurile!" #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_crmopportunityquotation msgid "Opportunity goes into the quotation" -msgstr "" +msgstr "Võimalus läheb noteeringuks" #. module: sale_crm #: model:process.node,name:sale_crm.process_node_contractanalytic0 msgid "Analytic account" -msgstr "" +msgstr "Analüütiline konto" #. module: sale_crm #: model:process.node,note:sale_crm.process_node_crmquotation0 msgid "Convert opportunity to quotation" +msgstr "Muuda võimalus noteeringuks" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" msgstr "" #. module: sale_crm @@ -68,32 +80,32 @@ msgstr "Sinu toiming" #. module: sale_crm #: wizard_field:crm.case.make_order,init,picking_policy:0 msgid "Packing Policy" -msgstr "" +msgstr "Pakkimise poliitika" #. module: sale_crm #: wizard_button:crm.case.make_order,init,order:0 msgid "Create Quote" -msgstr "" +msgstr "Loo noteering" #. module: sale_crm #: model:process.node,note:sale_crm.process_node_contractpricelist0 msgid "Contract Volume (pricelist)" -msgstr "" +msgstr "Lepingu maht (hinnakiri)" #. module: sale_crm #: model:process.node,name:sale_crm.process_node_crmopportunity0 msgid "CRM Opportunity" -msgstr "" +msgstr "KSH võimalus" #. module: sale_crm #: model:ir.module.module,shortdesc:sale_crm.module_meta_information msgid "Sale CRM Stuff" -msgstr "" +msgstr "Müügi kliendisuhete halduse võimalused" #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunityquotation0 msgid "Opportunity convert into quotation" -msgstr "" +msgstr "Võimaluse muutmine noteeringuks" #. module: sale_crm #: selection:crm.case.make_order,init,picking_policy:0 @@ -103,7 +115,7 @@ msgstr "Otsetarne" #. module: sale_crm #: model:process.transition,name:sale_crm.process_transition_opportunityquotation0 msgid "Opportunity Quotation" -msgstr "" +msgstr "Võimaluse noteering" #. module: sale_crm #: model:process.node,name:sale_crm.process_node_crmquotation0 @@ -114,22 +126,17 @@ msgstr "Hinnapakkumine" #: view:crm.case:0 #: wizard_view:crm.case.make_order,init:0 msgid "Convert to Quote" -msgstr "" +msgstr "Muuda noteeringuks" #. module: sale_crm #: help:crm.case.make_order,init,close:0 msgid "Check this to close the case after having created the sale order." -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Klient" +msgstr "Märgi see, et sulgeda juhtum pärast müügikorralduse loomist." #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" -msgstr "" +msgstr "Võimaluse muutmine hinnakirjaks" #. module: sale_crm #: wizard_field:sale_crm.make_case,init,user:0 @@ -139,7 +146,12 @@ msgstr "Kasutaja vastutada" #. module: sale_crm #: model:process.node,note:sale_crm.process_node_contractanalytic0 msgid "Reflect the contract made with customer" -msgstr "" +msgstr "Kajasta kliendiga sõlmitud lepingut" + +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Võimaluste analüüs" #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 @@ -165,7 +177,7 @@ msgstr "Pood" #. module: sale_crm #: model:process.node,note:sale_crm.process_node_crmopportunity0 msgid "The CRM Opportunity can lead to a quotation." -msgstr "" +msgstr "KSH võimalus võib viia noteeringuni" #. module: sale_crm #: model:process.transition,name:sale_crm.process_transition_opportunitypricelist0 @@ -186,7 +198,7 @@ msgstr "Juhtumi kirjeldus" #: wizard_field:crm.case.make_order,init,analytic_account:0 #: model:process.transition,note:sale_crm.process_transition_opportunityanalytic0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: sale_crm #: model:ir.actions.wizard,name:sale_crm.sale_crm_wizard diff --git a/addons/sale_crm/i18n/fr_FR.po b/addons/sale_crm/i18n/fr_FR.po index 6b2a3eeaf46..4983f1f482d 100644 --- a/addons/sale_crm/i18n/fr_FR.po +++ b/addons/sale_crm/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "Chiffrage de l'opportunité" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Analytique de l'opportunité" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Client" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Compte analytique" msgid "Convert opportunity to quotation" msgstr "Convertir une oportunité en chiffrage" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Convertir en chiffrage" msgid "Check this to close the case after having created the sale order." msgstr "Vérifier ceci pour fermer le cas après la création de la commande de vente" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Client" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Responsable" msgid "Reflect the contract made with customer" msgstr "Refleter le contrat passé avec le client" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Analytique de l'opportunité" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/hr_HR.po b/addons/sale_crm/i18n/hr_HR.po index b35afff3fb3..37ffab18b46 100644 --- a/addons/sale_crm/i18n/hr_HR.po +++ b/addons/sale_crm/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/hu_HU.po b/addons/sale_crm/i18n/hu_HU.po index 54cfcf234b7..a14fcc286b4 100644 --- a/addons/sale_crm/i18n/hu_HU.po +++ b/addons/sale_crm/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/it_IT.po b/addons/sale_crm/i18n/it_IT.po index 1f6dee720d8..7fece0a96dc 100644 --- a/addons/sale_crm/i18n/it_IT.po +++ b/addons/sale_crm/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "Crm possibilità di preventivo" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Opportunità Analitica" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Cliente" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Contabilità Analitica" msgid "Convert opportunity to quotation" msgstr "Converte opportunità in preventivo" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Converti in preventivo" msgid "Check this to close the case after having created the sale order." msgstr "Selezionare questo per chiudere il caso dopo aver creato l'ordine di vendita" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Cliente" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Utente Responsabile" msgid "Reflect the contract made with customer" msgstr "Rispecchia il contratto stipulato con il client" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Opportunità Analitica" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/lt_LT.po b/addons/sale_crm/i18n/lt_LT.po index 6ca8de1d598..ba4b9c35974 100644 --- a/addons/sale_crm/i18n/lt_LT.po +++ b/addons/sale_crm/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index a25e719645a..0ec0b48be71 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/nl_NL.po b/addons/sale_crm/i18n/nl_NL.po index 0e67105e48c..403da273d3e 100644 --- a/addons/sale_crm/i18n/nl_NL.po +++ b/addons/sale_crm/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/pl_PL.po b/addons/sale_crm/i18n/pl_PL.po index 953e6222fe2..a737c59ed38 100644 --- a/addons/sale_crm/i18n/pl_PL.po +++ b/addons/sale_crm/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 8b13e6dd77e..0e5bf826e1d 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,9 @@ msgid "Crm opportunity quotation" msgstr "Cotação da oportunidade de Crm" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "Oportunidade analítica" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" +msgstr "Cliente" #. module: sale_crm #: help:crm.case.make_order,init,partner_id:0 @@ -60,6 +60,18 @@ msgstr "Conta analítica" msgid "Convert opportunity to quotation" msgstr "Converter oportunidade para cotação" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "Converter para cotação" msgid "Check this to close the case after having created the sale order." msgstr "Verifique isto para fechar o caso depois de ter criado o pedido de venda." -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "Cliente" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Usuário responsável" msgid "Reflect the contract made with customer" msgstr "Refletir o contrato feito com o cliente" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "Oportunidade analítica" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/pt_PT.po b/addons/sale_crm/i18n/pt_PT.po index 98e5069cd9a..94b4010a6e4 100644 --- a/addons/sale_crm/i18n/pt_PT.po +++ b/addons/sale_crm/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "Conta da Contabilidade Analítica" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Utilizador Responsável" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/ro_RO.po b/addons/sale_crm/i18n/ro_RO.po index 3f00f6a6591..aef3a78bdb9 100644 --- a/addons/sale_crm/i18n/ro_RO.po +++ b/addons/sale_crm/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:27+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/ru_RU.po b/addons/sale_crm/i18n/ru_RU.po index 7dbd99dac02..bbe14953ced 100644 --- a/addons/sale_crm/i18n/ru_RU.po +++ b/addons/sale_crm/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "Счет аналитики" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "Ответственный пользователь" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/sale_crm.pot b/addons/sale_crm/i18n/sale_crm.pot index 6ec8d0dcde8..6b061bdb14a 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/sl_SL.po b/addons/sale_crm/i18n/sl_SL.po index a77caec8ba5..4f151c7aed1 100644 --- a/addons/sale_crm/i18n/sl_SL.po +++ b/addons/sale_crm/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/sv_SE.po b/addons/sale_crm/i18n/sv_SE.po index 353e6193b23..565b80f1085 100644 --- a/addons/sale_crm/i18n/sv_SE.po +++ b/addons/sale_crm/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/sv_SV.po b/addons/sale_crm/i18n/sv_SV.po index 770e643870d..607bb2136e2 100644 --- a/addons/sale_crm/i18n/sv_SV.po +++ b/addons/sale_crm/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/tr_TR.po b/addons/sale_crm/i18n/tr_TR.po index 3e4f3592db2..d0a6b7c7abb 100644 --- a/addons/sale_crm/i18n/tr_TR.po +++ b/addons/sale_crm/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/uk_UK.po b/addons/sale_crm/i18n/uk_UK.po index 47d524c4c7e..7cb44981c7a 100644 --- a/addons/sale_crm/i18n/uk_UK.po +++ b/addons/sale_crm/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index 764b3e33c33..3297661f2d3 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "分析帐号" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "当事人" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index ef0ebb37025..8c2ad6cef85 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:27+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:27+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "Crm opportunity quotation" msgstr "" #. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" +#: wizard_field:crm.case.make_order,init,partner_id:0 +msgid "Customer" msgstr "" #. module: sale_crm @@ -60,6 +60,18 @@ msgstr "" msgid "Convert opportunity to quotation" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Data Insufficient!" +msgstr "" + +#. module: sale_crm +#: code:addons/sale_crm/wizard/makesale.py:0 +#, python-format +msgid "Customer has no addresses defined!" +msgstr "" + #. module: sale_crm #: wizard_field:sale_crm.make_case,init,description:0 msgid "Your action" @@ -121,11 +133,6 @@ msgstr "" msgid "Check this to close the case after having created the sale order." msgstr "" -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - #. module: sale_crm #: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 msgid "Opporunity convert to the Pricelist" @@ -141,6 +148,11 @@ msgstr "" msgid "Reflect the contract made with customer" msgstr "" +#. module: sale_crm +#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 +msgid "Opportunity Analytic" +msgstr "" + #. module: sale_crm #: wizard_field:crm.case.make_order,init,products:0 msgid "Products" diff --git a/addons/sale_delivery_report/i18n/ar_AR.po b/addons/sale_delivery_report/i18n/ar_AR.po index a90babe6098..296b0efecc4 100644 --- a/addons/sale_delivery_report/i18n/ar_AR.po +++ b/addons/sale_delivery_report/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/bg_BG.po b/addons/sale_delivery_report/i18n/bg_BG.po index e9a1b55a22f..2e4537189a2 100644 --- a/addons/sale_delivery_report/i18n/bg_BG.po +++ b/addons/sale_delivery_report/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/bs_BS.po b/addons/sale_delivery_report/i18n/bs_BS.po index d0b366ccca7..a4c94a4442b 100644 --- a/addons/sale_delivery_report/i18n/bs_BS.po +++ b/addons/sale_delivery_report/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ca_ES.po b/addons/sale_delivery_report/i18n/ca_ES.po index 05c7e338a81..5f57fe77142 100644 --- a/addons/sale_delivery_report/i18n/ca_ES.po +++ b/addons/sale_delivery_report/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/cs_CS.po b/addons/sale_delivery_report/i18n/cs_CS.po index 9063278c8ab..c61a0cabdec 100644 --- a/addons/sale_delivery_report/i18n/cs_CS.po +++ b/addons/sale_delivery_report/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/cs_CZ.po b/addons/sale_delivery_report/i18n/cs_CZ.po index 0365d612c5b..1d9e0337f20 100644 --- a/addons/sale_delivery_report/i18n/cs_CZ.po +++ b/addons/sale_delivery_report/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/de_DE.po b/addons/sale_delivery_report/i18n/de_DE.po index 238bb6b4e53..b2ccd4bd445 100644 --- a/addons/sale_delivery_report/i18n/de_DE.po +++ b/addons/sale_delivery_report/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/es_AR.po b/addons/sale_delivery_report/i18n/es_AR.po index 31d4253d876..56ec51202f2 100644 --- a/addons/sale_delivery_report/i18n/es_AR.po +++ b/addons/sale_delivery_report/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/es_ES.po b/addons/sale_delivery_report/i18n/es_ES.po index eb6e92a2714..b58cfbfc170 100644 --- a/addons/sale_delivery_report/i18n/es_ES.po +++ b/addons/sale_delivery_report/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/et_EE.po b/addons/sale_delivery_report/i18n/et_EE.po index 6ed27ed4af9..312eb875c59 100644 --- a/addons/sale_delivery_report/i18n/et_EE.po +++ b/addons/sale_delivery_report/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,17 +48,17 @@ msgstr "Tarnetellimus" #. module: sale_delivery_report #: model:ir.module.module,shortdesc:sale_delivery_report.module_meta_information msgid "Print Delivery Order" -msgstr "" +msgstr "Prindi kättetoimetamise aruanne" #. module: sale_delivery_report #: rml:sale.shipping:0 msgid "Carrier" -msgstr "" +msgstr "Tarnija" #. module: sale_delivery_report #: rml:sale.shipping:0 msgid "Invoiced to" -msgstr "" +msgstr "Kellele arveldatud:" #. module: sale_delivery_report #: rml:sale.shipping:0 diff --git a/addons/sale_delivery_report/i18n/fr_FR.po b/addons/sale_delivery_report/i18n/fr_FR.po index c4278b1561e..144cc41999f 100644 --- a/addons/sale_delivery_report/i18n/fr_FR.po +++ b/addons/sale_delivery_report/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/hr_HR.po b/addons/sale_delivery_report/i18n/hr_HR.po index d8ce08f6472..54ca561e53b 100644 --- a/addons/sale_delivery_report/i18n/hr_HR.po +++ b/addons/sale_delivery_report/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/hu_HU.po b/addons/sale_delivery_report/i18n/hu_HU.po index 61c230a7b2f..ff46b1a7716 100644 --- a/addons/sale_delivery_report/i18n/hu_HU.po +++ b/addons/sale_delivery_report/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/it_IT.po b/addons/sale_delivery_report/i18n/it_IT.po index cf66b80ab32..0c0fd510caf 100644 --- a/addons/sale_delivery_report/i18n/it_IT.po +++ b/addons/sale_delivery_report/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/lt_LT.po b/addons/sale_delivery_report/i18n/lt_LT.po index 5bc3f912da1..3e476d708ee 100644 --- a/addons/sale_delivery_report/i18n/lt_LT.po +++ b/addons/sale_delivery_report/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/nl_BE.po b/addons/sale_delivery_report/i18n/nl_BE.po index 65ac0724b04..db0b3a53f70 100644 --- a/addons/sale_delivery_report/i18n/nl_BE.po +++ b/addons/sale_delivery_report/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/nl_NL.po b/addons/sale_delivery_report/i18n/nl_NL.po index 99bb33f27ee..10c211d7337 100644 --- a/addons/sale_delivery_report/i18n/nl_NL.po +++ b/addons/sale_delivery_report/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pl_PL.po b/addons/sale_delivery_report/i18n/pl_PL.po index 98e17fc00c4..9d2cdbebd0d 100644 --- a/addons/sale_delivery_report/i18n/pl_PL.po +++ b/addons/sale_delivery_report/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pt_BR.po b/addons/sale_delivery_report/i18n/pt_BR.po index 4369d3be9ed..fd17425316c 100644 --- a/addons/sale_delivery_report/i18n/pt_BR.po +++ b/addons/sale_delivery_report/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pt_PT.po b/addons/sale_delivery_report/i18n/pt_PT.po index c2c2d6d6c48..9a01a86e975 100644 --- a/addons/sale_delivery_report/i18n/pt_PT.po +++ b/addons/sale_delivery_report/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ro_RO.po b/addons/sale_delivery_report/i18n/ro_RO.po index 2287bf98e96..62d9356f4e7 100644 --- a/addons/sale_delivery_report/i18n/ro_RO.po +++ b/addons/sale_delivery_report/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ru_RU.po b/addons/sale_delivery_report/i18n/ru_RU.po index a89f76c76ff..122e513ca7c 100644 --- a/addons/sale_delivery_report/i18n/ru_RU.po +++ b/addons/sale_delivery_report/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sale_delivery_report.pot b/addons/sale_delivery_report/i18n/sale_delivery_report.pot index b5abbd394ac..91724276417 100644 --- a/addons/sale_delivery_report/i18n/sale_delivery_report.pot +++ b/addons/sale_delivery_report/i18n/sale_delivery_report.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sl_SL.po b/addons/sale_delivery_report/i18n/sl_SL.po index 92a85a27496..d7270386933 100644 --- a/addons/sale_delivery_report/i18n/sl_SL.po +++ b/addons/sale_delivery_report/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sv_SE.po b/addons/sale_delivery_report/i18n/sv_SE.po index dea705a35a9..e9ed85fb91f 100644 --- a/addons/sale_delivery_report/i18n/sv_SE.po +++ b/addons/sale_delivery_report/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sv_SV.po b/addons/sale_delivery_report/i18n/sv_SV.po index 6d6bb00e246..687a4d2f082 100644 --- a/addons/sale_delivery_report/i18n/sv_SV.po +++ b/addons/sale_delivery_report/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/tr_TR.po b/addons/sale_delivery_report/i18n/tr_TR.po index 6f804aa2592..13083c14f0a 100644 --- a/addons/sale_delivery_report/i18n/tr_TR.po +++ b/addons/sale_delivery_report/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/uk_UK.po b/addons/sale_delivery_report/i18n/uk_UK.po index f90c53acfe3..34b80bdd9c5 100644 --- a/addons/sale_delivery_report/i18n/uk_UK.po +++ b/addons/sale_delivery_report/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/zh_CN.po b/addons/sale_delivery_report/i18n/zh_CN.po index 1006a18b07b..fc78b572979 100644 --- a/addons/sale_delivery_report/i18n/zh_CN.po +++ b/addons/sale_delivery_report/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/zh_TW.po b/addons/sale_delivery_report/i18n/zh_TW.po index 482437a3606..8c0fc6ddc90 100644 --- a/addons/sale_delivery_report/i18n/zh_TW.po +++ b/addons/sale_delivery_report/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ar_AR.po b/addons/sale_journal/i18n/ar_AR.po index 67e54a01287..ddfd798954e 100644 --- a/addons/sale_journal/i18n/ar_AR.po +++ b/addons/sale_journal/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/bg_BG.po b/addons/sale_journal/i18n/bg_BG.po index 443c382b050..19e85ec2e09 100644 --- a/addons/sale_journal/i18n/bg_BG.po +++ b/addons/sale_journal/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/bs_BS.po b/addons/sale_journal/i18n/bs_BS.po index f13d127b718..bf02eb6fd2c 100644 --- a/addons/sale_journal/i18n/bs_BS.po +++ b/addons/sale_journal/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ca_ES.po b/addons/sale_journal/i18n/ca_ES.po index e3a8508fe7b..1ab494784bc 100644 --- a/addons/sale_journal/i18n/ca_ES.po +++ b/addons/sale_journal/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/cs_CS.po b/addons/sale_journal/i18n/cs_CS.po index 0d411033362..7e71984a539 100644 --- a/addons/sale_journal/i18n/cs_CS.po +++ b/addons/sale_journal/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,6 +32,11 @@ msgstr "" msgid "assigned" msgstr "" +#. module: sale_journal +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: sale_journal #: selection:sale_journal.sale.stats,state:0 msgid "Waiting Schedule" diff --git a/addons/sale_journal/i18n/cs_CZ.po b/addons/sale_journal/i18n/cs_CZ.po index 23fe7ebb11c..2f9f7e4f4d4 100644 --- a/addons/sale_journal/i18n/cs_CZ.po +++ b/addons/sale_journal/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/de_DE.po b/addons/sale_journal/i18n/de_DE.po index 8c852eaf9a7..fe62bef2b23 100644 --- a/addons/sale_journal/i18n/de_DE.po +++ b/addons/sale_journal/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index 59468d87d84..6670e822806 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/es_ES.po b/addons/sale_journal/i18n/es_ES.po index f0a73b8f48b..b6d41708695 100644 --- a/addons/sale_journal/i18n/es_ES.po +++ b/addons/sale_journal/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/et_EE.po b/addons/sale_journal/i18n/et_EE.po index 7d7945b4d7d..0e95a307d5f 100644 --- a/addons/sale_journal/i18n/et_EE.po +++ b/addons/sale_journal/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "määratud" #. module: sale_journal #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: sale_journal #: selection:sale_journal.sale.stats,state:0 @@ -209,7 +209,7 @@ msgstr "Müügid päeviku järgi (see kuu)" #. module: sale_journal #: selection:sale_journal.sale.stats,state:0 msgid "Manual in progress" -msgstr "" +msgstr "Edenemisel käsitsi" #. module: sale_journal #: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal_tree @@ -357,7 +357,7 @@ msgstr "Kood" #: view:sale_journal.picking.journal:0 #: view:sale_journal.sale.journal:0 msgid "Open Journal" -msgstr "" +msgstr "Lahtine päevik" #. module: sale_journal #: view:sale_journal.sale.journal:0 diff --git a/addons/sale_journal/i18n/fr_FR.po b/addons/sale_journal/i18n/fr_FR.po index b2966193645..7cfee4900da 100644 --- a/addons/sale_journal/i18n/fr_FR.po +++ b/addons/sale_journal/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/hr_HR.po b/addons/sale_journal/i18n/hr_HR.po index 274e3eea317..ed36771379f 100644 --- a/addons/sale_journal/i18n/hr_HR.po +++ b/addons/sale_journal/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/hu_HU.po b/addons/sale_journal/i18n/hu_HU.po index 338e23a0f3d..2abef6ac0d3 100644 --- a/addons/sale_journal/i18n/hu_HU.po +++ b/addons/sale_journal/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/it_IT.po b/addons/sale_journal/i18n/it_IT.po index 465aa3c963b..b5be7c4a002 100644 --- a/addons/sale_journal/i18n/it_IT.po +++ b/addons/sale_journal/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/lt_LT.po b/addons/sale_journal/i18n/lt_LT.po index 6c7edb92005..21d25f24799 100644 --- a/addons/sale_journal/i18n/lt_LT.po +++ b/addons/sale_journal/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index cfb7bc0896d..948607c7526 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/nl_NL.po b/addons/sale_journal/i18n/nl_NL.po index bf3c99673a6..0cf231bd481 100644 --- a/addons/sale_journal/i18n/nl_NL.po +++ b/addons/sale_journal/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pl_PL.po b/addons/sale_journal/i18n/pl_PL.po index 330a0307414..c02e22c8e60 100644 --- a/addons/sale_journal/i18n/pl_PL.po +++ b/addons/sale_journal/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index dfcb52b30ce..622f4e47745 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pt_PT.po b/addons/sale_journal/i18n/pt_PT.po index 8dff3cfd04b..d978abfd3e5 100644 --- a/addons/sale_journal/i18n/pt_PT.po +++ b/addons/sale_journal/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ro_RO.po b/addons/sale_journal/i18n/ro_RO.po index 9fd6b25d2f0..d191b75dfc7 100644 --- a/addons/sale_journal/i18n/ro_RO.po +++ b/addons/sale_journal/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ru_RU.po b/addons/sale_journal/i18n/ru_RU.po index c9b4edd4814..b96a22e4a23 100644 --- a/addons/sale_journal/i18n/ru_RU.po +++ b/addons/sale_journal/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+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 3719abd0d55..d13078998b4 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sl_SL.po b/addons/sale_journal/i18n/sl_SL.po index 44cc7fb93ef..80e07b0e8d6 100644 --- a/addons/sale_journal/i18n/sl_SL.po +++ b/addons/sale_journal/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sv_SE.po b/addons/sale_journal/i18n/sv_SE.po index 1b90e317fb7..aab0f6dc32f 100644 --- a/addons/sale_journal/i18n/sv_SE.po +++ b/addons/sale_journal/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sv_SV.po b/addons/sale_journal/i18n/sv_SV.po index fa3e4ad504f..b2af10b0324 100644 --- a/addons/sale_journal/i18n/sv_SV.po +++ b/addons/sale_journal/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,6 +32,11 @@ msgstr "" msgid "assigned" msgstr "" +#. module: sale_journal +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: sale_journal #: selection:sale_journal.sale.stats,state:0 msgid "Waiting Schedule" @@ -164,7 +169,7 @@ msgstr "" #. module: sale_journal #: model:ir.ui.menu,name:sale_journal.menu_definition_report_sales msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: sale_journal #: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal_tree_my diff --git a/addons/sale_journal/i18n/tr_TR.po b/addons/sale_journal/i18n/tr_TR.po index e9775ca195e..4129223f200 100644 --- a/addons/sale_journal/i18n/tr_TR.po +++ b/addons/sale_journal/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/uk_UK.po b/addons/sale_journal/i18n/uk_UK.po index 5b1768631b5..544df62f16a 100644 --- a/addons/sale_journal/i18n/uk_UK.po +++ b/addons/sale_journal/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index e9af105d59b..e2d31e67b9f 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index fd2e3b987d6..ad2309414a5 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/ar_AR.po b/addons/scrum/i18n/ar_AR.po index 08dd6c8971a..1d7e062a7f3 100644 --- a/addons/scrum/i18n/ar_AR.po +++ b/addons/scrum/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/bg_BG.po b/addons/scrum/i18n/bg_BG.po index 315ab52130d..7b423a07879 100644 --- a/addons/scrum/i18n/bg_BG.po +++ b/addons/scrum/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/bs_BS.po b/addons/scrum/i18n/bs_BS.po index 59df405ce1d..8afd00c2e4b 100644 --- a/addons/scrum/i18n/bs_BS.po +++ b/addons/scrum/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/ca_ES.po b/addons/scrum/i18n/ca_ES.po index f28a870290f..a50be5c1cc1 100644 --- a/addons/scrum/i18n/ca_ES.po +++ b/addons/scrum/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Treball realitzat" msgid "View sprint backlog" msgstr "Vista backlogs del sprint" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/cs_CS.po b/addons/scrum/i18n/cs_CS.po index a9baff1cfb4..18f54194e74 100644 --- a/addons/scrum/i18n/cs_CS.po +++ b/addons/scrum/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,8 +48,8 @@ msgid "Create task from backlogs" msgstr "" #. module: scrum -#: selection:scrum.project,state:0 -msgid "Template" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: scrum @@ -98,8 +98,8 @@ msgid "Delegated Tasks" msgstr "" #. module: scrum -#: field:scrum.task,progress:0 -msgid "Progress (%)" +#: help:scrum.project,warn_header:0 +msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." msgstr "" #. module: scrum @@ -236,6 +236,11 @@ msgstr "" msgid "Planned Hours" msgstr "" +#. module: scrum +#: selection:scrum.project,state:0 +msgid "Template" +msgstr "" + #. module: scrum #: field:scrum.product.backlog,priority:0 msgid "Priority" @@ -373,8 +378,8 @@ msgid "Create Tasks" msgstr "" #. module: scrum -#: help:scrum.project,warn_header:0 -msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." +#: field:scrum.task,progress:0 +msgid "Progress (%)" msgstr "" #. module: scrum @@ -497,6 +502,7 @@ msgid "Time Spent" msgstr "" #. module: scrum +#: field:scrum.project,complete_name:0 #: field:scrum.project,name:0 msgid "Project Name" msgstr "" @@ -568,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/cs_CZ.po b/addons/scrum/i18n/cs_CZ.po index a146bad8602..60109accf1e 100644 --- a/addons/scrum/i18n/cs_CZ.po +++ b/addons/scrum/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/de_DE.po b/addons/scrum/i18n/de_DE.po index afead6dc231..21788abd829 100644 --- a/addons/scrum/i18n/de_DE.po +++ b/addons/scrum/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Arbeit erledigt" msgid "View sprint backlog" msgstr "Anzeige Sprint Backlog" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/es_AR.po b/addons/scrum/i18n/es_AR.po index 7629e723a99..97003ad9252 100644 --- a/addons/scrum/i18n/es_AR.po +++ b/addons/scrum/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/es_ES.po b/addons/scrum/i18n/es_ES.po index da276593f7c..4a31adb7708 100644 --- a/addons/scrum/i18n/es_ES.po +++ b/addons/scrum/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Trabajo realizado" msgid "View sprint backlog" msgstr "Vista backlogs del sprint" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/et_EE.po b/addons/scrum/i18n/et_EE.po index 37fddec7757..6256ab65d28 100644 --- a/addons/scrum/i18n/et_EE.po +++ b/addons/scrum/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: scrum #: view:scrum.product.backlog:0 msgid "Scrum Product backlog" -msgstr "" +msgstr "Scrum toodete backlog" #. module: scrum #: field:scrum.meeting,name:0 @@ -28,7 +28,7 @@ msgstr "Koosoleku nimi" #. module: scrum #: model:process.transition,note:scrum.process_transition_backlogtask0 msgid "From backlog create task." -msgstr "" +msgstr "Loo ülesanne backlogist." #. module: scrum #: model:ir.actions.act_window,name:scrum.action_view_task4 @@ -40,22 +40,22 @@ msgstr "Minu ülesanded" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree6 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree6 msgid "My opened sprints (Product Owner)" -msgstr "" +msgstr "Minu avatud sprindid (toote omanik)" #. module: scrum #: model:process.node,note:scrum.process_node_productbacklog0 msgid "Create task from backlogs" -msgstr "" +msgstr "Loo ülesanded backlogist" #. module: scrum #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: scrum #: model:ir.module.module,shortdesc:scrum.module_meta_information msgid "Scrum, Agile Development Method" -msgstr "" +msgstr "Scrum, nobe arendamise meetod" #. module: scrum #: field:scrum.project,progress_rate:0 @@ -65,7 +65,7 @@ msgstr "Edenemine" #. module: scrum #: help:scrum.task,remaining_hours:0 msgid "Total remaining time, can be re-estimated periodically by the assignee of the task." -msgstr "" +msgstr "Järelejäänud aeg kokku. Seda saab ümberhinnata perioodiliselt isik, kellele ülesande on määratud." #. module: scrum #: field:scrum.project,child_id:0 @@ -75,12 +75,12 @@ msgstr "Alamprojekt" #. module: scrum #: view:scrum.meeting:0 msgid "What have you accomplished since yesterday ?" -msgstr "" +msgstr "Mida sa oled saavutanud eilsest alates?" #. module: scrum #: view:scrum.meeting:0 msgid "Are your Sprint Backlog estimate accurate ?" -msgstr "" +msgstr "Kas Teie Sprint Backlog hinnang on täpne?" #. module: scrum #: field:scrum.project,members:0 @@ -90,7 +90,7 @@ msgstr "Projekti liikmed" #. module: scrum #: view:scrum.project:0 msgid "Scrum Projects" -msgstr "" +msgstr "Scrum projektid" #. module: scrum #: field:scrum.task,child_ids:0 @@ -100,7 +100,7 @@ msgstr "Volitatud ülesanded" #. module: scrum #: help:scrum.project,warn_header:0 msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" +msgstr "Ülesande sulgemisel kliendile saadetava hoiatussõnumi algusesse lisatav päis." #. module: scrum #: field:scrum.task,priority:0 @@ -110,17 +110,17 @@ msgstr "Tähtsus" #. module: scrum #: model:ir.model,name:scrum.model_scrum_task msgid "Scrum Task" -msgstr "" +msgstr "Scrum ülesanne" #. module: scrum #: model:ir.actions.act_window,name:scrum.dblc_proj msgid "View project's backlog" -msgstr "" +msgstr "Vaata projekti backlogi" #. module: scrum #: help:scrum.project,members:0 msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "" +msgstr "Projekti liige. Ei kasutata ühegi arvutuse jaoks vaid puhtalt informatiivsel eesmärgil." #. module: scrum #: selection:scrum.product.backlog,priority:0 @@ -131,17 +131,17 @@ msgstr "Väga pakiline" #. module: scrum #: field:scrum.sprint,retrospective:0 msgid "Sprint Retrospective" -msgstr "" +msgstr "Tagasiulatuv sprint" #. module: scrum #: field:scrum.sprint,name:0 msgid "Sprint Name" -msgstr "" +msgstr "Sprindi nimi" #. module: scrum #: help:scrum.task,planned_hours:0 msgid "Estimated time to do the task, usually set by the project manager when the task is in draft state." -msgstr "" +msgstr "Eeldatav ajakulu ülesande tegemiseks. Enamasti seatakse projektihalduri poolt, kui ülesanne on mustandi olekus." #. module: scrum #: field:scrum.project,notes:0 @@ -153,7 +153,7 @@ msgstr "Märkused" #: model:ir.model,name:scrum.model_scrum_product_backlog #: field:scrum.task,product_backlog_id:0 msgid "Product Backlog" -msgstr "" +msgstr "Toodete Backlog" #. module: scrum #: field:scrum.sprint,project_id:0 @@ -164,7 +164,7 @@ msgstr "Projekt" #. module: scrum #: help:scrum.project,warn_manager:0 msgid "If you check this field, the project manager will receive a request each time a task is completed by his team." -msgstr "" +msgstr "Kui sa märgid selle välja siis projektihaldur saab päringu iga kord, kui ülesanne on lõpetatud tema meeskonna poolt." #. module: scrum #: selection:scrum.project,state:0 @@ -185,7 +185,7 @@ msgstr "Kirja päis" #. module: scrum #: field:scrum.project,sprint_size:0 msgid "Sprint Days" -msgstr "" +msgstr "Sprindi päevad" #. module: scrum #: field:scrum.sprint,date_stop:0 @@ -195,22 +195,22 @@ msgstr "Lõppkuupäev" #. module: scrum #: help:scrum.task,effective_hours:0 msgid "Computed using the sum of the task work done." -msgstr "" +msgstr "Arvutatud kasutades ülesandel tehtud töö summat." #. module: scrum #: help:scrum.project,warn_customer:0 msgid "If you check this, the user will have a popup when closing a task that propose a message to send by email to the customer." -msgstr "" +msgstr "Kui sa märgid selle siis avaneb kasutajal hüpikaken ülesande sulgemisel, mis pakub e-kirja saatmist kliendile." #. module: scrum #: model:ir.actions.act_window,name:scrum.action_sprint_task_open msgid "View sprint Tasks" -msgstr "" +msgstr "Vaata sprindi ülesandeid" #. module: scrum #: field:scrum.project,category_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analüütiline konto" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_view_task @@ -255,7 +255,7 @@ msgstr "Olek" #. module: scrum #: help:scrum.project,progress_rate:0 msgid "Percent of tasks closed according to the total of tasks todo." -msgstr "" +msgstr "Suletud ülesannete protsent kõigi tegemist vajavate ülesannete hulgast." #. module: scrum #: help:scrum.project,notes:0 @@ -265,12 +265,12 @@ msgstr "Projekti sisemine kirjeldus" #. module: scrum #: field:scrum.sprint,meetings_id:0 msgid "Daily Scrum" -msgstr "" +msgstr "Päevane scrum" #. module: scrum #: help:scrum.task,total_hours:0 msgid "Computed as: Time Spent + Remaining Time." -msgstr "" +msgstr "Arvutuskäik: kulutatud aeg + järelejäänud aeg" #. module: scrum #: field:scrum.task,type:0 @@ -280,7 +280,7 @@ msgstr "Liik" #. module: scrum #: view:scrum.project:0 msgid "Scrum Data" -msgstr "" +msgstr "Scrum andmed" #. module: scrum #: selection:scrum.product.backlog,priority:0 @@ -296,7 +296,7 @@ msgstr "Aeg kokku" #. module: scrum #: model:ir.ui.menu,name:scrum.next_id_67 msgid "Scrum" -msgstr "" +msgstr "Scrum" #. module: scrum #: field:scrum.project,planned_hours:0 @@ -339,7 +339,7 @@ msgstr "Ülesande üksikasjad" #. module: scrum #: model:ir.actions.act_window,name:scrum.dblc_proj2 msgid "View project's tasks" -msgstr "" +msgstr "Vaata projekti ülesandeid" #. module: scrum #: field:scrum.task,delay_hours:0 @@ -354,7 +354,7 @@ msgstr "Kontakt" #. module: scrum #: field:scrum.project,tasks:0 msgid "Scrum Tasks" -msgstr "" +msgstr "Scrum ülesanded" #. module: scrum #: field:scrum.meeting,date:0 @@ -391,18 +391,18 @@ msgstr "Arvutuskäik: kulutatud aeg / aeg kokku." #: field:scrum.project,scrum:0 #: field:scrum.task,scrum:0 msgid "Is Scrum" -msgstr "" +msgstr "On scrum" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_product_backlog_form_draft #: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form_draft msgid "Draft Backlogs" -msgstr "" +msgstr "Mustan backlogid" #. module: scrum #: field:scrum.sprint,backlog_ids:0 msgid "Sprint Backlog" -msgstr "" +msgstr "Sprint Backlog" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_view_task6 @@ -413,12 +413,12 @@ msgstr "Avatud ülesanded" #. module: scrum #: field:scrum.meeting,question_blocks:0 msgid "Blocks encountered" -msgstr "" +msgstr "Kohatud tõkked" #. module: scrum #: view:scrum.meeting:0 msgid "Optionnal Info" -msgstr "" +msgstr "Valikuline info" #. module: scrum #: help:scrum.project,total_hours:0 @@ -430,7 +430,7 @@ msgstr "Selle projektiga seotud ülesannete kogusumma tundides." #: view:scrum.meeting:0 #: view:scrum.sprint:0 msgid "Scrum Sprint" -msgstr "" +msgstr "Scrum sprint" #. module: scrum #: view:scrum.sprint:0 @@ -441,7 +441,7 @@ msgstr "Ülevaade" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree7 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree7 msgid "My opened sprints (Scrum Master)" -msgstr "" +msgstr "Minu avatud sprindid (Scrum meister)" #. module: scrum #: field:scrum.product.backlog,note:0 @@ -481,7 +481,7 @@ msgstr "Lahtine" #. module: scrum #: view:scrum.meeting:0 msgid "Is there anything blocking you ?" -msgstr "" +msgstr "Kas on midagi, mis sind blokeerib?" #. module: scrum #: field:scrum.product.backlog,state:0 @@ -494,7 +494,7 @@ msgstr "Staatus" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree msgid "Opened Sprints" -msgstr "" +msgstr "Avatud sprindid" #. module: scrum #: field:scrum.project,effective_hours:0 @@ -517,19 +517,19 @@ msgstr "Toote omanik" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree5 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree5 msgid "My Sprints (Scrum Master)" -msgstr "" +msgstr "Minu sprindid (Scrum valdaja)" #. module: scrum #: model:process.node,name:scrum.process_node_productbacklog0 #: view:scrum.product.backlog:0 msgid "Product backlog" -msgstr "" +msgstr "Toodete backlog" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_product_backlog_form #: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form msgid "Backlogs" -msgstr "" +msgstr "Backlogid" #. module: scrum #: field:scrum.product.backlog,user_id:0 @@ -546,18 +546,18 @@ msgstr "Aktiivne" #. module: scrum #: help:scrum.task,delay_hours:0 msgid "Computed as: Total Time - Estimated Time. It gives the difference of the time estimated by the project manager and the real time to close the task." -msgstr "" +msgstr "Arvutuskäik: aeg kokku - eeldatud aeg. See annab projektihalduri pool eeldatud aja ja tegelikult ülesande sulgemiseks kulunud aja vahe." #. module: scrum #: field:scrum.task,timebox_id:0 msgid "Timebox" -msgstr "" +msgstr "Ajalahter" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree2 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree2 msgid "Draft Sprints" -msgstr "" +msgstr "Mustand sprindid" #. module: scrum #: field:scrum.project,timesheet_id:0 @@ -572,6 +572,11 @@ msgstr "Töö tehtud" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_sprint_backlog_open msgid "View sprint backlog" +msgstr "Vaata sprint backlog'i" + +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" msgstr "" #. module: scrum @@ -587,22 +592,22 @@ msgstr "Omistatud" #. module: scrum #: field:scrum.meeting,question_backlog:0 msgid "Backlog Accurate" -msgstr "" +msgstr "Backlog täpne" #. module: scrum #: help:scrum.project,effective_hours:0 msgid "Sum of spent hours of all tasks related to this project." -msgstr "" +msgstr "Kõigi selle projektiga seotud ülesannetele kulunud aeg." #. module: scrum #: help:scrum.task,project_id:0 msgid "If you have [?] in the project name, it means there are no analytic account linked to this project." -msgstr "" +msgstr "Kui sul on [?] projekti nimes siis tähendab see, et projektiga pole seotud ühtegi analüütilist kontot." #. module: scrum #: help:scrum.project,planned_hours:0 msgid "Sum of planned hours of all tasks related to this project." -msgstr "" +msgstr "Kõigi selle projektiga seotud ülesannetele planeeritud aeg." #. module: scrum #: field:scrum.project,warn_customer:0 @@ -613,7 +618,7 @@ msgstr "Hoiata partnerit" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree4 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree4 msgid "My Sprints (Product Owner)" -msgstr "" +msgstr "Minu sprindid (Toote omanik)" #. module: scrum #: field:scrum.task,name:0 @@ -623,7 +628,7 @@ msgstr "Ülesande kokkuvõte" #. module: scrum #: help:scrum.project,category_id:0 msgid "Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc." -msgstr "" +msgstr "Seo see see projekt analüütilise kontoga, kui sa vajad finantshaldust projektidele. See võimaldab sul ühendada projekte eelarvetega, planeerimisega, kulu ja tulu analüüsidega, tööajalehtedega jms." #. module: scrum #: selection:scrum.product.backlog,state:0 @@ -666,7 +671,7 @@ msgstr "Töös" #. module: scrum #: field:scrum.sprint,review:0 msgid "Sprint Review" -msgstr "" +msgstr "Sprindi ülevaade" #. module: scrum #: constraint:ir.model:0 @@ -703,12 +708,12 @@ msgstr "Ajatabeli töötunnid, et kohandada gantt diagrammaruannet" #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree3 #: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree3 msgid "Sprints Done" -msgstr "" +msgstr "Tehtud sprindid" #. module: scrum #: model:process.transition,name:scrum.process_transition_backlogtask0 msgid "Backlog Task" -msgstr "" +msgstr "Backlog ülesanne" #. module: scrum #: view:scrum.product.backlog:0 @@ -729,7 +734,7 @@ msgstr "Muuda Projekte" #: model:ir.ui.menu,name:scrum.menu_action_meeting_form #: view:scrum.meeting:0 msgid "Scrum Meeting" -msgstr "" +msgstr "Scrum koosolek" #. module: scrum #: field:scrum.task,description:0 @@ -766,13 +771,13 @@ msgstr "Käimas (0-100)" #. module: scrum #: model:ir.model,name:scrum.model_scrum_team msgid "Scrum Team" -msgstr "" +msgstr "Scrum meeskond" #. module: scrum #: model:ir.model,name:scrum.model_scrum_project #: field:scrum.product.backlog,project_id:0 msgid "Scrum Project" -msgstr "" +msgstr "Scrum projekt" #. module: scrum #: field:scrum.project,parent_id:0 @@ -782,12 +787,12 @@ msgstr "Ülemprojekt" #. module: scrum #: view:scrum.sprint:0 msgid "Sprint Info" -msgstr "" +msgstr "Sprindi info" #. module: scrum #: field:scrum.sprint,scrum_master_id:0 msgid "Scrum Master" -msgstr "" +msgstr "Scrum meister" #. module: scrum #: field:scrum.product.backlog,tasks_id:0 @@ -802,7 +807,7 @@ msgstr "Kulutatud tunnid" #. module: scrum #: field:scrum.task,context_id:0 msgid "Context" -msgstr "" +msgstr "Kontekst" #. module: scrum #: field:scrum.task,total_hours:0 @@ -824,13 +829,13 @@ msgstr "Jada" #. module: scrum #: help:scrum.project,warn_footer:0 msgid "Footer added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" +msgstr "Ülesande sulgemisel kliendile saadetava hoiatussõnumi algusesse lisatav jalus." #. module: scrum #: model:ir.actions.act_window,name:scrum.action_product_backlog_form_open #: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form_open msgid "Opened Backlogs" -msgstr "" +msgstr "Avatud backlogid" #. module: scrum #: model:ir.actions.wizard,name:scrum.wizard_scrum_backlog_task @@ -853,7 +858,7 @@ msgstr "Kellele määratud" #: field:scrum.meeting,sprint_id:0 #: field:scrum.product.backlog,sprint_id:0 msgid "Sprint" -msgstr "" +msgstr "Sprint" #. module: scrum #: field:scrum.project,date_end:0 diff --git a/addons/scrum/i18n/fr_FR.po b/addons/scrum/i18n/fr_FR.po index 1874a57823d..c9fee81ffa4 100644 --- a/addons/scrum/i18n/fr_FR.po +++ b/addons/scrum/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Travail effectué" msgid "View sprint backlog" msgstr "Voir les retards du sprint" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/hr_HR.po b/addons/scrum/i18n/hr_HR.po index 664f76070d1..d1f155d6718 100644 --- a/addons/scrum/i18n/hr_HR.po +++ b/addons/scrum/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/hu_HU.po b/addons/scrum/i18n/hu_HU.po index fa0859a4f6b..3194e565d49 100644 --- a/addons/scrum/i18n/hu_HU.po +++ b/addons/scrum/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/it_IT.po b/addons/scrum/i18n/it_IT.po index 545a6a86ae9..af9dd935eae 100644 --- a/addons/scrum/i18n/it_IT.po +++ b/addons/scrum/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Lavoro Eseguito" msgid "View sprint backlog" msgstr "Visualizza Cronologia Sprint" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/lt_LT.po b/addons/scrum/i18n/lt_LT.po index f04f385fc19..91781f86998 100644 --- a/addons/scrum/i18n/lt_LT.po +++ b/addons/scrum/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/nl_BE.po b/addons/scrum/i18n/nl_BE.po index e326998a460..4b64329aa4f 100644 --- a/addons/scrum/i18n/nl_BE.po +++ b/addons/scrum/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/nl_NL.po b/addons/scrum/i18n/nl_NL.po index 2518f30ab68..a3d52045f7a 100644 --- a/addons/scrum/i18n/nl_NL.po +++ b/addons/scrum/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/pl_PL.po b/addons/scrum/i18n/pl_PL.po index 15c69c9c87a..55b2b6c799e 100644 --- a/addons/scrum/i18n/pl_PL.po +++ b/addons/scrum/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/pt_BR.po b/addons/scrum/i18n/pt_BR.po index e72c441f246..1e536b38427 100644 --- a/addons/scrum/i18n/pt_BR.po +++ b/addons/scrum/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/pt_PT.po b/addons/scrum/i18n/pt_PT.po index 63f24a6e783..c65b1494a04 100644 --- a/addons/scrum/i18n/pt_PT.po +++ b/addons/scrum/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Trabalho concluído" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/ro_RO.po b/addons/scrum/i18n/ro_RO.po index 8e3430fce2b..544fc889af7 100644 --- a/addons/scrum/i18n/ro_RO.po +++ b/addons/scrum/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/ru_RU.po b/addons/scrum/i18n/ru_RU.po index 9a98fd68c5d..65efc7122d7 100644 --- a/addons/scrum/i18n/ru_RU.po +++ b/addons/scrum/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "Работа выполнена" msgid "View sprint backlog" msgstr "Просмотреть задолженности по Sptint-у" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/scrum.pot b/addons/scrum/i18n/scrum.pot index 8ac064f632a..cda6b1c6abf 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/sl_SL.po b/addons/scrum/i18n/sl_SL.po index d6e91fd7f63..48cfac847f2 100644 --- a/addons/scrum/i18n/sl_SL.po +++ b/addons/scrum/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/sv_SE.po b/addons/scrum/i18n/sv_SE.po index 3f6bb9ac3b5..68cc6febe68 100644 --- a/addons/scrum/i18n/sv_SE.po +++ b/addons/scrum/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/sv_SV.po b/addons/scrum/i18n/sv_SV.po index 89da8302453..745450e5785 100644 --- a/addons/scrum/i18n/sv_SV.po +++ b/addons/scrum/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,8 +48,8 @@ msgid "Create task from backlogs" msgstr "" #. module: scrum -#: selection:scrum.project,state:0 -msgid "Template" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: scrum @@ -98,8 +98,8 @@ msgid "Delegated Tasks" msgstr "" #. module: scrum -#: field:scrum.task,progress:0 -msgid "Progress (%)" +#: help:scrum.project,warn_header:0 +msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." msgstr "" #. module: scrum @@ -236,6 +236,11 @@ msgstr "" msgid "Planned Hours" msgstr "" +#. module: scrum +#: selection:scrum.project,state:0 +msgid "Template" +msgstr "" + #. module: scrum #: field:scrum.product.backlog,priority:0 msgid "Priority" @@ -373,8 +378,8 @@ msgid "Create Tasks" msgstr "" #. module: scrum -#: help:scrum.project,warn_header:0 -msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." +#: field:scrum.task,progress:0 +msgid "Progress (%)" msgstr "" #. module: scrum @@ -497,6 +502,7 @@ msgid "Time Spent" msgstr "" #. module: scrum +#: field:scrum.project,complete_name:0 #: field:scrum.project,name:0 msgid "Project Name" msgstr "" @@ -568,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/tr_TR.po b/addons/scrum/i18n/tr_TR.po index fb03e884fb9..395d149f5f8 100644 --- a/addons/scrum/i18n/tr_TR.po +++ b/addons/scrum/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/uk_UK.po b/addons/scrum/i18n/uk_UK.po index 12fc72fe267..8371685c77c 100644 --- a/addons/scrum/i18n/uk_UK.po +++ b/addons/scrum/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/zh_CN.po b/addons/scrum/i18n/zh_CN.po index ca43bc673dc..b28586ebaf9 100644 --- a/addons/scrum/i18n/zh_CN.po +++ b/addons/scrum/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/scrum/i18n/zh_TW.po b/addons/scrum/i18n/zh_TW.po index e6030e8fc27..f8d5d813a3b 100644 --- a/addons/scrum/i18n/zh_TW.po +++ b/addons/scrum/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -574,6 +574,11 @@ msgstr "" msgid "View sprint backlog" msgstr "" +#. module: scrum +#: field:scrum.task,delegated_user_id:0 +msgid "Delegated To" +msgstr "" + #. module: scrum #: field:scrum.task,date_close:0 msgid "Date Closed" diff --git a/addons/stock/i18n/ar_AR.po b/addons/stock/i18n/ar_AR.po index 336d433251d..ac794c0724f 100644 --- a/addons/stock/i18n/ar_AR.po +++ b/addons/stock/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/bg_BG.po b/addons/stock/i18n/bg_BG.po index bff4354da22..15d8d5ecdf2 100644 --- a/addons/stock/i18n/bg_BG.po +++ b/addons/stock/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Изпратени продукти" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1810,8 +1805,8 @@ msgstr "Виртуални местонахождения" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2533,6 +2528,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "Състояние на движение" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/bs_BS.po b/addons/stock/i18n/bs_BS.po index e002f2fe58f..3cf5d211373 100644 --- a/addons/stock/i18n/bs_BS.po +++ b/addons/stock/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/ca_ES.po b/addons/stock/i18n/ca_ES.po index 08e444dd491..1198c283644 100644 --- a/addons/stock/i18n/ca_ES.po +++ b/addons/stock/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Productes enviats" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1820,8 +1815,8 @@ msgstr "Ubicacions virtuals" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2543,6 +2538,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "Estat de moviments" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/cs_CS.po b/addons/stock/i18n/cs_CS.po index da738da0e86..e106d0e137c 100644 --- a/addons/stock/i18n/cs_CS.po +++ b/addons/stock/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: stock +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: stock #: model:ir.module.module,shortdesc:stock.module_meta_information #: model:ir.ui.menu,name:stock.menu_stock_root @@ -226,6 +231,12 @@ msgstr "" msgid "STOCK_QUIT" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "No product in this location." +msgstr "" + #. module: stock #: field:stock.warehouse,lot_output_id:0 msgid "Location Output" @@ -251,6 +262,12 @@ msgstr "" msgid "Location Type" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice cannot be created from Packing." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-purchase" @@ -325,8 +342,8 @@ msgid "Location Name" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNINDENT" +#: view:stock.inventory:0 +msgid "Posted Inventory" msgstr "" #. module: stock @@ -710,6 +727,7 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "UserError" msgstr "" @@ -922,7 +940,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_INFO" +msgid "STOCK_UNDO" msgstr "" #. module: stock @@ -1003,6 +1021,12 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is not created" +msgstr "" + #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format @@ -1260,10 +1284,17 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Error" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is already created." +msgstr "" + #. module: stock #: selection:stock.picking,invoice_state:0 msgid "Not from Packing" @@ -1905,7 +1936,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_UNDO" +msgid "STOCK_DIALOG_INFO" msgstr "" #. module: stock @@ -1982,6 +2013,12 @@ msgstr "" msgid "STOCK_FIND" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "Message !" +msgstr "" + #. module: stock #: view:stock.inventory:0 msgid "Lot Inventory" @@ -2041,11 +2078,6 @@ msgstr "" msgid "Max. Planned Date" msgstr "" -#. module: stock -#: view:stock.inventory:0 -msgid "Posted Inventory" -msgstr "" - #. module: stock #: selection:stock.picking,type:0 msgid "Getting Goods" @@ -2061,6 +2093,13 @@ msgstr "" msgid "STOCK_MEDIA_PLAY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/inventory_merge.py:0 +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_delivery #: model:ir.ui.menu,name:stock.menu_action_picking_tree_delivery @@ -2151,6 +2190,12 @@ msgstr "" msgid "Configuration" msgstr "Konfigurace" +#. module: stock +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Please select one and only one inventory !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-project" @@ -2181,6 +2226,11 @@ msgstr "" msgid "Virtual Stock Value" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + #. module: stock #: selection:stock.move,state:0 msgid "Canceled" diff --git a/addons/stock/i18n/cs_CZ.po b/addons/stock/i18n/cs_CZ.po index 04f52e56271..be4c4688110 100644 --- a/addons/stock/i18n/cs_CZ.po +++ b/addons/stock/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/de_DE.po b/addons/stock/i18n/de_DE.po index 5bed3e0fd97..6c618c7ae99 100644 --- a/addons/stock/i18n/de_DE.po +++ b/addons/stock/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Produkte Ausliefern" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1820,8 +1815,8 @@ msgstr "Virtuelle Lagerorte" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2543,6 +2538,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "Status Warenbewegung" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index f96be20de35..158a46e877b 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,11 @@ msgstr "" msgid "Move State" msgstr "Estado del Movimiento" +#. 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/i18n/es_ES.po b/addons/stock/i18n/es_ES.po index 2e79b8d7dc4..54171925878 100644 --- a/addons/stock/i18n/es_ES.po +++ b/addons/stock/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Productos enviados" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1820,8 +1815,8 @@ msgstr "Ubicaciones virtuales" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2543,6 +2538,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "Estado de movimientos" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/et_EE.po b/addons/stock/i18n/et_EE.po index 4b5fd1fef16..4b38936c18c 100644 --- a/addons/stock/i18n/et_EE.po +++ b/addons/stock/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,22 +19,22 @@ msgstr "" #: code:addons/stock/product.py:0 #, python-format msgid "Futur Stock" -msgstr "" +msgstr "Tuleviku laoseis" #. module: stock #: selection:stock.location,allocation_method:0 msgid "LIFO" -msgstr "" +msgstr "LIFO" #. module: stock #: field:stock.location,chained_location_id:0 msgid "Chained Location If Fixed" -msgstr "" +msgstr "Ahelasukoht kui fikseeritud" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SAVE" -msgstr "" +msgstr "STOCK_SAVE" #. module: stock #: model:stock.location,name:stock.stock_location_15 @@ -44,12 +44,12 @@ msgstr "Alamtooted" #. module: stock #: selection:stock.location,icon:0 msgid "terp-account" -msgstr "" +msgstr "terp-konto" #. module: stock #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: stock #: model:ir.module.module,shortdesc:stock.module_meta_information @@ -60,7 +60,7 @@ msgstr "Laohaldus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SORT_ASCENDING" -msgstr "" +msgstr "STOCK_SORT_ASCENDING" #. module: stock #: field:stock.production.lot.revision,indice:0 @@ -70,12 +70,12 @@ msgstr "Kontrollimine" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_FORWARD" -msgstr "" +msgstr "STOCK_MEDIA_FORWARD" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ZOOM_100" -msgstr "" +msgstr "STOCK_ZOOM_100" #. module: stock #: xsl:stock.location.overview:0 @@ -86,17 +86,17 @@ msgstr "Mõõtühik" #. module: stock #: model:ir.actions.wizard,name:stock.return_picking msgid "Return packing" -msgstr "" +msgstr "Tagastamise pakend" #. module: stock #: field:product.category,property_stock_journal:0 msgid "Stock journal" -msgstr "" +msgstr "Laopäevik" #. module: stock #: wizard_view:stock.fill_inventory,init:0 msgid "Fill Inventory for specific location" -msgstr "" +msgstr "Täida inventuur spetsiifilise asukoha jaoks" #. module: stock #: model:ir.actions.report.xml,name:stock.report_picking_list @@ -109,7 +109,7 @@ msgstr "Pakkimislist" #: code:addons/stock/report_stock.py:0 #, python-format msgid "You cannot delete any record!" -msgstr "" +msgstr "Sa ei saa kustutada ühtegi kirjet!" #. module: stock #: xsl:stock.location.overview:0 @@ -144,7 +144,7 @@ msgstr "Viide" #: code:addons/stock/product.py:0 #, python-format msgid "Futur Receptions" -msgstr "" +msgstr "Tuleviku vastuvõtud" #. module: stock #: wizard_field:stock.invoice_onshipping,init,group:0 @@ -159,13 +159,13 @@ msgstr "Partner" #. module: stock #: help:product.product,track_incoming:0 msgid "Force to use a Production Lot during receptions" -msgstr "" +msgstr "Sunni tootmispartii kasutamist vastuvõtmisel" #. module: stock #: field:stock.move,move_history_ids:0 #: field:stock.move,move_history_ids2:0 msgid "Move History" -msgstr "" +msgstr "Käikude ajalugu" #. module: stock #: model:ir.model,name:stock.model_stock_production_lot @@ -177,12 +177,12 @@ msgstr "Tootepartii" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_NEW" -msgstr "" +msgstr "STOCK_NEW" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "STOCK_CANCEL" #. module: stock #: selection:stock.location,usage:0 @@ -192,7 +192,7 @@ msgstr "Sisemine asukoht" #. module: stock #: view:stock.inventory:0 msgid "Confirm Inventory" -msgstr "" +msgstr "Kinnita laoseis" #. module: stock #: rml:stock.picking.list:0 @@ -202,7 +202,7 @@ msgstr "Olek" #. module: stock #: field:stock.location,stock_real_value:0 msgid "Real Stock Value" -msgstr "" +msgstr "Tegelik laoseisu väärtus" #. module: stock #: view:stock.move:0 @@ -229,54 +229,54 @@ msgstr "Pakkimise resultaat" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_QUIT" -msgstr "" +msgstr "STOCK_QUIT" #. module: stock #: code:addons/stock/wizard/wizard_inventory.py:0 #, python-format msgid "No product in this location." -msgstr "" +msgstr "Tooted puuduvad selles asukohas." #. module: stock #: field:stock.warehouse,lot_output_id:0 msgid "Location Output" -msgstr "" +msgstr "Asukoha väljund" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "" +msgstr "STOCK_GOTO_TOP" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ABOUT" -msgstr "" +msgstr "STOCK_ABOUT" #. module: stock #: selection:stock.location,icon:0 msgid "terp-hr" -msgstr "" +msgstr "terp-hr" #. module: stock #: field:stock.location,usage:0 msgid "Location Type" -msgstr "" +msgstr "Asukoha tüüp" #. module: stock #: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Invoice cannot be created from Packing." -msgstr "" +msgstr "Ei saa luua arvet pakkimisest." #. module: stock #: selection:stock.location,icon:0 msgid "terp-purchase" -msgstr "" +msgstr "terp-purchase" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DND" -msgstr "" +msgstr "STOCK_DND" #. module: stock #: rml:stock.picking.list:0 @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Tooted saadetud" -#. 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 @@ -307,7 +302,7 @@ msgstr "Pakendamine" #. module: stock #: rml:stock.picking.list:0 msgid "Order(Origin)" -msgstr "" +msgstr "Järjestus(päritolu)" #. module: stock #: field:stock.production.lot,name:0 @@ -323,17 +318,17 @@ msgstr "Lisainfo" #. module: stock #: selection:stock.invoice_onshipping,init,type:0 msgid "Customer Refund" -msgstr "" +msgstr "Kliendi hüvitis" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FLOPPY" -msgstr "" +msgstr "STOCK_FLOPPY" #. module: stock #: view:stock.production.lot.revision:0 msgid "Production Lot Revisions" -msgstr "" +msgstr "Tootmispartii revisjon" #. module: stock #: view:stock.location:0 @@ -349,13 +344,13 @@ msgstr "Asukoha nimi" #. module: stock #: view:stock.inventory:0 msgid "Posted Inventory" -msgstr "" +msgstr "Ametlik inventuur" #. module: stock #: view:stock.move:0 #: view:stock.picking:0 msgid "Move Information" -msgstr "" +msgstr "Liigutamise info" #. module: stock #: view:stock.picking:0 @@ -377,7 +372,7 @@ msgstr "Kliendid" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_UNDERLINE" -msgstr "" +msgstr "STOCK_UNDERLINE" #. module: stock #: view:stock.picking.move.wizard:0 @@ -387,18 +382,18 @@ msgstr "Liiguta read" #. module: stock #: wizard_field:stock.fill_inventory,init,recursive:0 msgid "Include all childs for the location" -msgstr "" +msgstr "Kaasa kõik alamad asukohale" #. module: stock #: field:product.template,property_stock_procurement:0 msgid "Procurement Location" -msgstr "" +msgstr "Hankimise asukoht" #. module: stock #: model:ir.actions.act_window,name:stock.action_production_lot_form #: model:ir.ui.menu,name:stock.menu_action_production_lot_form msgid "Production Lots" -msgstr "" +msgstr "Tootmispartiid" #. module: stock #: rml:stock.picking.list:0 @@ -408,7 +403,7 @@ msgstr "Saaja" #. module: stock #: model:ir.actions.wizard,name:stock.track_line msgid "Track line" -msgstr "" +msgstr "Jälgi rida" #. module: stock #: field:stock.location,child_ids:0 @@ -418,17 +413,17 @@ msgstr "sisaldab" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_BOLD" -msgstr "" +msgstr "STOCK_BOLD" #. module: stock #: selection:stock.location,icon:0 msgid "terp-graph" -msgstr "" +msgstr "terp-graph" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_PREFERENCES" -msgstr "" +msgstr "STOCK_PREFERENCES" #. module: stock #: rml:lot.location:0 @@ -441,7 +436,7 @@ msgstr "Kogus" #. module: stock #: view:stock.picking:0 msgid "Process Now" -msgstr "" +msgstr "Töötle kohe" #. module: stock #: field:stock.location,address_id:0 @@ -451,7 +446,7 @@ msgstr "Asukoha aadress" #. module: stock #: help:stock.move,prodlot_id:0 msgid "Production lot is used to put a serial number on the production" -msgstr "" +msgstr "Tootmispartiid kasutatakse, et panna seerianumber tootele" #. module: stock #: model:stock.location,name:stock.stock_location_13 @@ -461,7 +456,7 @@ msgstr "Ladu tase 1" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_REWIND" -msgstr "" +msgstr "STOCK_MEDIA_REWIND" #. module: stock #: field:stock.warehouse,lot_input_id:0 @@ -476,7 +471,7 @@ msgstr "Asukoha omadused" #. module: stock #: wizard_button:stock.partial_picking,init,split:0 msgid "Make Picking" -msgstr "" +msgstr "Tee nope" #. module: stock #: model:stock.location,name:stock.location_procurement @@ -492,7 +487,7 @@ msgstr "IT tarnijad" #: model:ir.actions.act_window,name:stock.action_move_form3 #: model:ir.ui.menu,name:stock.menu_action_move_form3 msgid "Draft Moves" -msgstr "" +msgstr "Liigutamise mustandid" #. module: stock #: field:report.stock.lines.date,product_id:0 @@ -517,48 +512,48 @@ msgstr "Inventari asukoht" #. module: stock #: help:product.product,track_production:0 msgid "Force to use a Production Lot during production order" -msgstr "" +msgstr "Sunni tootmispartii kasutamist tootmiskorraldusel" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CUT" -msgstr "" +msgstr "STOCK_CUT" #. module: stock #: help:product.template,property_stock_inventory:0 msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated when you do an inventory" -msgstr "" +msgstr "Vaikimisi asukoha asemel kasutatakse selle toote (malli) jaoks seda lao asukohta inventuuri tegemisel genereeritud lao liikumiste lähteasukohana." #. module: stock #: field:stock.move,date_planned:0 msgid "Scheduled Date" -msgstr "" +msgstr "Planeeritud kuupäev" #. module: stock #: help:product.category,property_stock_account_output_categ:0 msgid "This account will be used to value the output stock" -msgstr "" +msgstr "Seda kontot kasutatakse lao väljundväärtuse hindamiseks" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ZOOM_FIT" -msgstr "" +msgstr "STOCK_ZOOM_FIT" #. module: stock #: help:product.category,property_stock_journal:0 msgid "This journal will be used for the accounting move generated by stock move" -msgstr "" +msgstr "Seda päevikut kasutatakse laoseisu liikumise poolt genereeritud raamatupidamise liikumise jaoks" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_calendar_delivery #: model:ir.ui.menu,name:stock.menu_picking_calendar_delivery msgid "Calendar of Deliveries" -msgstr "" +msgstr "Tarnete kalender" #. module: stock #: field:product.product,track_incoming:0 msgid "Track Incomming Lots" -msgstr "" +msgstr "Jälgi saabuvaid partiisid" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_product_location_open @@ -568,12 +563,12 @@ msgstr "Ladu asukohajärgi" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SAVE_AS" -msgstr "" +msgstr "STOCK_SAVE_AS" #. module: stock #: model:ir.model,name:stock.model_stock_report_prodlots msgid "Stock report by production lots" -msgstr "" +msgstr "Laoaruanne tootepartiide järgi" #. module: stock #: field:stock.location,stock_virtual:0 @@ -588,7 +583,7 @@ msgstr "Vaade" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIALOG_ERROR" -msgstr "" +msgstr "STOCK_DIALOG_ERROR" #. module: stock #: field:stock.location,parent_left:0 @@ -598,28 +593,28 @@ msgstr "Vasak ülem" #. module: stock #: field:report.stock.lines.date,create_date:0 msgid "Latest Date of Inventory" -msgstr "" +msgstr "Viimase inventuuri kuupäev" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_INDEX" -msgstr "" +msgstr "STOCK_INDEX" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GOTO_BOTTOM" -msgstr "" +msgstr "STOCK_GOTO_BOTTOM" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_form #: model:ir.ui.menu,name:stock.menu_action_picking_form msgid "New Reception Packing" -msgstr "" +msgstr "Uus vastuvõtmise pakend" #. module: stock #: wizard_field:stock.move.track,init,quantity:0 msgid "Quantity per lot" -msgstr "" +msgstr "Kogus partii kohta" #. module: stock #: model:ir.actions.act_window,name:stock.action_move_form2 @@ -627,162 +622,162 @@ msgstr "" #: view:stock.move:0 #: view:stock.picking:0 msgid "Stock Moves" -msgstr "" +msgstr "Lao liikumised" #. module: stock #: field:product.template,property_stock_production:0 msgid "Production Location" -msgstr "" +msgstr "Tootmise asukoht" #. module: stock #: field:stock.move,tracking_id:0 msgid "Tracking Lot" -msgstr "" +msgstr "Partii jälgimine" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GO_FORWARD" -msgstr "" +msgstr "STOCK_GO_FORWARD" #. module: stock #: field:stock.production.lot.revision,author_id:0 msgid "Author" -msgstr "" +msgstr "Autor" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_UNDELETE" -msgstr "" +msgstr "STOCK_UNDELETE" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_EXECUTE" -msgstr "" +msgstr "STOCK_EXECUTE" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIALOG_QUESTION" -msgstr "" +msgstr "STOCK_DIALOG_QUESTION" #. module: stock #: selection:stock.location,chained_auto_packing:0 msgid "Manual Operation" -msgstr "" +msgstr "Käsitsi opereerimine" #. module: stock #: field:stock.picking,date_done:0 msgid "Date Done" -msgstr "" +msgstr "Tegemise kuupäev" #. module: stock #: rml:stock.picking.list:0 msgid "Expected Shipping Date" -msgstr "" +msgstr "Eeldatav saatmise kuupäev" #. module: stock #: view:stock.tracking:0 msgid "Tracking/Serial" -msgstr "" +msgstr "Jälgimine/Seeria" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SELECT_FONT" -msgstr "" +msgstr "STOCK_SELECT_FONT" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_PASTE" -msgstr "" +msgstr "STOCK_PASTE" #. module: stock #: model:stock.location,name:stock.stock_location_locations_partner msgid "Partner Locations" -msgstr "" +msgstr "Partneri asukohad" #. module: stock #: help:stock.move,tracking_id:0 msgid "Tracking lot is the code that will be put on the logistical unit/pallet" -msgstr "" +msgstr "Jälgimispartii on kood, mis pannakse logistilisele üksusele/kaubaalusele" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Futur Deliveries" -msgstr "" +msgstr "Tuleviku tarned" #. module: stock #: view:stock.tracking:0 msgid "Tracking Number" -msgstr "" +msgstr "Jälgimisnumber" #. module: stock #: model:stock.location,name:stock.stock_location_7 msgid "European Customers" -msgstr "" +msgstr "Euroopa kliendid" #. module: stock #: selection:stock.location,icon:0 msgid "terp-stock" -msgstr "" +msgstr "terp-stock" #. module: stock #: rml:stock.picking.list:0 msgid "Packing List:" -msgstr "" +msgstr "Pakkeleht:" #. module: stock #: code:addons/stock/stock.py:0 #: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "UserError" -msgstr "" +msgstr "KasutajaViga" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_RECORD" -msgstr "" +msgstr "STOCK_MEDIA_RECORD" #. module: stock #: code:addons/stock/stock.py:0 #, python-format msgid "You can only delete draft moves." -msgstr "" +msgstr "Sa saad kustutada ainult liigutamise mustandeid." #. module: stock #: view:stock.picking:0 msgid "Calendar View" -msgstr "" +msgstr "Kalendrivaade" #. module: stock #: wizard_field:stock.location.products,init,from_date:0 msgid "From" -msgstr "" +msgstr "Alates" #. module: stock #: rml:stock.picking.list:0 msgid "Non Assigned Products:" -msgstr "" +msgstr "Määramata tooted:" #. module: stock #: view:stock.picking:0 msgid "Invoice Control" -msgstr "" +msgstr "Arvehaldus" #. module: stock #: model:ir.model,name:stock.model_stock_production_lot_revision msgid "Production lot revisions" -msgstr "" +msgstr "Tootmispartiide revisjonid" #. module: stock #: view:stock.picking:0 msgid "Packing Done" -msgstr "" +msgstr "Pakkimine tehtud" #. module: stock #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Waiting" -msgstr "" +msgstr "Ootel" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree2 @@ -790,126 +785,126 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree7 #: model:ir.ui.menu,name:stock.menu_picking_waiting msgid "Available Packing" -msgstr "" +msgstr "Saadaolev pakendamine" #. module: stock #: model:ir.model,name:stock.model_stock_warehouse #: view:stock.warehouse:0 msgid "Warehouse" -msgstr "" +msgstr "Ladu" #. module: stock #: selection:stock.location,icon:0 msgid "terp-report" -msgstr "" +msgstr "terp-report" #. module: stock #: wizard_field:stock.invoice_onshipping,init,type:0 msgid "Type" -msgstr "" +msgstr "Tüüp" #. module: stock #: model:stock.location,name:stock.stock_location_5 msgid "Generic IT Suppliers" -msgstr "" +msgstr "Üldised IT varustajad" #. module: stock #: model:ir.actions.report.xml,name:stock.report_location_overview_all msgid "Location Content (With children)" -msgstr "" +msgstr "Asukoha sisu (alamatega)" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FILE" -msgstr "" +msgstr "STOCK_FILE" #. module: stock #: field:report.stock.lines.date,id:0 msgid "Inventory Line Id" -msgstr "" +msgstr "Inventuuri rea id" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_EDIT" -msgstr "" +msgstr "STOCK_EDIT" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CONNECT" -msgstr "" +msgstr "STOCK_CONNECT" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_all #: model:ir.ui.menu,name:stock.menu_action_picking_all #: wizard_field:stock.picking.make,init,pickings:0 msgid "Packing" -msgstr "" +msgstr "Pakkimine" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GO_DOWN" -msgstr "" +msgstr "STOCK_GO_DOWN" #. module: stock #: field:res.partner,property_stock_customer:0 #: selection:stock.location,usage:0 msgid "Customer Location" -msgstr "" +msgstr "Kliendi asukoht" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_OK" -msgstr "" +msgstr "STOCK_OK" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree9 #: model:ir.ui.menu,name:stock.menu_action_picking_tree9 msgid "New Internal Packing" -msgstr "" +msgstr "Uus sisemine pakkimine" #. module: stock #: view:stock.inventory:0 msgid "General Informations" -msgstr "" +msgstr "Üldinfo" #. module: stock #: code:addons/stock/wizard/wizard_return.py:0 #: selection:stock.location,chained_location_type:0 #, python-format msgid "None" -msgstr "" +msgstr "Puudub" #. module: stock #: model:ir.actions.act_window,name:stock.action3 #: model:ir.actions.wizard,name:stock.action2 #: model:ir.actions.wizard,name:stock.action_lot4 msgid "Downstream traceability" -msgstr "" +msgstr "Allavoolu jälgitavus" #. module: stock #: model:stock.location,name:stock.stock_location_14 msgid "Finished products" -msgstr "" +msgstr "Valmistooted" #. module: stock #: field:stock.location,location_id:0 msgid "Parent Location" -msgstr "" +msgstr "Ülem asukoht" #. module: stock #: field:stock.inventory,date:0 msgid "Date create" -msgstr "" +msgstr "Loomiskuupäev" #. module: stock #: wizard_button:inventory.merge.stock.zero,init,merge:0 msgid "Set to Zero" -msgstr "" +msgstr "Määra nulliks" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_open msgid "All Stock Moves" -msgstr "" +msgstr "Kõik lao liikumised" #. module: stock #: constraint:ir.ui.view:0 @@ -920,184 +915,184 @@ msgstr "Vigane XML vaate arhitektuurile!" #: field:res.partner,property_stock_supplier:0 #: selection:stock.location,usage:0 msgid "Supplier Location" -msgstr "" +msgstr "Tarnija asukoht" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_HELP" -msgstr "" +msgstr "STOCK_HELP" #. module: stock #: selection:stock.move,priority:0 msgid "Urgent" -msgstr "" +msgstr "Kiireloomuline" #. module: stock #: help:product.category,property_stock_account_input_categ:0 msgid "This account will be used to value the input stock" -msgstr "" +msgstr "Seda kontot kasutatakse lao sisendväärtuse hindamiseks" #. module: stock #: code:addons/stock/wizard/wizard_return.py:0 #, python-format msgid "Invoice state" -msgstr "" +msgstr "Arve olek" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_UNDO" -msgstr "" +msgstr "STOCK_UNDO" #. module: stock #: field:stock.move,date:0 #: field:stock.tracking,date:0 msgid "Date Created" -msgstr "" +msgstr "Loomise kuupäev" #. module: stock #: selection:stock.picking,type:0 msgid "Sending Goods" -msgstr "" +msgstr "Kaupade saatmine" #. module: stock #: view:stock.picking:0 msgid "Cancel Availability" -msgstr "" +msgstr "Tühista saadavus" #. module: stock #: field:stock.inventory,move_ids:0 msgid "Created Moves" -msgstr "" +msgstr "Loodud liigutamised" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GO_BACK" -msgstr "" +msgstr "STOCK_GO_BACK" #. module: stock #: selection:stock.picking,invoice_state:0 msgid "To Be Invoiced" -msgstr "" +msgstr "Arveldamiseks" #. module: stock #: view:product.product:0 #: view:product.template:0 msgid "Counter-Part Locations Properties" -msgstr "" +msgstr "Kaasosade asukohtade omadused" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Delivered Qty" -msgstr "" +msgstr "Tarnitud kogus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUSTIFY_FILL" -msgstr "" +msgstr "STOCK_JUSTIFY_FILL" #. module: stock #: view:stock.move:0 msgid "Date" -msgstr "" +msgstr "Kuupäev" #. module: stock #: view:product.product:0 msgid "Stocks" -msgstr "" +msgstr "Laod" #. module: stock #: field:stock.location,allocation_method:0 msgid "Allocation Method" -msgstr "" +msgstr "Paigutamise viis" #. module: stock #: selection:stock.location,icon:0 msgid "terp-administration" -msgstr "" +msgstr "terp-administratsioon" #. module: stock #: field:stock.warehouse,lot_stock_id:0 msgid "Location Stock" -msgstr "" +msgstr "Lao asukoht" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_APPLY" -msgstr "" +msgstr "STOCK_APPLY" #. module: stock #: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Invoice is not created" -msgstr "" +msgstr "Arvet pole loodud" #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format msgid "Merging is only allowed on draft inventories." -msgstr "" +msgstr "Liitmine on lubatud ainult mustand inventuuridele." #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format msgid "Please select at least two inventories." -msgstr "" +msgstr "Palun vali vähemalt kaks inventuuri." #. module: stock #: wizard_view:stock.partial_picking,end2:0 msgid "The packing has been successfully made !" -msgstr "" +msgstr "Pakkimine edukalt teostatud!" #. module: stock #: field:stock.move,address_id:0 #: field:stock.picking.move.wizard,address_id:0 msgid "Dest. Address" -msgstr "" +msgstr "Sihtaadress" #. module: stock #: model:ir.actions.act_window,name:stock.action_inventory_form #: model:ir.ui.menu,name:stock.menu_action_inventory_form msgid "Periodical Inventory" -msgstr "" +msgstr "Perioodiline inventuur" #. module: stock #: selection:stock.location,icon:0 msgid "terp-crm" -msgstr "" +msgstr "terp-crm" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_STRIKETHROUGH" -msgstr "" +msgstr "STOCK_STRIKETHROUGH" #. module: stock #: field:stock.incoterms,code:0 #: xsl:stock.location.overview.all:0 msgid "Code" -msgstr "" +msgstr "Kood" #. module: stock #: selection:stock.location,icon:0 msgid "terp-partner" -msgstr "" +msgstr "terp-partner" #. module: stock #: rml:stock.picking.list:0 msgid "Qty" -msgstr "" +msgstr "Kogus" #. module: stock #: code:addons/stock/stock.py:0 #, python-format msgid "You can not remove a lot line !" -msgstr "" +msgstr "Sa ei saa eemaldada partii rida!" #. module: stock #: model:ir.actions.act_window,name:stock.action_inventory_form_draft #: model:ir.ui.menu,name:stock.menu_action_inventory_form_draft msgid "Draft Periodical Inventories" -msgstr "" +msgstr "Perioodiliste inventuuride mustandid" #. module: stock #: wizard_button:inventory.merge,init,end:0 @@ -1115,13 +1110,13 @@ msgstr "" #: view:stock.picking.move.wizard:0 #: wizard_button:stock.return.picking,init,end:0 msgid "Cancel" -msgstr "" +msgstr "Tühista" #. module: stock #: view:stock.move:0 #: view:stock.picking:0 msgid "Split in production lots" -msgstr "" +msgstr "Jaotamine tootmispartiides" #. module: stock #: model:ir.model,name:stock.model_stock_inventory @@ -1129,7 +1124,7 @@ msgstr "" #: field:stock.inventory.line,inventory_id:0 #: selection:stock.location,usage:0 msgid "Inventory" -msgstr "" +msgstr "Inventuur" #. module: stock #: view:product.template:0 @@ -1140,76 +1135,76 @@ msgstr "Informatsioon" #: code:addons/stock/wizard/wizard_return.py:0 #, python-format msgid "Provide the quantities of the returned products." -msgstr "" +msgstr "Määra tagastatud toodete kogused." #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MISSING_IMAGE" -msgstr "" +msgstr "STOCK_MISSING_IMAGE" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SPELL_CHECK" -msgstr "" +msgstr "STOCK_SPELL_CHECK" #. module: stock #: model:ir.model,name:stock.model_stock_tracking msgid "Stock Tracking Lots" -msgstr "" +msgstr "Lao jälgimispartiid" #. module: stock #: xsl:stock.location.overview:0 #: xsl:stock.location.overview.all:0 #: field:stock.move,price_unit:0 msgid "Unit Price" -msgstr "" +msgstr "Ühiku hind" #. module: stock #: view:stock.picking:0 msgid "Process Later" -msgstr "" +msgstr "Töötle hiljem" #. module: stock #: help:res.partner,property_stock_supplier:0 msgid "This stock location will be used, instead of the default one, as the source location for goods you receive from the current partner" -msgstr "" +msgstr "Seda lao asukohta kasutatakse lähetasukohana kaupadele, vaikimisi asukoha asemel, mis sa saad käesolevalt partnerilt." #. module: stock #: field:stock.warehouse,partner_address_id:0 msgid "Owner Address" -msgstr "" +msgstr "Omaniku aadress" #. module: stock #: field:stock.location,parent_right:0 msgid "Right Parent" -msgstr "" +msgstr "Parem ülem" #. module: stock #: field:stock.picking,origin:0 msgid "Origin Reference" -msgstr "" +msgstr "Päritolu viide" #. module: stock #: model:ir.actions.act_window,name:stock.action_move_form4 #: model:ir.ui.menu,name:stock.menu_action_move_form4 msgid "Available Moves" -msgstr "" +msgstr "Saadaval liikumised" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Received Qty" -msgstr "" +msgstr "Laekunud kogus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_HARDDISK" -msgstr "" +msgstr "STOCK_HARDDISK" #. module: stock #: model:ir.actions.act_window,name:stock.act_relate_picking msgid "Related Picking" -msgstr "" +msgstr "Seotud nope" #. module: stock #: field:stock.incoterms,name:0 @@ -1217,154 +1212,154 @@ msgstr "" #: field:stock.picking.move.wizard,name:0 #: field:stock.warehouse,name:0 msgid "Name" -msgstr "" +msgstr "Nimi" #. module: stock #: view:stock.inventory.line:0 msgid "Stock Inventory Lines" -msgstr "" +msgstr "Lao inventuuri read" #. module: stock #: wizard_button:stock.location.products,init,open:0 msgid "Open Products" -msgstr "" +msgstr "Ava tooted" #. module: stock #: rml:stock.picking.list:0 msgid "]" -msgstr "" +msgstr "]" #. module: stock #: view:stock.picking:0 msgid "Input Packing List" -msgstr "" +msgstr "Sisesta pakkeleht" #. module: stock #: model:ir.model,name:stock.model_stock_picking #: field:stock.move,picking_id:0 msgid "Packing List" -msgstr "" +msgstr "Pakkeleht" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_COPY" -msgstr "" +msgstr "STOCK_COPY" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Futur Qty" -msgstr "" +msgstr "Tuleviku kogus" #. module: stock #: selection:stock.invoice_onshipping,init,type:0 msgid "Supplier Refund" -msgstr "" +msgstr "Tarnija hüvitis" #. module: stock #: model:ir.model,name:stock.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Laoseisu liikumine" #. module: stock #: field:product.category,property_stock_account_output_categ:0 #: field:product.template,property_stock_account_output:0 msgid "Stock Output Account" -msgstr "" +msgstr "Lao väljundkonto" #. module: stock #: selection:stock.location,chained_auto_packing:0 msgid "Automatic No Step Added" -msgstr "" +msgstr "Automaatselt sammu ei lisata" #. module: stock #: wizard_view:stock.location.products,init:0 msgid "Stock Location Analysis" -msgstr "" +msgstr "Lao asukohtade analüüs" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CDROM" -msgstr "" +msgstr "STOCK_CDROM" #. module: stock #: code:addons/stock/stock.py:0 #: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Error" -msgstr "" +msgstr "Viga" #. module: stock #: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Invoice is already created." -msgstr "" +msgstr "Arve on juba loodud." #. module: stock #: selection:stock.picking,invoice_state:0 msgid "Not from Packing" -msgstr "" +msgstr "Mitte pakkimisest" #. module: stock #: view:stock.location:0 msgid "Chained Locations" -msgstr "" +msgstr "Ahelasukohad" #. module: stock #: model:stock.location,name:stock.location_inventory msgid "Inventory loss" -msgstr "" +msgstr "Inventuuri kadu" #. module: stock #: field:stock.production.lot,ref:0 msgid "Internal Ref" -msgstr "" +msgstr "Sisemine ref" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_REFRESH" -msgstr "" +msgstr "STOCK_REFRESH" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Products: " -msgstr "" +msgstr "Tooted: " #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_STOP" -msgstr "" +msgstr "STOCK_STOP" #. module: stock #: wizard_view:stock.move.track,init:0 msgid "Tracking a move" -msgstr "" +msgstr "Liikumise jälgimine" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FIND_AND_REPLACE" -msgstr "" +msgstr "STOCK_FIND_AND_REPLACE" #. module: stock #: view:stock.picking:0 msgid "Validate" -msgstr "" +msgstr "Valideeri" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIALOG_WARNING" -msgstr "" +msgstr "STOCK_DIALOG_WARNING" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ZOOM_IN" -msgstr "" +msgstr "STOCK_ZOOM_IN" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CONVERT" -msgstr "" +msgstr "STOCK_CONVERT" #. module: stock #: field:stock.move,note:0 @@ -1377,18 +1372,18 @@ msgstr "Märkmed" #: field:stock.picking,move_lines:0 #: field:stock.picking.move.wizard,move_ids:0 msgid "Move lines" -msgstr "" +msgstr "Liiguta read" #. module: stock #: xsl:stock.location.overview:0 #: xsl:stock.location.overview.all:0 msgid "Value" -msgstr "" +msgstr "Väärtus" #. module: stock #: field:stock.picking,type:0 msgid "Shipping Type" -msgstr "" +msgstr "Saatmise tüüp" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_location_open @@ -1398,70 +1393,70 @@ msgstr "Tooted" #. module: stock #: field:stock.picking,move_type:0 msgid "Delivery Method" -msgstr "" +msgstr "Tarneviis" #. module: stock #: model:ir.actions.wizard,name:stock.partial_picking msgid "Partial packing" -msgstr "" +msgstr "Osaline pakkimine" #. module: stock #: selection:stock.location,icon:0 msgid "terp-calendar" -msgstr "" +msgstr "terp-calendar" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ITALIC" -msgstr "" +msgstr "STOCK_ITALIC" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_YES" -msgstr "" +msgstr "STOCK_YES" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_picking_move_wizard msgid "Fill From Unreceived Products" -msgstr "" +msgstr "Täida saamata toodetest" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "P&L Qty" -msgstr "" +msgstr "Kasumi ja kahjumi kogus" #. module: stock #: field:stock.move,move_dest_id:0 msgid "Dest. Move" -msgstr "" +msgstr "Siht. liigutamine" #. module: stock #: model:ir.actions.act_window,name:stock.action_inventory_form_new #: model:ir.ui.menu,name:stock.menu_action_inventory_form_new msgid "New Periodical Inventory" -msgstr "" +msgstr "Uus perioodiline inventuur" #. module: stock #: field:stock.production.lot,revisions:0 msgid "Revisions" -msgstr "" +msgstr "Revisjonid" #. module: stock #: selection:stock.location,allocation_method:0 msgid "FIFO" -msgstr "" +msgstr "FIFO" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree2_delivery #: model:ir.ui.menu,name:stock.menu_picking_waiting_delivery msgid "Delivery Orders to Process" -msgstr "" +msgstr "Saatmiskorraldused töötlemiseks" #. module: stock #: field:stock.move,priority:0 msgid "Priority" -msgstr "" +msgstr "Prioriteet" #. module: stock #: wizard_field:inventory.merge.stock.zero,init,location_id:0 @@ -1473,33 +1468,33 @@ msgstr "" #: rml:stock.picking.list:0 #: field:stock.report.prodlots,location_id:0 msgid "Location" -msgstr "" +msgstr "Asukoht" #. module: stock #: field:stock.picking,invoice_state:0 msgid "Invoice Status" -msgstr "" +msgstr "Arve olek" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUSTIFY_LEFT" -msgstr "" +msgstr "STOCK_JUSTIFY_LEFT" #. module: stock #: view:stock.inventory:0 msgid "Cancel Inventory" -msgstr "" +msgstr "Tühista inventuur" #. module: stock #: model:ir.actions.report.xml,name:stock.report_product_history msgid "Future Stock Forecast" -msgstr "" +msgstr "Tulevase laoseisu ennustus" #. module: stock #: code:addons/stock/report_stock.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Viga!" #. module: stock #: model:ir.module.module,description:stock.module_meta_information @@ -1514,12 +1509,22 @@ msgid "OpenERP Stock Management module can manage multi-warehouses, multi and st "* Rapid detection of mistakes through double entry system\n" "* Traceability (upstream/downstream, production lots, serial number, ...)\n" " " -msgstr "" +msgstr "Open ERP laohalduse moodul suudab majandada multi-ladusid, multi ja struktureeritud lao asukohti.\n" +"Tänu topeltsisestuse haldusele on inventuuri kontrollimine võimas ja paindlik.\n" +"* Liikumiste ajalugu ja planeerimine\n" +"* Erinevad inventuuri meetodid (FIFO, LIFO, ...)\n" +"* Laoseisu väärtuse hindamine (standard ja keskmine hind, ...)\n" +"* Stabiilsus vastamisi inventuuri erinevustega\n" +"* Automaatsed reorganiseerimise reeglid (laovarude tase, täppisajastus, ...)\n" +"* Ribakoodi toetus\n" +"* Kiire vigade avastamine läbi topeltsisestus süsteemi\n" +"* Jägitavus (ülesvoolu/allavoolu, tootmispartiid, seerianumbrid, ..)\n" +" " #. module: stock #: selection:stock.location,chained_location_type:0 msgid "Fixed Location" -msgstr "" +msgstr "Fikseeritud asukoht" #. module: stock #: constraint:ir.model:0 @@ -1529,190 +1534,190 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: stock #: field:stock.picking,min_date:0 msgid "Planned Date" -msgstr "" +msgstr "Planeeritud kuupäev" #. module: stock #: code:addons/stock/wizard/wizard_track_line.py:0 #, python-format msgid "No production sequence defined" -msgstr "" +msgstr "Tootmisjada pole määratletud" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree #: model:ir.ui.menu,name:stock.menu_action_picking_tree msgid "Outgoing Products" -msgstr "Väljuvad Tooted" +msgstr "Väljuvad tooted" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_COLOR_PICKER" -msgstr "" +msgstr "STOCK_COLOR_PICKER" #. module: stock #: model:ir.actions.report.xml,name:stock.report_lot_location msgid "Lots by location" -msgstr "" +msgstr "Partiid asukoha järgi" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DELETE" -msgstr "" +msgstr "STOCK_DELETE" #. module: stock #: model:account.journal,name:stock.stock_journal msgid "Stock Journal" -msgstr "" +msgstr "Laopäevik" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CLEAR" -msgstr "" +msgstr "STOCK_CLEAR" #. module: stock #: field:stock.production.lot,date:0 msgid "Created Date" -msgstr "" +msgstr "Loomise kuupäev" #. module: stock #: selection:stock.location,usage:0 msgid "Procurement" -msgstr "" +msgstr "Hankimine" #. module: stock #: model:stock.location,name:stock.stock_location_4 msgid "Maxtor Suppliers" -msgstr "" +msgstr "Maxtor-i tarnijad" #. module: stock #: view:stock.picking:0 msgid "Force Availability" -msgstr "" +msgstr "Sunni saadavaks" #. module: stock #: wizard_view:stock.location.products,init:0 msgid "View Stock of Products" -msgstr "" +msgstr "Vaata toodete laoseisu" #. module: stock #: selection:stock.location,icon:0 msgid "terp-mrp" -msgstr "" +msgstr "terp-mrp" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree3_delivery #: model:ir.ui.menu,name:stock.menu_action_picking_tree3_delivery msgid "Future Delivery Orders" -msgstr "" +msgstr "Tulevased kättetoimetamise korraldused" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GO_UP" -msgstr "" +msgstr "STOCK_GO_UP" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SORT_DESCENDING" -msgstr "" +msgstr "STOCK_SORT_DESCENDING" #. module: stock #: model:ir.actions.act_window,name:stock.action_tracking_form #: model:ir.ui.menu,name:stock.menu_action_tracking_form msgid "Tracking Lots" -msgstr "" +msgstr "Jälgimispartiid" #. module: stock #: wizard_button:inventory.merge,init,merge:0 msgid "Yes" -msgstr "" +msgstr "Jah" #. module: stock #: field:stock.inventory,inventory_line_id:0 msgid "Inventories" -msgstr "" +msgstr "Inventuurid" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_HOME" -msgstr "" +msgstr "STOCK_HOME" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_PROPERTIES" -msgstr "" +msgstr "STOCK_PROPERTIES" #. module: stock #: field:stock.location,stock_real:0 msgid "Real Stock" -msgstr "" +msgstr "Reaalne ladu" #. module: stock #: model:ir.actions.wizard,name:stock.wizard_fill_inventory #: wizard_view:stock.fill_inventory,init:0 #: wizard_button:stock.fill_inventory,init,fill_inventory:0 msgid "Fill Inventory" -msgstr "" +msgstr "Täida inventuur" #. module: stock #: wizard_view:stock.invoice_onshipping,init:0 msgid "Create invoices" -msgstr "" +msgstr "Loo arved" #. module: stock #: field:stock.production.lot.revision,date:0 msgid "Revision Date" -msgstr "" +msgstr "Revisjoni kuupäev" #. module: stock #: rml:stock.picking.list:0 msgid "Lot" -msgstr "" +msgstr "Partii" #. module: stock #: wizard_view:inventory.merge.stock.zero,init:0 msgid "Set Stock to Zero" -msgstr "" +msgstr "Määra laoseis nulli" #. module: stock #: field:stock.move,product_uos_qty:0 msgid "Quantity (UOS)" -msgstr "" +msgstr "Kogus (TÜ)" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree5 #: model:ir.ui.menu,name:stock.menu_action_picking_tree5 msgid "Packing to Process" -msgstr "" +msgstr "Pakkimine töödelda" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_STOP" -msgstr "" +msgstr "STOCK_MEDIA_STOP" #. module: stock #: view:stock.move:0 msgid "Set Available" -msgstr "" +msgstr "Määra saadavaks" #. module: stock #: model:ir.actions.wizard,name:stock.make_picking #: wizard_view:stock.picking.make,init:0 msgid "Make packing" -msgstr "" +msgstr "Loo pakendamine" #. module: stock #: field:stock.picking,backorder_id:0 msgid "Back Order" -msgstr "" +msgstr "Täitmata tellimus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DND_MULTIPLE" -msgstr "" +msgstr "STOCK_DND_MULTIPLE" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_REMOVE" -msgstr "" +msgstr "STOCK_REMOVE" #. module: stock #: field:stock.incoterms,active:0 @@ -1720,18 +1725,18 @@ msgstr "" #: field:stock.picking,active:0 #: field:stock.tracking,active:0 msgid "Active" -msgstr "" +msgstr "Aktiivne" #. module: stock #: view:product.template:0 msgid "Properties" -msgstr "" +msgstr "Omadused" #. module: stock #: code:addons/stock/stock.py:0 #, python-format msgid "Error, no partner !" -msgstr "" +msgstr "Viga, puudub partner!" #. module: stock #: model:ir.actions.act_window,name:stock.action_incoterms_tree @@ -1739,57 +1744,57 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_incoterms_tree #: view:stock.incoterms:0 msgid "Incoterms" -msgstr "" +msgstr "Tarneklausel" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" +msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ZOOM_OUT" -msgstr "" +msgstr "STOCK_ZOOM_OUT" #. module: stock #: wizard_field:stock.move.track,init,tracking_prefix:0 msgid "Tracking prefix" -msgstr "" +msgstr "Jälgimise eesliide" #. module: stock #: selection:stock.location,allocation_method:0 msgid "Nearest" -msgstr "" +msgstr "Lähim" #. module: stock #: wizard_field:stock.location.products,init,to_date:0 msgid "To" -msgstr "" +msgstr "Saaja" #. module: stock #: field:stock.production.lot.revision,name:0 msgid "Revision Name" -msgstr "" +msgstr "Revisjoni nimi" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SELECT_COLOR" -msgstr "" +msgstr "STOCK_SELECT_COLOR" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_PRINT" -msgstr "" +msgstr "STOCK_PRINT" #. module: stock #: view:product.category:0 msgid "Accounting Stock Properties" -msgstr "" +msgstr "Raamatupidamise laoseisu omadused" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_NO" -msgstr "" +msgstr "STOCK_NO" #. module: stock #: model:stock.location,name:stock.stock_location_workshop @@ -1801,70 +1806,70 @@ msgstr "Töökoda" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Done" -msgstr "" +msgstr "Tehtud" #. module: stock #: model:stock.location,name:stock.stock_location_locations_virtual msgid "Virtual Locations" -msgstr "" +msgstr "Virtuaalsed asukohad" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company msgid "Tiny sprl" -msgstr "" +msgstr "Tiny sprl" #. module: stock #: field:stock.inventory,date_done:0 msgid "Date done" -msgstr "" +msgstr "Teostamise kuupäev" #. module: stock #: code:addons/stock/stock.py:0 #, python-format msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +msgstr "Palun sisesta partner noppelehele, kui sa soovid genereerida arvet." #. module: stock #: selection:stock.move,priority:0 msgid "Not urgent" -msgstr "" +msgstr "Pole kiire" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_CLOSE" -msgstr "" +msgstr "STOCK_CLOSE" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form #: model:ir.ui.menu,name:stock.menu_action_warehouse_form msgid "Warehouses" -msgstr "" +msgstr "Laod" #. module: stock #: help:product.product,track_outgoing:0 msgid "Force to use a Production Lot during deliveries" -msgstr "" +msgstr "Sunni tootmispartii kasutamist kättetoimetamisel" #. module: stock #: view:stock.picking:0 msgid "Split move lines in two" -msgstr "" +msgstr "Jaota liigutamise read kaheks" #. module: stock #: wizard_field:stock.invoice_onshipping,init,journal_id:0 msgid "Destination Journal" -msgstr "" +msgstr "Sihtkoha päevik" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_production_lot_2_stock_report_prodlots #: model:stock.location,name:stock.stock_location_stock msgid "Stock" -msgstr "" +msgstr "Ladu" #. module: stock #: rml:lot.location:0 @@ -1875,130 +1880,130 @@ msgstr "" #: field:stock.production.lot,product_id:0 #: field:stock.report.prodlots,product_id:0 msgid "Product" -msgstr "" +msgstr "Toode" #. module: stock #: wizard_button:stock.return.picking,init,return:0 msgid "Return" -msgstr "" +msgstr "Tagastus" #. module: stock #: field:stock.picking,auto_picking:0 msgid "Auto-Packing" -msgstr "" +msgstr "Automaatpakkimine" #. module: stock #: field:stock.move,product_uos:0 msgid "Product UOS" -msgstr "" +msgstr "Toote TÜ" #. module: stock #: field:stock.location,posz:0 msgid "Height (Z)" -msgstr "" +msgstr "Kõrgus (Z)" #. module: stock #: field:stock.inventory.line,product_uom:0 #: field:stock.move,product_uom:0 msgid "Product UOM" -msgstr "" +msgstr "Toote MÜ" #. module: stock #: xsl:stock.location.overview:0 #: xsl:stock.location.overview.all:0 msgid "Variants" -msgstr "" +msgstr "Variandid" #. module: stock #: field:stock.location,posx:0 msgid "Corridor (X)" -msgstr "" +msgstr "Koridor (X)" #. module: stock #: model:stock.location,name:stock.stock_location_suppliers msgid "Suppliers" -msgstr "" +msgstr "Tarnijad" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUMP_TO" -msgstr "" +msgstr "STOCK_JUMP_TO" #. module: stock #: selection:stock.location,icon:0 msgid "terp-tools" -msgstr "" +msgstr "terp-tools" #. module: stock #: model:ir.actions.report.xml,name:stock.report_location_overview msgid "Location Overview" -msgstr "" +msgstr "Asukoha ülevaade" #. module: stock #: model:ir.actions.wizard,name:stock.location_product msgid "Products by Location" -msgstr "" +msgstr "Tooted asukoha järgi" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIALOG_INFO" -msgstr "" +msgstr "STOCK_DIALOG_INFO" #. module: stock #: model:ir.actions.wizard,name:stock.move_split msgid "Split move line" -msgstr "" +msgstr "Jaota liigutamise rida" #. module: stock #: selection:stock.location,icon:0 msgid "terp-sale" -msgstr "" +msgstr "terp-sale" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_ADD" -msgstr "" +msgstr "STOCK_ADD" #. module: stock #: field:stock.location,chained_delay:0 msgid "Chained Delay (days)" -msgstr "" +msgstr "Seotud viivitus (päevades)" #. module: stock #: field:stock.move,location_id:0 msgid "Source Location" -msgstr "" +msgstr "Lähtekoht" #. module: stock #: view:product.template:0 msgid "Accounting Entries" -msgstr "" +msgstr "Raamatupidamise kirjed" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_PAUSE" -msgstr "" +msgstr "STOCK_MEDIA_PAUSE" #. module: stock #: view:product.product:0 msgid "Lots" -msgstr "" +msgstr "Partiid" #. module: stock #: selection:stock.picking,move_type:0 msgid "All at once" -msgstr "" +msgstr "Kõik korraga" #. module: stock #: field:product.product,track_outgoing:0 msgid "Track Outging Lots" -msgstr "" +msgstr "Jälgi väljuvaid partiisid" #. module: stock #: code:addons/stock/wizard/wizard_return.py:0 #, python-format msgid "Return lines" -msgstr "" +msgstr "Tagastusread" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_line_date @@ -2006,173 +2011,174 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_report_stock_line_date #: view:report.stock.lines.date:0 msgid "Dates of Inventories" -msgstr "" +msgstr "Inventuuride kuupäevad" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_PRINT_PREVIEW" -msgstr "" +msgstr "STOCK_PRINT_PREVIEW" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FIND" -msgstr "" +msgstr "STOCK_FIND" #. module: stock #: code:addons/stock/wizard/wizard_inventory.py:0 #, python-format msgid "Message !" -msgstr "" +msgstr "Sõnum!" #. module: stock #: view:stock.inventory:0 msgid "Lot Inventory" -msgstr "" +msgstr "Partii inventuur" #. module: stock #: help:stock.location,chained_auto_packing:0 msgid "This is used only if you selected a chained location type.\n" "The 'Automatic Move' value will create a stock move after the current one that will be validated automatically. With 'Manual Operation', the stock move has to be validated by a worker. With 'Automatic No Step Added', the location is replaced in the original move." -msgstr "" +msgstr "Seda kasutatakse ainult siis, kui sa valid seotud asukoha tüübi.\n" +"'Automaatne liigutamine' väärtus loob lao liikumise pärast praegust, mis valideeritakse automaatselt. Väärtusega 'Manuaalne operatsioon' peab lao liikumine olema valideeritud töötaja poolt. Väärtusega 'Automaatset sammu ei lisata' asendatakse asukoht esialgse liikumisega." #. module: stock #: field:stock.location,icon:0 msgid "Icon" -msgstr "" +msgstr "Ikoon" #. module: stock #: field:stock.tracking,name:0 msgid "Tracking" -msgstr "" +msgstr "Jälgimine" #. module: stock #: wizard_button:stock.move.track,init,track:0 #: wizard_button:stock.picking.make,init,make:0 msgid "Ok" -msgstr "" +msgstr "Olgu" #. module: stock #: help:product.template,property_stock_account_input:0 msgid "This account will be used, instead of the default one, to value input stock" -msgstr "" +msgstr "Seda kontot kasutatakse, vaikimisi konto asemel, et hinnata lao sisendväärtust" #. module: stock #: model:stock.location,name:stock.stock_location_8 msgid "Non European Customers" -msgstr "" +msgstr "Mitte-Euroopa kliendid" #. module: stock #: code:addons/stock/stock.py:0 #: code:addons/stock/wizard/wizard_track_line.py:0 #, python-format msgid "Error!" -msgstr "" +msgstr "Viga!" #. module: stock #: model:stock.location,name:stock.stock_location_components msgid "Components" -msgstr "" +msgstr "Komponendid" #. module: stock #: wizard_view:inventory.merge,init:0 msgid "Do you want to merge theses inventories ?" -msgstr "" +msgstr "Kas sa tahad liita need inventuurid?" #. module: stock #: field:stock.picking,max_date:0 msgid "Max. Planned Date" -msgstr "" +msgstr "Maks. planeeritud kuupäev" #. module: stock #: selection:stock.picking,type:0 msgid "Getting Goods" -msgstr "" +msgstr "Kaupade saamine" #. module: stock #: view:stock.location:0 msgid "Stock Location" -msgstr "" +msgstr "Lao asukoht" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_PLAY" -msgstr "" +msgstr "STOCK_MEDIA_PLAY" #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #: code:addons/stock/wizard/inventory_merge_zero.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Hoiatus" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_delivery #: model:ir.ui.menu,name:stock.menu_action_picking_tree_delivery msgid "Delivery Orders" -msgstr "" +msgstr "Saatmiskorraldused" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_OPEN" -msgstr "" +msgstr "STOCK_OPEN" #. module: stock #: help:res.partner,property_stock_customer:0 msgid "This stock location will be used, instead of the default one, as the destination location for goods you send to this partner" -msgstr "" +msgstr "Seda lao asukohta kasutatakse, vaikimisi asukoha asemel, sihtasukohana kaupadele mis sa saadad sellele partnerile." #. module: stock #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Confirmed" -msgstr "" +msgstr "Kinnitatud" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" +msgstr "STOCK_MEDIA_PREVIOUS" #. module: stock #: view:stock.move:0 msgid "Confirm" -msgstr "" +msgstr "Kinnita" #. module: stock #: view:stock.picking:0 msgid "Check Availability" -msgstr "" +msgstr "Kontrolli saadavust" #. module: stock #: wizard_view:inventory.merge,init:0 #: model:ir.actions.wizard,name:stock.wizard_merge_inventory msgid "Merge inventories" -msgstr "" +msgstr "Liida inventuurid" #. module: stock #: model:ir.actions.act_window,name:stock.action_location_tree #: model:ir.ui.menu,name:stock.menu_action_location_tree msgid "Stock Locations Structure" -msgstr "" +msgstr "Lao asukohtade struktuur" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DISCONNECT" -msgstr "" +msgstr "STOCK_DISCONNECT" #. module: stock #: help:product.template,property_stock_account_output:0 msgid "This account will be used, instead of the default one, to value output stock" -msgstr "" +msgstr "Seda kontot kasutatakse, vaikimisi konto asemel, et hinnata lao väljundväärtust" #. module: stock #: view:stock.picking:0 msgid "Confirm (Do Not Process Now)" -msgstr "" +msgstr "Kinnita (Ära praegu töötle)" #. module: stock #: field:stock.tracking,move_ids:0 msgid "Moves Tracked" -msgstr "" +msgstr "Jälgitud liikumised" #. module: stock #: model:ir.ui.menu,name:stock.next_id_61 @@ -2183,12 +2189,12 @@ msgstr "Aruandlus" #: model:ir.actions.wizard,name:stock.wizard_invoice_onshipping #: wizard_button:stock.invoice_onshipping,init,create_invoice:0 msgid "Create invoice" -msgstr "" +msgstr "Loo arve" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_NETWORK" -msgstr "" +msgstr "STOCK_NETWORK" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_configuration @@ -2199,12 +2205,12 @@ msgstr "Seadistus" #: code:addons/stock/wizard/inventory_merge_zero.py:0 #, python-format msgid "Please select one and only one inventory !" -msgstr "" +msgstr "Palun vali ainult üks inventuur!" #. module: stock #: selection:stock.location,icon:0 msgid "terp-project" -msgstr "" +msgstr "terp-project" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_product_2_stock_report_prodlots @@ -2213,58 +2219,58 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_stock_report_prodlots #: view:stock.report.prodlots:0 msgid "Stock by Lots" -msgstr "" +msgstr "Ladu partiide järgi" #. module: stock #: field:stock.move,auto_validate:0 msgid "Auto Validate" -msgstr "" +msgstr "Kinnita automaatselt" #. module: stock #: field:stock.location,chained_auto_packing:0 #: selection:stock.location,chained_auto_packing:0 msgid "Automatic Move" -msgstr "" +msgstr "Automaatne liigutamine" #. module: stock #: field:stock.location,stock_virtual_value:0 msgid "Virtual Stock Value" -msgstr "" +msgstr "Virtuaalse lao väärtus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_UNINDENT" -msgstr "" +msgstr "STOCK_UNINDENT" #. module: stock #: selection:stock.move,state:0 msgid "Canceled" -msgstr "" +msgstr "Tühistatud" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GOTO_LAST" -msgstr "" +msgstr "STOCK_GOTO_LAST" #. module: stock #: selection:stock.picking,invoice_state:0 msgid "Invoiced" -msgstr "" +msgstr "Arveldatud" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DIRECTORY" -msgstr "" +msgstr "STOCK_DIRECTORY" #. module: stock #: help:product.template,property_stock_production:0 msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated by production orders" -msgstr "" +msgstr "Vaikimisi asukoha asemel kasutatakse selle toote (malli) jaoks seda lao asukohta tootmiskorralduste poolt genereeritud lao liikumiste lähteasukohana." #. module: stock #: view:stock.picking.move.wizard:0 msgid "Add" -msgstr "" +msgstr "Lisa" #. module: stock #: selection:stock.picking,type:0 @@ -2276,12 +2282,12 @@ msgstr "Sisemine" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Draft" -msgstr "" +msgstr "Mustand" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUSTIFY_CENTER" -msgstr "" +msgstr "STOCK_JUSTIFY_CENTER" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree3 @@ -2289,251 +2295,256 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_action_picking_tree3 #: model:ir.ui.menu,name:stock.menu_action_picking_tree8 msgid "Confirmed Packing Waiting Availability" -msgstr "" +msgstr "Kinnitatud pakendamise oote saadavus" #. module: stock #: field:stock.location,posy:0 msgid "Shelves (Y)" -msgstr "" +msgstr "Riiulid (Y)" #. module: stock #: model:ir.actions.wizard,name:stock.wizard_merge_inventory_zero msgid "Set Stock to 0" -msgstr "" +msgstr "Määra ladu nulli" #. module: stock #: view:stock.location:0 msgid "Localisation" -msgstr "" +msgstr "Lokalisatsioon" #. module: stock #: wizard_view:inventory.merge.stock.zero,init:0 msgid "Do you want to set stocks to zero ?" -msgstr "" +msgstr "Kas sa tahad muuta laoseisud nulli?" #. module: stock #: selection:stock.picking,move_type:0 msgid "Direct Delivery" -msgstr "" +msgstr "Otsetarne" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_REVERT_TO_SAVED" -msgstr "" +msgstr "STOCK_REVERT_TO_SAVED" #. module: stock #: field:product.product,track_production:0 msgid "Track Production Lots" -msgstr "" +msgstr "Jälgi tootmispartiisid" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Unplanned Qty" -msgstr "" +msgstr "Planeerimata kogus" #. module: stock #: view:stock.picking:0 msgid "Split in Two" -msgstr "" +msgstr "Jaga kaheks" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open msgid "Future Stock Moves" -msgstr "" +msgstr "Tulevased lao liikumised" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Futur P&L" -msgstr "" +msgstr "Tuleviku kasumid ja kahjumid" #. module: stock #: help:product.template,property_stock_procurement:0 msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated by procurements" -msgstr "" +msgstr "Vaikimisi asukoha asemel kasutatakse selle toote (malli) jaoks seda lao asukohta hangete poolt genereeritud lao liikumiste lähteasukohana." #. module: stock #: model:ir.model,name:stock.model_stock_picking_move_wizard msgid "stock.picking.move.wizard" -msgstr "" +msgstr "stock.picking.move.wizard" #. module: stock #: model:res.request.link,name:stock.req_link_tracking #: field:stock.move,prodlot_id:0 #: view:stock.production.lot:0 msgid "Production Lot" -msgstr "" +msgstr "Tootmispartii" #. module: stock #: model:ir.ui.menu,name:stock.menu_traceability #: model:ir.ui.menu,name:stock.next_id_62 msgid "Traceability" -msgstr "" +msgstr "Jälgitavus" #. module: stock #: field:stock.picking,date:0 msgid "Date Order" -msgstr "" +msgstr "Tellimuse kuupäev" #. module: stock #: selection:stock.invoice_onshipping,init,type:0 msgid "Supplier Invoice" -msgstr "" +msgstr "Ostuarve" #. module: stock #: code:addons/stock/wizard/wizard_return.py:0 #, python-format msgid "to be invoiced" -msgstr "" +msgstr "arveldamiseks" #. module: stock #: model:ir.actions.act_window,name:stock.action_location_form #: model:ir.ui.menu,name:stock.menu_action_location_form msgid "Locations" -msgstr "" +msgstr "Asukohad" #. module: stock #: view:stock.picking:0 msgid "General Information" -msgstr "" +msgstr "Üldine info" #. module: stock #: selection:stock.location,icon:0 msgid "terp-product" -msgstr "" +msgstr "terp-product" #. module: stock #: wizard_button:stock.partial_picking,end2,end:0 msgid "Close" -msgstr "" +msgstr "Sulge" #. module: stock #: model:ir.actions.report.xml,name:stock.report_move_labels msgid "Print Item Labels" -msgstr "" +msgstr "Prindi eseme etiketid" #. module: stock #: view:stock.move:0 msgid "Moves" -msgstr "" +msgstr "Liigutamised" #. module: stock #: field:stock.move,location_dest_id:0 #: field:stock.picking,location_dest_id:0 msgid "Dest. Location" -msgstr "" +msgstr "Sihtkoht" #. module: stock #: wizard_button:stock.move.split,init,split:0 msgid "Split" -msgstr "" +msgstr "Jaga" #. module: stock #: field:stock.location,account_id:0 msgid "Inventory Account" -msgstr "" +msgstr "Inventuuri konto" #. module: stock #: wizard_view:inventory.merge.stock.zero,init:0 msgid "Set Stocks to Zero" -msgstr "" +msgstr "Määra varud nulli" #. module: stock #: model:stock.location,name:stock.location_production #: selection:stock.location,usage:0 msgid "Production" -msgstr "" +msgstr "Tootmine" #. module: stock #: model:ir.ui.menu,name:stock.menu_traceability_low msgid "Low Level" -msgstr "" +msgstr "Alamtase" #. module: stock #: rml:stock.picking.list:0 #: field:stock.production.lot.revision,description:0 msgid "Description" -msgstr "" +msgstr "Kirjeldus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_INDENT" -msgstr "" +msgstr "STOCK_INDENT" #. module: stock #: selection:stock.picking,type:0 msgid "Delivery" -msgstr "" +msgstr "Kättetoimetamine" #. module: stock #: model:ir.actions.act_window,name:stock.action5 #: model:ir.actions.wizard,name:stock.action4 #: model:ir.actions.wizard,name:stock.action_lot2 msgid "Upstream traceability" -msgstr "" +msgstr "Ülesvoolu jälgitavus" #. module: stock #: code:addons/stock/product.py:0 #, python-format msgid "Produced Qty" -msgstr "" +msgstr "Toodetud kogus" #. module: stock #: field:product.category,property_stock_account_input_categ:0 #: field:product.template,property_stock_account_input:0 msgid "Stock Input Account" -msgstr "" +msgstr "Lao sisendkonto" #. module: stock #: field:stock.location,chained_location_type:0 msgid "Chained Location Type" -msgstr "" +msgstr "Ahelasukoha tüüp" #. module: stock #: selection:stock.location,chained_location_type:0 msgid "Customer" -msgstr "" +msgstr "Klient" #. module: stock #: model:ir.actions.act_window,name:stock.action_location_tree_3 #: model:ir.ui.menu,name:stock.menu_action_location_tree_3 msgid "Locations' Values" -msgstr "" +msgstr "Asukohtade väärtused" #. module: stock #: model:stock.location,name:stock.stock_location_output msgid "Output" -msgstr "" +msgstr "Väljastus" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" +msgstr "STOCK_JUSTIFY_RIGHT" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_line msgid "Inventory line" -msgstr "" +msgstr "Inventuuri rida" #. module: stock #: view:stock.picking:0 msgid "Others info" -msgstr "" +msgstr "Muu info" #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_NEXT" -msgstr "" +msgstr "STOCK_MEDIA_NEXT" #. module: stock #: view:stock.move:0 #: view:stock.picking:0 msgid "Move State" -msgstr "" +msgstr "Liigutamise olek" + +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" -msgstr "" +msgstr "Füüsilised asukohad" diff --git a/addons/stock/i18n/fr_FR.po b/addons/stock/i18n/fr_FR.po index 13253e13f6a..135b1412139 100644 --- a/addons/stock/i18n/fr_FR.po +++ b/addons/stock/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Produits envoyés" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1810,8 +1805,8 @@ msgstr "Emplacements Virtuels" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2532,6 +2527,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "État du Mouvement" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/hr_HR.po b/addons/stock/i18n/hr_HR.po index 90f8d51f63d..594666d773a 100644 --- a/addons/stock/i18n/hr_HR.po +++ b/addons/stock/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/hu_HU.po b/addons/stock/i18n/hu_HU.po index aee11f497c7..0391c14a323 100644 --- a/addons/stock/i18n/hu_HU.po +++ b/addons/stock/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/it_IT.po b/addons/stock/i18n/it_IT.po index 789ab277885..af0cb77eb74 100644 --- a/addons/stock/i18n/it_IT.po +++ b/addons/stock/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "Punto di Stoccaggio Virtuale" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,11 @@ msgstr "" msgid "Move State" msgstr "Stato Spostamento" +#. 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/i18n/lt_LT.po b/addons/stock/i18n/lt_LT.po index 2b6142423ba..94d933e08f8 100644 --- a/addons/stock/i18n/lt_LT.po +++ b/addons/stock/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index e88de644205..fe9d6ddda66 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/nl_NL.po b/addons/stock/i18n/nl_NL.po index e72c41aa9bd..c4a9a2bade7 100644 --- a/addons/stock/i18n/nl_NL.po +++ b/addons/stock/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "[" msgid "Products Sent" msgstr "Verzonden producten" -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -1820,8 +1815,8 @@ msgstr "Virtuele locatie" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -2542,6 +2537,11 @@ msgstr "STOCK_MEDIA_NEXT" msgid "Move State" msgstr "Mutatiestatus" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock/i18n/pl_PL.po b/addons/stock/i18n/pl_PL.po index f302f9c4802..ef5db0ccf52 100644 --- a/addons/stock/i18n/pl_PL.po +++ b/addons/stock/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 1c337a5894e..65fa59617d8 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" msgstr "Produtos Enviados" -#. 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/pt_PT.po b/addons/stock/i18n/pt_PT.po index f747a8dabf0..a1597bc7179 100644 --- a/addons/stock/i18n/pt_PT.po +++ b/addons/stock/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "Localizações virtuais" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,11 @@ msgstr "" msgid "Move State" msgstr "Estado do movimento" +#. 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/i18n/ro_RO.po b/addons/stock/i18n/ro_RO.po index 3462ced9dc3..8604dd25dfe 100644 --- a/addons/stock/i18n/ro_RO.po +++ b/addons/stock/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/ru_RU.po b/addons/stock/i18n/ru_RU.po index fe2d562de45..afb83a33049 100644 --- a/addons/stock/i18n/ru_RU.po +++ b/addons/stock/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "Виртуальные местоположения" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/sl_SL.po b/addons/stock/i18n/sl_SL.po index 4525a56aa0f..1e88c36c032 100644 --- a/addons/stock/i18n/sl_SL.po +++ b/addons/stock/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/stock.pot b/addons/stock/i18n/stock.pot index d0a3b785d2c..745500454ec 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/sv_SE.po b/addons/stock/i18n/sv_SE.po index e7557887848..30fd77f4c39 100644 --- a/addons/stock/i18n/sv_SE.po +++ b/addons/stock/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/sv_SV.po b/addons/stock/i18n/sv_SV.po index 4fa71c47318..959b2d6ee2e 100644 --- a/addons/stock/i18n/sv_SV.po +++ b/addons/stock/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: stock +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: stock #: model:ir.module.module,shortdesc:stock.module_meta_information #: model:ir.ui.menu,name:stock.menu_stock_root @@ -226,6 +231,12 @@ msgstr "" msgid "STOCK_QUIT" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "No product in this location." +msgstr "" + #. module: stock #: field:stock.warehouse,lot_output_id:0 msgid "Location Output" @@ -251,6 +262,12 @@ msgstr "" msgid "Location Type" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice cannot be created from Packing." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-purchase" @@ -325,8 +342,8 @@ msgid "Location Name" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNINDENT" +#: view:stock.inventory:0 +msgid "Posted Inventory" msgstr "" #. module: stock @@ -710,6 +727,7 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "UserError" msgstr "" @@ -922,7 +940,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_INFO" +msgid "STOCK_UNDO" msgstr "" #. module: stock @@ -1003,6 +1021,12 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is not created" +msgstr "" + #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format @@ -1260,10 +1284,17 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Error" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is already created." +msgstr "" + #. module: stock #: selection:stock.picking,invoice_state:0 msgid "Not from Packing" @@ -1905,7 +1936,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_UNDO" +msgid "STOCK_DIALOG_INFO" msgstr "" #. module: stock @@ -1982,6 +2013,12 @@ msgstr "" msgid "STOCK_FIND" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "Message !" +msgstr "" + #. module: stock #: view:stock.inventory:0 msgid "Lot Inventory" @@ -2041,11 +2078,6 @@ msgstr "" msgid "Max. Planned Date" msgstr "" -#. module: stock -#: view:stock.inventory:0 -msgid "Posted Inventory" -msgstr "" - #. module: stock #: selection:stock.picking,type:0 msgid "Getting Goods" @@ -2061,6 +2093,13 @@ msgstr "" msgid "STOCK_MEDIA_PLAY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/inventory_merge.py:0 +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_delivery #: model:ir.ui.menu,name:stock.menu_action_picking_tree_delivery @@ -2133,7 +2172,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.next_id_61 msgid "Reporting" -msgstr "Rapportering" +msgstr "" #. module: stock #: model:ir.actions.wizard,name:stock.wizard_invoice_onshipping @@ -2151,6 +2190,12 @@ msgstr "" msgid "Configuration" msgstr "Konfiguration" +#. module: stock +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Please select one and only one inventory !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-project" @@ -2181,6 +2226,11 @@ msgstr "" msgid "Virtual Stock Value" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + #. module: stock #: selection:stock.move,state:0 msgid "Canceled" diff --git a/addons/stock/i18n/th_TH.po b/addons/stock/i18n/th_TH.po index 779310915b9..fd623008343 100644 --- a/addons/stock/i18n/th_TH.po +++ b/addons/stock/i18n/th_TH.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-01-28 00:58+0000\n" -"PO-Revision-Date: 2008-12-27 05:28+0000\n" +"POT-Creation-Date: 2009-04-09 13:53+0000\n" +"PO-Revision-Date: 2009-04-14 02:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-02-06 09:24+0000\n" +"X-Launchpad-Export-Date: 2009-05-19 13:21+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock @@ -48,6 +48,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: stock +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: stock #: model:ir.module.module,shortdesc:stock.module_meta_information #: model:ir.ui.menu,name:stock.menu_stock_root @@ -228,6 +233,12 @@ msgstr "" msgid "STOCK_QUIT" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "No product in this location." +msgstr "" + #. module: stock #: field:stock.warehouse,lot_output_id:0 msgid "Location Output" @@ -253,6 +264,12 @@ msgstr "" msgid "Location Type" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice cannot be created from Packing." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-purchase" @@ -273,6 +290,11 @@ msgstr "" msgid "Products Sent" 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 @@ -327,8 +349,8 @@ msgid "Location Name" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNINDENT" +#: view:stock.inventory:0 +msgid "Posted Inventory" msgstr "" #. module: stock @@ -717,6 +739,7 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "UserError" msgstr "" @@ -742,11 +765,6 @@ msgstr "" msgid "From" msgstr "" -#. module: stock -#: rml:stock.picking.list:0 -msgid "weight" -msgstr "" - #. module: stock #: rml:stock.picking.list:0 msgid "Non Assigned Products:" @@ -934,7 +952,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_INFO" +msgid "STOCK_UNDO" msgstr "" #. module: stock @@ -1015,6 +1033,12 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is not created" +msgstr "" + #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format @@ -1274,10 +1298,17 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 #, python-format msgid "Error" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_invoice_onshipping.py:0 +#, python-format +msgid "Invoice is already created." +msgstr "" + #. module: stock #: selection:stock.picking,invoice_state:0 msgid "Not from Packing" @@ -1442,6 +1473,7 @@ msgid "Priority" msgstr "" #. module: stock +#: wizard_field:inventory.merge.stock.zero,init,location_id:0 #: model:ir.model,name:stock.model_stock_location #: rml:lot.location:0 #: wizard_field:stock.fill_inventory,init,location_id:0 @@ -1579,6 +1611,12 @@ msgstr "" msgid "terp-mrp" msgstr "" +#. module: stock +#: model:ir.actions.act_window,name:stock.action_picking_tree3_delivery +#: model:ir.ui.menu,name:stock.menu_action_picking_tree3_delivery +msgid "Future Delivery Orders" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GO_UP" @@ -1785,7 +1823,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" +msgid "STOCK_REDO" msgstr "" #. module: stock @@ -1917,7 +1955,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_UNDO" +msgid "STOCK_DIALOG_INFO" msgstr "" #. module: stock @@ -1950,12 +1988,6 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree3_delivery -#: model:ir.ui.menu,name:stock.menu_action_picking_tree3_delivery -msgid "Futur Delivery Orders" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_PAUSE" @@ -2000,6 +2032,12 @@ msgstr "" msgid "STOCK_FIND" msgstr "" +#. module: stock +#: code:addons/stock/wizard/wizard_inventory.py:0 +#, python-format +msgid "Message !" +msgstr "" + #. module: stock #: view:stock.inventory:0 msgid "Lot Inventory" @@ -2064,11 +2102,6 @@ msgstr "" msgid "Max. Planned Date" msgstr "" -#. module: stock -#: view:stock.inventory:0 -msgid "Posted Inventory" -msgstr "" - #. module: stock #: selection:stock.picking,type:0 msgid "Getting Goods" @@ -2084,6 +2117,13 @@ msgstr "" msgid "STOCK_MEDIA_PLAY" msgstr "" +#. module: stock +#: code:addons/stock/wizard/inventory_merge.py:0 +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_delivery #: model:ir.ui.menu,name:stock.menu_action_picking_tree_delivery @@ -2177,6 +2217,12 @@ msgstr "" msgid "Configuration" msgstr "" +#. module: stock +#: code:addons/stock/wizard/inventory_merge_zero.py:0 +#, python-format +msgid "Please select one and only one inventory !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-project" @@ -2207,6 +2253,11 @@ msgstr "" msgid "Virtual Stock Value" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + #. module: stock #: selection:stock.move,state:0 msgid "Canceled" @@ -2509,11 +2560,6 @@ 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/i18n/tr_TR.po b/addons/stock/i18n/tr_TR.po index 758c178621f..bb54ee039b5 100644 --- a/addons/stock/i18n/tr_TR.po +++ b/addons/stock/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/uk_UK.po b/addons/stock/i18n/uk_UK.po index f7f4f1dd645..10a12fc1797 100644 --- a/addons/stock/i18n/uk_UK.po +++ b/addons/stock/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index f6947ee828c..86f82c1dc7b 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index c425cc96928..1b584c4799b 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -288,11 +288,6 @@ msgstr "" msgid "Products Sent" 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 @@ -1810,7 +1805,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2532,6 +2527,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_invoice_directly/i18n/ar_AR.po b/addons/stock_invoice_directly/i18n/ar_AR.po index 6bbc9eed9f8..c54ccc8a42a 100644 --- a/addons/stock_invoice_directly/i18n/ar_AR.po +++ b/addons/stock_invoice_directly/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/bg_BG.po b/addons/stock_invoice_directly/i18n/bg_BG.po index 72302730d96..fbdf8bc39d5 100644 --- a/addons/stock_invoice_directly/i18n/bg_BG.po +++ b/addons/stock_invoice_directly/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/bs_BS.po b/addons/stock_invoice_directly/i18n/bs_BS.po index 0fd61dfe29b..3be6c14963d 100644 --- a/addons/stock_invoice_directly/i18n/bs_BS.po +++ b/addons/stock_invoice_directly/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ca_ES.po b/addons/stock_invoice_directly/i18n/ca_ES.po index 47f18262eb1..5e47d8e101e 100644 --- a/addons/stock_invoice_directly/i18n/ca_ES.po +++ b/addons/stock_invoice_directly/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/cs_CS.po b/addons/stock_invoice_directly/i18n/cs_CS.po index c9da52657fd..1083fb68ae1 100644 --- a/addons/stock_invoice_directly/i18n/cs_CS.po +++ b/addons/stock_invoice_directly/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/cs_CZ.po b/addons/stock_invoice_directly/i18n/cs_CZ.po index 89e5b45c454..2e016526fd0 100644 --- a/addons/stock_invoice_directly/i18n/cs_CZ.po +++ b/addons/stock_invoice_directly/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/de_DE.po b/addons/stock_invoice_directly/i18n/de_DE.po index d81fc546dc0..8755085ed23 100644 --- a/addons/stock_invoice_directly/i18n/de_DE.po +++ b/addons/stock_invoice_directly/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index d5b29aad529..bafd09edb1e 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/es_ES.po b/addons/stock_invoice_directly/i18n/es_ES.po index a12633b3b7f..7e445a1fb07 100644 --- a/addons/stock_invoice_directly/i18n/es_ES.po +++ b/addons/stock_invoice_directly/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/et_EE.po b/addons/stock_invoice_directly/i18n/et_EE.po index 1d66825b535..8ae8b971235 100644 --- a/addons/stock_invoice_directly/i18n/et_EE.po +++ b/addons/stock_invoice_directly/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: stock_invoice_directly #: model:ir.module.module,shortdesc:stock_invoice_directly.module_meta_information msgid "Invoice Picking Directly" -msgstr "" +msgstr "Arve otsenope" diff --git a/addons/stock_invoice_directly/i18n/fr_FR.po b/addons/stock_invoice_directly/i18n/fr_FR.po index 1d659d7e553..fc78bab0e1d 100644 --- a/addons/stock_invoice_directly/i18n/fr_FR.po +++ b/addons/stock_invoice_directly/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/hr_HR.po b/addons/stock_invoice_directly/i18n/hr_HR.po index d4497953ca7..24d48680b0c 100644 --- a/addons/stock_invoice_directly/i18n/hr_HR.po +++ b/addons/stock_invoice_directly/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/hu_HU.po b/addons/stock_invoice_directly/i18n/hu_HU.po index c123e8e7550..88170261d1b 100644 --- a/addons/stock_invoice_directly/i18n/hu_HU.po +++ b/addons/stock_invoice_directly/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/it_IT.po b/addons/stock_invoice_directly/i18n/it_IT.po index 734c1899021..ebb3aa12288 100644 --- a/addons/stock_invoice_directly/i18n/it_IT.po +++ b/addons/stock_invoice_directly/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/lt_LT.po b/addons/stock_invoice_directly/i18n/lt_LT.po index f8316dbf844..f4298f4f087 100644 --- a/addons/stock_invoice_directly/i18n/lt_LT.po +++ b/addons/stock_invoice_directly/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index 00762712cff..cf9b093a53c 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/nl_NL.po b/addons/stock_invoice_directly/i18n/nl_NL.po index b0488eaf00c..e543f3fc375 100644 --- a/addons/stock_invoice_directly/i18n/nl_NL.po +++ b/addons/stock_invoice_directly/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pl_PL.po b/addons/stock_invoice_directly/i18n/pl_PL.po index b17830a6ea9..d40d5f2ace3 100644 --- a/addons/stock_invoice_directly/i18n/pl_PL.po +++ b/addons/stock_invoice_directly/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index a11ff6c470e..a96a82f6037 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pt_PT.po b/addons/stock_invoice_directly/i18n/pt_PT.po index 2e9389a842a..03c7f91ec9e 100644 --- a/addons/stock_invoice_directly/i18n/pt_PT.po +++ b/addons/stock_invoice_directly/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ro_RO.po b/addons/stock_invoice_directly/i18n/ro_RO.po index 23eb0ced7b4..75da5909768 100644 --- a/addons/stock_invoice_directly/i18n/ro_RO.po +++ b/addons/stock_invoice_directly/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ru_RU.po b/addons/stock_invoice_directly/i18n/ru_RU.po index fb6182d2477..13d4f7d1d68 100644 --- a/addons/stock_invoice_directly/i18n/ru_RU.po +++ b/addons/stock_invoice_directly/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sl_SL.po b/addons/stock_invoice_directly/i18n/sl_SL.po index dcac50ac149..b3d02a7ecb7 100644 --- a/addons/stock_invoice_directly/i18n/sl_SL.po +++ b/addons/stock_invoice_directly/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot index 41b21b9a77e..3eb1cd866a4 100644 --- a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot +++ b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sv_SE.po b/addons/stock_invoice_directly/i18n/sv_SE.po index 323708205c1..5515fdcfb21 100644 --- a/addons/stock_invoice_directly/i18n/sv_SE.po +++ b/addons/stock_invoice_directly/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sv_SV.po b/addons/stock_invoice_directly/i18n/sv_SV.po index 490256d8031..581c2ff7b2c 100644 --- a/addons/stock_invoice_directly/i18n/sv_SV.po +++ b/addons/stock_invoice_directly/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/tr_TR.po b/addons/stock_invoice_directly/i18n/tr_TR.po index 5f0bf46bf6d..43e4815df14 100644 --- a/addons/stock_invoice_directly/i18n/tr_TR.po +++ b/addons/stock_invoice_directly/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/uk_UK.po b/addons/stock_invoice_directly/i18n/uk_UK.po index 5f713a5ca68..5b4494ce67d 100644 --- a/addons/stock_invoice_directly/i18n/uk_UK.po +++ b/addons/stock_invoice_directly/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index def6738d18b..c8fe12a6428 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index 8434b4ad10b..1086788bc04 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ar_AR.po b/addons/stock_location/i18n/ar_AR.po index 8792695b3fb..c181a4a1f13 100644 --- a/addons/stock_location/i18n/ar_AR.po +++ b/addons/stock_location/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/bg_BG.po b/addons/stock_location/i18n/bg_BG.po index 9f8b58704d2..85bb29b027b 100644 --- a/addons/stock_location/i18n/bg_BG.po +++ b/addons/stock_location/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/bs_BS.po b/addons/stock_location/i18n/bs_BS.po index 056cc83f401..f40e3a6d9bd 100644 --- a/addons/stock_location/i18n/bs_BS.po +++ b/addons/stock_location/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ca_ES.po b/addons/stock_location/i18n/ca_ES.po index 2043011a57f..dbca6eb5766 100644 --- a/addons/stock_location/i18n/ca_ES.po +++ b/addons/stock_location/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/cs_CS.po b/addons/stock_location/i18n/cs_CS.po index 0f38a114b93..d45ef6898b5 100644 --- a/addons/stock_location/i18n/cs_CS.po +++ b/addons/stock_location/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/cs_CZ.po b/addons/stock_location/i18n/cs_CZ.po index 53afec50222..f13ff96f387 100644 --- a/addons/stock_location/i18n/cs_CZ.po +++ b/addons/stock_location/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/de_DE.po b/addons/stock_location/i18n/de_DE.po index e651717cfef..08283fe9793 100644 --- a/addons/stock_location/i18n/de_DE.po +++ b/addons/stock_location/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index 2773cfb2d9d..09ab352523a 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:54+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/es_ES.po b/addons/stock_location/i18n/es_ES.po index 20544cf5bdd..7428397d236 100644 --- a/addons/stock_location/i18n/es_ES.po +++ b/addons/stock_location/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/et_EE.po b/addons/stock_location/i18n/et_EE.po index 14d583d1d72..fdc65846285 100644 --- a/addons/stock_location/i18n/et_EE.po +++ b/addons/stock_location/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:13+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:13+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: stock_location #: selection:stock.location.path,auto:0 msgid "Automatic No Step Added" -msgstr "" +msgstr "Automaatselt sammu ei lisata" #. module: stock_location #: help:product.product,path_ids:0 @@ -80,7 +80,8 @@ msgstr "stock.location.path" #: help:stock.location.path,auto:0 msgid "This is used to define paths the product has to follow within the location tree.\n" "The 'Automatic Move' value will create a stock move after the current one that will be validated automatically. With 'Manual Operation', the stock move has to be validated by a worker. With 'Automatic No Step Added', the location is replaced in the original move." -msgstr "" +msgstr "Seda kasutatakse, et määratleda rajad mida toode peab järgima asukohapuus.\n" +"'Automaatne liigutamine' väärtus loob lao liikumise pärast praegust, mis valideeritakse automaatselt. 'Käsitsi opereerimine' puhul peab liikumise valideerima laotöötaja. 'Automaatselt sammu ei lisata' puhul asendatakse asukohta originaalliikumises." #. module: stock_location #: field:stock.location.path,name:0 diff --git a/addons/stock_location/i18n/fr_FR.po b/addons/stock_location/i18n/fr_FR.po index e17567d371e..04be710726e 100644 --- a/addons/stock_location/i18n/fr_FR.po +++ b/addons/stock_location/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/hr_HR.po b/addons/stock_location/i18n/hr_HR.po index fffdc88e850..4309a25fec9 100644 --- a/addons/stock_location/i18n/hr_HR.po +++ b/addons/stock_location/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/hu_HU.po b/addons/stock_location/i18n/hu_HU.po index c944b1f1eec..11b9134b42a 100644 --- a/addons/stock_location/i18n/hu_HU.po +++ b/addons/stock_location/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/it_IT.po b/addons/stock_location/i18n/it_IT.po index a0cd711dbf3..f2b6395b10d 100644 --- a/addons/stock_location/i18n/it_IT.po +++ b/addons/stock_location/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/lt_LT.po b/addons/stock_location/i18n/lt_LT.po index aa1c6df21ea..db560a7f2a8 100644 --- a/addons/stock_location/i18n/lt_LT.po +++ b/addons/stock_location/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index f436a0e861d..296f0ec0d16 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/nl_NL.po b/addons/stock_location/i18n/nl_NL.po index dfc08472373..af5f3094976 100644 --- a/addons/stock_location/i18n/nl_NL.po +++ b/addons/stock_location/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pl_PL.po b/addons/stock_location/i18n/pl_PL.po index 8d8bf17e97e..e89339a8c71 100644 --- a/addons/stock_location/i18n/pl_PL.po +++ b/addons/stock_location/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index 021829a52c8..e3dff5c7c49 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pt_PT.po b/addons/stock_location/i18n/pt_PT.po index 37683c4ded4..3ba1d5387ca 100644 --- a/addons/stock_location/i18n/pt_PT.po +++ b/addons/stock_location/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ro_RO.po b/addons/stock_location/i18n/ro_RO.po index 178c0b6f10c..414f4963f31 100644 --- a/addons/stock_location/i18n/ro_RO.po +++ b/addons/stock_location/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ru_RU.po b/addons/stock_location/i18n/ru_RU.po index 1d9d1b620f7..e1358f67482 100644 --- a/addons/stock_location/i18n/ru_RU.po +++ b/addons/stock_location/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sl_SL.po b/addons/stock_location/i18n/sl_SL.po index f85fdcc72ce..eb3d067958b 100644 --- a/addons/stock_location/i18n/sl_SL.po +++ b/addons/stock_location/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/stock_location.pot b/addons/stock_location/i18n/stock_location.pot index 6272e4463ad..6d734517698 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sv_SE.po b/addons/stock_location/i18n/sv_SE.po index 2dfa348dff3..86bef024fe5 100644 --- a/addons/stock_location/i18n/sv_SE.po +++ b/addons/stock_location/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sv_SV.po b/addons/stock_location/i18n/sv_SV.po index 947791ca0cf..c75a01d3131 100644 --- a/addons/stock_location/i18n/sv_SV.po +++ b/addons/stock_location/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/tr_TR.po b/addons/stock_location/i18n/tr_TR.po index 3d745157429..5042c2559da 100644 --- a/addons/stock_location/i18n/tr_TR.po +++ b/addons/stock_location/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/uk_UK.po b/addons/stock_location/i18n/uk_UK.po index 3e5e9c957fa..ea222b6d513 100644 --- a/addons/stock_location/i18n/uk_UK.po +++ b/addons/stock_location/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index b931d5462e6..678ac04390f 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index a5b9c202589..5d724f6e330 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ar_AR.po b/addons/stock_no_autopicking/i18n/ar_AR.po index 94efe87b2a0..66667830c31 100644 --- a/addons/stock_no_autopicking/i18n/ar_AR.po +++ b/addons/stock_no_autopicking/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/bg_BG.po b/addons/stock_no_autopicking/i18n/bg_BG.po index 0951de84fee..8b75a56bb83 100644 --- a/addons/stock_no_autopicking/i18n/bg_BG.po +++ b/addons/stock_no_autopicking/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/bs_BS.po b/addons/stock_no_autopicking/i18n/bs_BS.po index 03a668a57f0..ab0f7637805 100644 --- a/addons/stock_no_autopicking/i18n/bs_BS.po +++ b/addons/stock_no_autopicking/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ca_ES.po b/addons/stock_no_autopicking/i18n/ca_ES.po index e69410ba9e7..d5fd9a9dd3c 100644 --- a/addons/stock_no_autopicking/i18n/ca_ES.po +++ b/addons/stock_no_autopicking/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/cs_CS.po b/addons/stock_no_autopicking/i18n/cs_CS.po index 9e7c952c043..8d7a828a5ad 100644 --- a/addons/stock_no_autopicking/i18n/cs_CS.po +++ b/addons/stock_no_autopicking/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/cs_CZ.po b/addons/stock_no_autopicking/i18n/cs_CZ.po index 69216fc65be..85dc2af1112 100644 --- a/addons/stock_no_autopicking/i18n/cs_CZ.po +++ b/addons/stock_no_autopicking/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/de_DE.po b/addons/stock_no_autopicking/i18n/de_DE.po index fbbe4ae954c..010455985be 100644 --- a/addons/stock_no_autopicking/i18n/de_DE.po +++ b/addons/stock_no_autopicking/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index 6c8df9d25b4..759220662cc 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/es_ES.po b/addons/stock_no_autopicking/i18n/es_ES.po index e92c6c5ec06..c6739d270e3 100644 --- a/addons/stock_no_autopicking/i18n/es_ES.po +++ b/addons/stock_no_autopicking/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/et_EE.po b/addons/stock_no_autopicking/i18n/et_EE.po index f8b047d6bdc..98032d6849e 100644 --- a/addons/stock_no_autopicking/i18n/et_EE.po +++ b/addons/stock_no_autopicking/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/fr_FR.po b/addons/stock_no_autopicking/i18n/fr_FR.po index eb486e78e9a..8d079f5e86d 100644 --- a/addons/stock_no_autopicking/i18n/fr_FR.po +++ b/addons/stock_no_autopicking/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/hr_HR.po b/addons/stock_no_autopicking/i18n/hr_HR.po index fa24af4a04f..aff28a08e3e 100644 --- a/addons/stock_no_autopicking/i18n/hr_HR.po +++ b/addons/stock_no_autopicking/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/hu_HU.po b/addons/stock_no_autopicking/i18n/hu_HU.po index e30b0c5fe74..37458e806d9 100644 --- a/addons/stock_no_autopicking/i18n/hu_HU.po +++ b/addons/stock_no_autopicking/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/it_IT.po b/addons/stock_no_autopicking/i18n/it_IT.po index 962e78ea183..1fc6d7a72aa 100644 --- a/addons/stock_no_autopicking/i18n/it_IT.po +++ b/addons/stock_no_autopicking/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/lt_LT.po b/addons/stock_no_autopicking/i18n/lt_LT.po index 69e677d8627..cf0ccfb9dbb 100644 --- a/addons/stock_no_autopicking/i18n/lt_LT.po +++ b/addons/stock_no_autopicking/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index d5ea648d768..c8c94e4707e 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/nl_NL.po b/addons/stock_no_autopicking/i18n/nl_NL.po index 32ddee77f4f..e1b1a9a95cf 100644 --- a/addons/stock_no_autopicking/i18n/nl_NL.po +++ b/addons/stock_no_autopicking/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pl_PL.po b/addons/stock_no_autopicking/i18n/pl_PL.po index dbc3dc60e94..7d37e238510 100644 --- a/addons/stock_no_autopicking/i18n/pl_PL.po +++ b/addons/stock_no_autopicking/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 47e0700579c..913642583e9 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pt_PT.po b/addons/stock_no_autopicking/i18n/pt_PT.po index d8b55317ca2..d10c09fd12d 100644 --- a/addons/stock_no_autopicking/i18n/pt_PT.po +++ b/addons/stock_no_autopicking/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ro_RO.po b/addons/stock_no_autopicking/i18n/ro_RO.po index 83655194620..252d15d9f19 100644 --- a/addons/stock_no_autopicking/i18n/ro_RO.po +++ b/addons/stock_no_autopicking/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ru_RU.po b/addons/stock_no_autopicking/i18n/ru_RU.po index 662df309cbb..09658fcb7af 100644 --- a/addons/stock_no_autopicking/i18n/ru_RU.po +++ b/addons/stock_no_autopicking/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sl_SL.po b/addons/stock_no_autopicking/i18n/sl_SL.po index fde2e7cad20..ee0cef6378d 100644 --- a/addons/stock_no_autopicking/i18n/sl_SL.po +++ b/addons/stock_no_autopicking/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+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 d5a7934d9cd..23eef3ae5e1 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sv_SE.po b/addons/stock_no_autopicking/i18n/sv_SE.po index 174b3af5d9c..0614371d184 100644 --- a/addons/stock_no_autopicking/i18n/sv_SE.po +++ b/addons/stock_no_autopicking/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sv_SV.po b/addons/stock_no_autopicking/i18n/sv_SV.po index f685ccc87dc..7a11be0d57d 100644 --- a/addons/stock_no_autopicking/i18n/sv_SV.po +++ b/addons/stock_no_autopicking/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/tr_TR.po b/addons/stock_no_autopicking/i18n/tr_TR.po index adccc3508af..44467fdc4b6 100644 --- a/addons/stock_no_autopicking/i18n/tr_TR.po +++ b/addons/stock_no_autopicking/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/uk_UK.po b/addons/stock_no_autopicking/i18n/uk_UK.po index 0e844573a84..b6a11247bbf 100644 --- a/addons/stock_no_autopicking/i18n/uk_UK.po +++ b/addons/stock_no_autopicking/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index ac3502a736f..5d8f1631b24 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 6963508ed57..682f217a93d 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ar_AR.po b/addons/subscription/i18n/ar_AR.po index 57f085f8b1f..2d67b6521e0 100644 --- a/addons/subscription/i18n/ar_AR.po +++ b/addons/subscription/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/bg_BG.po b/addons/subscription/i18n/bg_BG.po index 469970e75a9..1f3a4d0f9a4 100644 --- a/addons/subscription/i18n/bg_BG.po +++ b/addons/subscription/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/bs_BS.po b/addons/subscription/i18n/bs_BS.po index 01041ec6a31..08da09336f8 100644 --- a/addons/subscription/i18n/bs_BS.po +++ b/addons/subscription/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ca_ES.po b/addons/subscription/i18n/ca_ES.po index c3b407085ba..e6e9159c90d 100644 --- a/addons/subscription/i18n/ca_ES.po +++ b/addons/subscription/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/cs_CS.po b/addons/subscription/i18n/cs_CS.po index 534e50cf09a..6e0e5043430 100644 --- a/addons/subscription/i18n/cs_CS.po +++ b/addons/subscription/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "" msgid "Current Date" msgstr "" +#. module: subscription +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: subscription #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/subscription/i18n/cs_CZ.po b/addons/subscription/i18n/cs_CZ.po index cbea1508d19..35e46ab602a 100644 --- a/addons/subscription/i18n/cs_CZ.po +++ b/addons/subscription/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/de_DE.po b/addons/subscription/i18n/de_DE.po index 004098d1bb2..a96070063c1 100644 --- a/addons/subscription/i18n/de_DE.po +++ b/addons/subscription/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index a790713e58d..eda131fbdaa 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/es_ES.po b/addons/subscription/i18n/es_ES.po index 58fecb4a5e1..aa97e3f0cab 100644 --- a/addons/subscription/i18n/es_ES.po +++ b/addons/subscription/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/et_EE.po b/addons/subscription/i18n/et_EE.po index 45d5a755d90..74d4bc46f75 100644 --- a/addons/subscription/i18n/et_EE.po +++ b/addons/subscription/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "Tänane kuupäev" #. module: subscription #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: subscription #: constraint:ir.model:0 @@ -100,7 +100,7 @@ msgstr "Määra mustandiks" #. module: subscription #: model:ir.module.module,description:subscription.module_meta_information msgid "Module allows to create new documents and add subscription on that document." -msgstr "" +msgstr "Moodul võimaldab sul luua uusi dokumente ja lisada tellimus sellele dokumendile." #. module: subscription #: selection:subscription.subscription,state:0 @@ -176,7 +176,7 @@ msgstr "Päevad" #. module: subscription #: model:ir.module.module,shortdesc:subscription.module_meta_information msgid "Subscription and recurring operations" -msgstr "" +msgstr "Tellimus ja korduvad operatsioonid" #. module: subscription #: field:subscription.subscription,active:0 diff --git a/addons/subscription/i18n/fr_FR.po b/addons/subscription/i18n/fr_FR.po index 5cfc0e2f4a9..1674cca9c16 100644 --- a/addons/subscription/i18n/fr_FR.po +++ b/addons/subscription/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/hr_HR.po b/addons/subscription/i18n/hr_HR.po index 9c1b7f22efb..7691d4b94ef 100644 --- a/addons/subscription/i18n/hr_HR.po +++ b/addons/subscription/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/hu_HU.po b/addons/subscription/i18n/hu_HU.po index 6de405aa4fc..66717599a0a 100644 --- a/addons/subscription/i18n/hu_HU.po +++ b/addons/subscription/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/it_IT.po b/addons/subscription/i18n/it_IT.po index c7f9ed5bd83..80b54b12819 100644 --- a/addons/subscription/i18n/it_IT.po +++ b/addons/subscription/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/lt_LT.po b/addons/subscription/i18n/lt_LT.po index be5ccd942de..20426b4de95 100644 --- a/addons/subscription/i18n/lt_LT.po +++ b/addons/subscription/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index 32700b84a64..8a3f7871220 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/nl_NL.po b/addons/subscription/i18n/nl_NL.po index 78a607013e9..c3b061c391f 100644 --- a/addons/subscription/i18n/nl_NL.po +++ b/addons/subscription/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pl_PL.po b/addons/subscription/i18n/pl_PL.po index a3f8719ea16..f08a77ec56c 100644 --- a/addons/subscription/i18n/pl_PL.po +++ b/addons/subscription/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index b0ca7552c68..9260bb2256e 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pt_PT.po b/addons/subscription/i18n/pt_PT.po index 91709e9c06e..c61f7722395 100644 --- a/addons/subscription/i18n/pt_PT.po +++ b/addons/subscription/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ro_RO.po b/addons/subscription/i18n/ro_RO.po index 509a5c7f412..2735122eb26 100644 --- a/addons/subscription/i18n/ro_RO.po +++ b/addons/subscription/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ru_RU.po b/addons/subscription/i18n/ru_RU.po index 6d7565a35d2..3c6ab6df559 100644 --- a/addons/subscription/i18n/ru_RU.po +++ b/addons/subscription/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sl_SL.po b/addons/subscription/i18n/sl_SL.po index cc138f4a24d..9ad7a5c87b8 100644 --- a/addons/subscription/i18n/sl_SL.po +++ b/addons/subscription/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+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 dfedd666c2a..982206b30b8 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sv_SE.po b/addons/subscription/i18n/sv_SE.po index c484f534a61..caf640792e7 100644 --- a/addons/subscription/i18n/sv_SE.po +++ b/addons/subscription/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sv_SV.po b/addons/subscription/i18n/sv_SV.po index 747bee9b716..f049f302ea1 100644 --- a/addons/subscription/i18n/sv_SV.po +++ b/addons/subscription/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,6 +57,11 @@ msgstr "Utdrag" msgid "Current Date" msgstr "" +#. module: subscription +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: subscription #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/subscription/i18n/tr_TR.po b/addons/subscription/i18n/tr_TR.po index 82d3d301a52..b14d0a999f5 100644 --- a/addons/subscription/i18n/tr_TR.po +++ b/addons/subscription/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/uk_UK.po b/addons/subscription/i18n/uk_UK.po index fe2673f1409..e0649a02827 100644 --- a/addons/subscription/i18n/uk_UK.po +++ b/addons/subscription/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index 8df1a8f75ba..b1a1beaeaee 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index 5b42eabeb5d..1de00cfd20d 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/ar_AR.po b/addons/warning/i18n/ar_AR.po index b15dc571435..600d051224e 100644 --- a/addons/warning/i18n/ar_AR.po +++ b/addons/warning/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/bg_BG.po b/addons/warning/i18n/bg_BG.po index 08bc2e8b3cd..246d8694df8 100644 --- a/addons/warning/i18n/bg_BG.po +++ b/addons/warning/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Невалиден XML за преглед на архитектурата" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/bs_BS.po b/addons/warning/i18n/bs_BS.po index 68d0027e911..28f7bb8c1a2 100644 --- a/addons/warning/i18n/bs_BS.po +++ b/addons/warning/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/ca_ES.po b/addons/warning/i18n/ca_ES.po index fcac11bfb15..6da3d5c7a63 100644 --- a/addons/warning/i18n/ca_ES.po +++ b/addons/warning/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:15+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:15+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Missatge per a factura" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "Línia de la comanda de compra" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Missatge per a empaquetat d'estoc" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Missatge per a la línia de la comanda de venda" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Missatge per a la línia de la comanda de compra" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Línia de comanda de venda" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Avisos" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Avís al comprar aquest producte" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Missatge per a la línia de la comanda de venda" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Comanda de venda" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "Línia de la comanda de compra" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Missatge per a la línia de la comanda de compra" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Comanda de compra" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Avís al vendre aquest producte" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Avís en la comanda de venda" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Avís en la comanda de compra" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Empaquetat d'estoc" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML invàlid per a la definició de la vista!" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Factura" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Comanda de venda" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Empaquetat d'estoc" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Comanda de compra" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Missatge per a la comanda de venda" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Avís en l'empaquetament" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Avís en la factura" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Missatge per a la comanda de la compra" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Línia de comanda de venda" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Missatge per a factura" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Missatge per a empaquetat d'estoc" + diff --git a/addons/warning/i18n/cs_CS.po b/addons/warning/i18n/cs_CS.po index 161e8a9483d..8bf918da321 100644 --- a/addons/warning/i18n/cs_CS.po +++ b/addons/warning/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:42+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/cs_CZ.po b/addons/warning/i18n/cs_CZ.po index b3087a7c7d5..670fcd3a5a6 100644 --- a/addons/warning/i18n/cs_CZ.po +++ b/addons/warning/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/de_DE.po b/addons/warning/i18n/de_DE.po index b4c70e7ede1..d5eed8d4606 100644 --- a/addons/warning/i18n/de_DE.po +++ b/addons/warning/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:07+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Nachricht zu Rechnung" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "Einkaufspositionen" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Nachricht zu Packauftrag" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Nachricht bei Auftragszeile" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Bachricht bei Beschaffungsauftragsposition" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Verkaufsauftragsposition" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Warnungen" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Warnung bei Beschaffung dieses Produkts" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Nachricht bei Auftragszeile" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Verkaufsauftrag" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "Einkaufspositionen" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Bachricht bei Beschaffungsauftragsposition" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Beschaffungsauftrag" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Warnung bei Verkauf dieses Produkts" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Warnung bei Verkauf" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Warnung bei Beschaffung" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Lagerpackauftrag" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Rechnung" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Verkaufsauftrag" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Lagerpackauftrag" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Beschaffungsauftrag" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Nachricht bei Verkauf" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Warnung zu Packauftrag" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Warnung bei Rechnung" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Nachricht bei Beschaffungsauftrag" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Verkaufsauftragsposition" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Nachricht zu Rechnung" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Nachricht zu Packauftrag" + diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index 8d4ade1c6a0..5eb237246ed 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/es_ES.po b/addons/warning/i18n/es_ES.po index d259c0e294d..affd11cdcf2 100644 --- a/addons/warning/i18n/es_ES.po +++ b/addons/warning/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:29+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:29+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Mensaje para factura" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "Línea pedido de compra" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Mensaje para empaquetado de stock" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Mensaje para la línea del pedido de venta" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Mensaje para la línea del pedido de compra" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Línea pedido de venta" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Avisos" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Aviso al comprar este producto" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Mensaje para la línea del pedido de venta" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Pedido de venta" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "Línea pedido de compra" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Mensaje para la línea del pedido de compra" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Pedido de compra" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Aviso al vender este producto" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Aviso en el pedido de venta" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Aviso en el pedido de compra" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Empaquetado de stock" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML inválido para la definición de la vista!" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Factura" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Pedido de venta" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Empaquetado de stock" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Pedido de compra" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Mensaje para el pedido de venta" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Aviso en el empaquetado" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Aviso en la factura" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Mensaje para el pedido de compra" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Línea pedido de venta" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Mensaje para factura" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Mensaje para empaquetado de stock" + diff --git a/addons/warning/i18n/et_EE.po b/addons/warning/i18n/et_EE.po index d40b6f63473..3410ffd0297 100644 --- a/addons/warning/i18n/et_EE.po +++ b/addons/warning/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Sõnum arvele" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "Ostukorralduse rida" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Sõnum laonoppele" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Sõnum müügikorralduse reale" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Sõnum ostukorralduse reale" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Müügikorralduse rida" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Hoiatused" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Hoiatus selle toote ostmisel" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Sõnum müügikorralduse reale" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Müügikorraldus" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "Ostukorralduse rida" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Sõnum ostukorralduse reale" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Ostutellimus" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Hoiatus selle toote müümisel" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Hoiatus müügikorraldusel" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Hoiatus ostukorraldusel" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Laonope" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Arve" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "Moodul hoiatuste jaoks muutuvalt sündmuselt" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Müügikorraldus" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Laonope" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Ostutellimus" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Sõnum müügikorraldusele" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Hoiatus noppimisel" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Hoiatus arvel" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Sõnum ostukorraldusele" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Müügikorralduse rida" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Sõnum arvele" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." +msgstr "Moodul hoiatuste jaoks muutuvalt sündmuselt." + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Sõnum laonoppele" + diff --git a/addons/warning/i18n/fr_FR.po b/addons/warning/i18n/fr_FR.po index 7759cd2176e..47e7d515446 100644 --- a/addons/warning/i18n/fr_FR.po +++ b/addons/warning/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Message pour Facture" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Message pour Colisage" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Message pour Ligne de Commande Client" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Message pour Ligne de Commande Fournisseur" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Ligne de Commande Client" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Avertissements" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Avertissement quand vous achetez ce produit" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Message pour Ligne de Commande Client" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Commande Client" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Message pour Ligne de Commande Fournisseur" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Commande Fournisseur" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Avertissement lors de la vente de ce produit" - #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Avertissement lors de la commande de vente" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Avertissement sur les commandes d'achats" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Colisage" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valide pour l'architecture de la vue" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Facture" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Commande Client" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Colisage" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Commande Fournisseur" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Message pour Commande Client" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Avertissement sur les préparations" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Avertissement sur la facture" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Message pour Commande Fournisseur" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Ligne de Commande Client" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Message pour Facture" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Message pour Colisage" + diff --git a/addons/warning/i18n/hr_HR.po b/addons/warning/i18n/hr_HR.po index 70e45e91ac7..0928f1fb2cd 100644 --- a/addons/warning/i18n/hr_HR.po +++ b/addons/warning/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/hu_HU.po b/addons/warning/i18n/hu_HU.po index 7fa2f4b06e1..6b47ccbdfa5 100644 --- a/addons/warning/i18n/hu_HU.po +++ b/addons/warning/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/it_IT.po b/addons/warning/i18n/it_IT.po index a58d8a0631b..a3fb41c9e29 100644 --- a/addons/warning/i18n/it_IT.po +++ b/addons/warning/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:54+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:54+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:38+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Messaggio per Fattura" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Messaggio per Prelievo Magazzino" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Riga Ordine di vendita" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "Avvertimenti" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per Visualizzazione Architettura!" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "Fattura" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,72 +103,72 @@ msgid "Sale Order" msgstr "Ordine di Vendita" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Prelievo di Magazzino" #. module: warning #: field:res.partner,purchase_warn:0 msgid "Purchase Order" msgstr "Ordine di Acquisto" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Attenzione sul prodotto in vendita" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Attenzione sull'ordine di vendita" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Attenzione sull'ordine di acquisto" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Prelievo di Magazzino" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "Fattura" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Messaggio per l'Ordine di Vendita" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Attenzione sul Prelievo" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Avvertimento sulla fattura" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Messaggio per l'Ordine di Acquisto" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Riga Ordine di vendita" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Messaggio per Fattura" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Messaggio per Prelievo Magazzino" + diff --git a/addons/warning/i18n/lt_LT.po b/addons/warning/i18n/lt_LT.po index 2a2ae13e682..dede6db4189 100644 --- a/addons/warning/i18n/lt_LT.po +++ b/addons/warning/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:04+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:04+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index 1b51a709ea4..b1914289ffa 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:51+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:51+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/nl_NL.po b/addons/warning/i18n/nl_NL.po index 80bd1397a29..c6bd207c540 100644 --- a/addons/warning/i18n/nl_NL.po +++ b/addons/warning/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "Bericht voor Factuur" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" +msgstr "Inkooporderregel" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "Bericht voor Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" +msgstr "Bericht voor Verkooporderregel" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "Bericht voor Aankooporderregel" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Verkooporderregel" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,87 +53,122 @@ msgid "Warnings" msgstr "Waarschuwingen" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Waarschuwing wanneer dit product wordt ingekocht" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "Bericht voor Verkooporderregel" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "Verkooporder" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "Inkooporderregel" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "Bericht voor Aankooporderregel" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "Inkooporder" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Waarchuwing bij verkoop van dit product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Waarschuwing voor Verkooporder" +msgid "Warning on the Invoice" +msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Waarschuwing op deze inkooporder" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" #. module: warning #: field:res.partner,invoice_warn:0 msgid "Invoice" msgstr "Factuur" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "Verkooporder" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "Stock Picking" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "Inkooporder" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "Bericht voor Verkooporder" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "Waarschuwing op de Picking" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Waarschuwing op de factuur" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Bericht voor Aankooporder" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Verkooporderregel" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "Bericht voor Factuur" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "Bericht voor Picking" + diff --git a/addons/warning/i18n/pl_PL.po b/addons/warning/i18n/pl_PL.po index 277c48d3877..425d87da1e7 100644 --- a/addons/warning/i18n/pl_PL.po +++ b/addons/warning/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:10+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML niewłaściwy dla tej architektury wyświetlania!" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index bb00024fab8..4916b4ec78c 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalido XML para Arquitetura da View" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/pt_PT.po b/addons/warning/i18n/pt_PT.po index 1f75b6bdcbd..d64f2b017de 100644 --- a/addons/warning/i18n/pt_PT.po +++ b/addons/warning/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "Linha de Ordem de venda" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "Avisos" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "Atenção ao comprar este produto" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" +msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML inválido para a arquitectura de vista" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "Factura" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "Ordem de Venda" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,58 +112,63 @@ msgstr "" msgid "Purchase Order" msgstr "Ordem de compra" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "Atenção ao vender este produto" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "Atenção na ordem de venda" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "Atenção na ordem de compra" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "Factura" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "Atenção na factura" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "Mensagem para a ordem de compra" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "Linha de Ordem de venda" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" +msgstr "" #. module: warning #: model:ir.module.module,description:warning.module_meta_information msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/ro_RO.po b/addons/warning/i18n/ro_RO.po index c4b073b2846..c171dbd453f 100644 --- a/addons/warning/i18n/ro_RO.po +++ b/addons/warning/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/ru_RU.po b/addons/warning/i18n/ru_RU.po index b86204745c8..de5a8a56970 100644 --- a/addons/warning/i18n/ru_RU.po +++ b/addons/warning/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильный XML для просмотра архитектуры!" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/sl_SL.po b/addons/warning/i18n/sl_SL.po index 1dab125f701..e8b7033d9b7 100644 --- a/addons/warning/i18n/sl_SL.po +++ b/addons/warning/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neveljaven XML za arhitekturo pogleda." + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/sv_SE.po b/addons/warning/i18n/sv_SE.po index 3f0aed6d78c..b0cdc610b12 100644 --- a/addons/warning/i18n/sv_SE.po +++ b/addons/warning/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:31+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:31+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/sv_SV.po b/addons/warning/i18n/sv_SV.po index 016ccf5fc95..bd978e5b137 100644 --- a/addons/warning/i18n/sv_SV.po +++ b/addons/warning/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/tr_TR.po b/addons/warning/i18n/tr_TR.po index 243b0338c99..c0b1284ac59 100644 --- a/addons/warning/i18n/tr_TR.po +++ b/addons/warning/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Görüntüleme mimarisi için Geçersiz XML" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/uk_UK.po b/addons/warning/i18n/uk_UK.po index 3666e04cee7..759d65cf1c4 100644 --- a/addons/warning/i18n/uk_UK.po +++ b/addons/warning/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:52:00+0000\n" -"PO-Revision-Date: 2009-04-09 13:52:00+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:48+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,13 +53,48 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" +#: view:res.partner:0 +msgid "Warning on the Invoice" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" +msgstr "" + +#. module: warning +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури Вигляду!" + +#. module: warning +#: field:res.partner,invoice_warn:0 +msgid "Invoice" +msgstr "" + +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" msgstr "" #. module: warning @@ -52,13 +103,8 @@ msgid "Sale Order" msgstr "" #. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" msgstr "" #. module: warning @@ -66,54 +112,29 @@ msgstr "" msgid "Purchase Order" msgstr "" -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/warning.pot b/addons/warning/i18n/warning.pot index 39f4f91f54a..04de408a7db 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index 4243b12e470..0740fee032d 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:21+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:21+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:17+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index c6bd8e1c7b5..e488528dec4 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" +#: field:product.product,purchase_line_warn:0 +msgid "Purchase Order Line" msgstr "" #. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" +#: field:product.product,sale_line_warn_msg:0 +msgid "Message for Sale Order Line" msgstr "" #. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" +#: field:product.product,purchase_line_warn_msg:0 +msgid "Message for Purchase Order Line" +msgstr "" + +#. module: warning +#: field:product.product,sale_line_warn:0 +msgid "Sale Order Line" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Purchasing this Product" +msgstr "" + +#. module: warning +#: code:addons/warning/warning.py:0 +#, python-format +msgid "Alert for ' + product_info.name +' !" msgstr "" #. module: warning @@ -37,53 +53,33 @@ msgid "Warnings" msgstr "" #. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Blocking Message" msgstr "" #. module: warning #: view:res.partner:0 -msgid "Warning on the sale order" +msgid "Warning on the Invoice" msgstr "" #. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "No Message" msgstr "" #. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: warning @@ -91,29 +87,54 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: warning +#: model:ir.module.module,shortdesc:warning.module_meta_information +msgid "Module for Warnings form onchange Event" +msgstr "" + +#. module: warning +#: view:product.product:0 +msgid "Warning when Selling this Product" +msgstr "" + +#. module: warning +#: field:res.partner,sale_warn:0 +msgid "Sale Order" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn:0 +msgid "Stock Picking" +msgstr "" + +#. module: warning +#: field:res.partner,purchase_warn:0 +msgid "Purchase Order" +msgstr "" + #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sale Order" msgstr "" -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" msgstr "" #. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" +#: help:product.product,purchase_line_warn:0 +#: help:product.product,sale_line_warn:0 +#: help:res.partner,invoice_warn:0 +#: help:res.partner,picking_warn:0 +#: help:res.partner,purchase_warn:0 +#: help:res.partner,sale_warn:0 +msgid "Selecting the \"Warning\" option will notify user with the message, Selecting \"Blocking Message\" will throw an exception with the message and block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: warning +#: field:res.partner,invoice_warn_msg:0 +msgid "Message for Invoice" msgstr "" #. module: warning @@ -121,3 +142,33 @@ msgstr "" msgid "Module for Warnings form onchange Event." msgstr "" +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Picking" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Purchase Order" +msgstr "" + +#. module: warning +#: view:res.partner:0 +msgid "Warning on the Sale Order" +msgstr "" + +#. module: warning +#: selection:product.product,purchase_line_warn:0 +#: selection:product.product,sale_line_warn:0 +#: selection:res.partner,invoice_warn:0 +#: selection:res.partner,picking_warn:0 +#: selection:res.partner,purchase_warn:0 +#: selection:res.partner,sale_warn:0 +msgid "Warning" +msgstr "" + +#. module: warning +#: field:res.partner,picking_warn_msg:0 +msgid "Message for Stock Picking" +msgstr "" + diff --git a/addons/wiki/i18n/ar_AR.po b/addons/wiki/i18n/ar_AR.po index 17265036895..ac588f10df2 100644 --- a/addons/wiki/i18n/ar_AR.po +++ b/addons/wiki/i18n/ar_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:21:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:21:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:14:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:14:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/bg_BG.po b/addons/wiki/i18n/bg_BG.po index 3c3b8a583df..43b67a081ea 100644 --- a/addons/wiki/i18n/bg_BG.po +++ b/addons/wiki/i18n/bg_BG.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:24:07+0000\n" -"PO-Revision-Date: 2009-04-09 13:24:07+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/bs_BS.po b/addons/wiki/i18n/bs_BS.po index a64b35e9967..4221be9bfc7 100644 --- a/addons/wiki/i18n/bs_BS.po +++ b/addons/wiki/i18n/bs_BS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:23:01+0000\n" -"PO-Revision-Date: 2009-04-09 13:23:01+0000\n" +"POT-Creation-Date: 2009-05-19 14:15:11+0000\n" +"PO-Revision-Date: 2009-05-19 14:15:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ca_ES.po b/addons/wiki/i18n/ca_ES.po index f571d63cc40..c60d2e65f8c 100644 --- a/addons/wiki/i18n/ca_ES.po +++ b/addons/wiki/i18n/ca_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:25:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:25:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:16:35+0000\n" +"PO-Revision-Date: 2009-05-19 14:16:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/cs_CS.po b/addons/wiki/i18n/cs_CS.po index a589fd1779f..38baffee3d5 100644 --- a/addons/wiki/i18n/cs_CS.po +++ b/addons/wiki/i18n/cs_CS.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:17:41+0000\n" -"PO-Revision-Date: 2009-02-06 15:17:41+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -37,6 +37,7 @@ msgstr "" #. module: wiki #: code:addons/wiki/wizard/open_page.py:0 +#: model:ir.actions.wizard,name:wiki.wizard_open_page #, python-format msgid "Open Page" msgstr "" @@ -84,6 +85,11 @@ msgstr "" msgid "Wiki Configuration" msgstr "" +#. module: wiki +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: wiki #: field:wiki.groups,name:0 #: field:wiki.wiki,group_id:0 @@ -181,6 +187,12 @@ msgstr "" msgid "Pages" msgstr "" +#. module: wiki +#: code:addons/wiki/wizard/show_diff.py:0 +#, python-format +msgid "You need to select minimum 1 or maximum 2 history revision!" +msgstr "" + #. module: wiki #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -326,6 +338,12 @@ msgstr "" msgid "Table of Contents" msgstr "" +#. module: wiki +#: code:addons/wiki/wizard/show_diff.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: wiki #: wizard_button:wiki.create.menu,init,end:0 #: wizard_button:wiki.make.index,init,end:0 diff --git a/addons/wiki/i18n/cs_CZ.po b/addons/wiki/i18n/cs_CZ.po index 6217ec71110..6ee28a99d8d 100644 --- a/addons/wiki/i18n/cs_CZ.po +++ b/addons/wiki/i18n/cs_CZ.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:29:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:29:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:19:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:19:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/de_DE.po b/addons/wiki/i18n/de_DE.po index db9f2860fd7..65ed783b49b 100644 --- a/addons/wiki/i18n/de_DE.po +++ b/addons/wiki/i18n/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:35:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:35:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:06+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/es_AR.po b/addons/wiki/i18n/es_AR.po index f1946b3f438..c50503c8304 100644 --- a/addons/wiki/i18n/es_AR.po +++ b/addons/wiki/i18n/es_AR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:47:16+0000\n" -"PO-Revision-Date: 2009-04-09 13:47:16+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:53+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/es_ES.po b/addons/wiki/i18n/es_ES.po index 704d098a9eb..7b82921da1f 100644 --- a/addons/wiki/i18n/es_ES.po +++ b/addons/wiki/i18n/es_ES.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:48:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:48:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:31:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:31:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/et_EE.po b/addons/wiki/i18n/et_EE.po index e19f1d52906..00589b5fee2 100644 --- a/addons/wiki/i18n/et_EE.po +++ b/addons/wiki/i18n/et_EE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:33:12+0000\n" -"PO-Revision-Date: 2009-04-09 13:33:12+0000\n" +"POT-Creation-Date: 2009-05-19 14:21:36+0000\n" +"PO-Revision-Date: 2009-05-19 14:21:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Wiki seadistused" #. module: wiki #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Vigane mudeli nimi toimingu definitsioonis." #. module: wiki #: field:wiki.groups,name:0 @@ -191,7 +191,7 @@ msgstr "Lehekülgi" #: code:addons/wiki/wizard/show_diff.py:0 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" +msgstr "Sa pead valima minimaalselt 1 või maksimaalselt 2 ajaloo revisjoni." #. module: wiki #: constraint:ir.ui.view:0 @@ -342,7 +342,7 @@ msgstr "Sisukord" #: code:addons/wiki/wizard/show_diff.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Hoiatus" #. module: wiki #: wizard_button:wiki.create.menu,init,end:0 diff --git a/addons/wiki/i18n/fr_FR.po b/addons/wiki/i18n/fr_FR.po index 22d50562b04..cedc715c0bd 100644 --- a/addons/wiki/i18n/fr_FR.po +++ b/addons/wiki/i18n/fr_FR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:34:22+0000\n" -"PO-Revision-Date: 2009-04-09 13:34:22+0000\n" +"POT-Creation-Date: 2009-05-19 14:22:20+0000\n" +"PO-Revision-Date: 2009-05-19 14:22:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/hr_HR.po b/addons/wiki/i18n/hr_HR.po index a547bd10c93..25ab74d0b4a 100644 --- a/addons/wiki/i18n/hr_HR.po +++ b/addons/wiki/i18n/hr_HR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:28:34+0000\n" -"PO-Revision-Date: 2009-04-09 13:28:34+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:42+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/hu_HU.po b/addons/wiki/i18n/hu_HU.po index fedf45f4409..d8463a65914 100644 --- a/addons/wiki/i18n/hu_HU.po +++ b/addons/wiki/i18n/hu_HU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:36:43+0000\n" -"PO-Revision-Date: 2009-04-09 13:36:43+0000\n" +"POT-Creation-Date: 2009-05-19 14:23:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:23:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/it_IT.po b/addons/wiki/i18n/it_IT.po index 6a3b065e223..63733a7790e 100644 --- a/addons/wiki/i18n/it_IT.po +++ b/addons/wiki/i18n/it_IT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:37:53+0000\n" -"PO-Revision-Date: 2009-04-09 13:37:53+0000\n" +"POT-Creation-Date: 2009-05-19 14:24:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:24:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/lt_LT.po b/addons/wiki/i18n/lt_LT.po index ec906611007..f7ef2b32126 100644 --- a/addons/wiki/i18n/lt_LT.po +++ b/addons/wiki/i18n/lt_LT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:39:03+0000\n" -"PO-Revision-Date: 2009-04-09 13:39:03+0000\n" +"POT-Creation-Date: 2009-05-19 14:25:25+0000\n" +"PO-Revision-Date: 2009-05-19 14:25:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/nl_BE.po b/addons/wiki/i18n/nl_BE.po index 282683e0862..7ab46690c7f 100644 --- a/addons/wiki/i18n/nl_BE.po +++ b/addons/wiki/i18n/nl_BE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:30:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:30:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:08+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/nl_NL.po b/addons/wiki/i18n/nl_NL.po index 33f1a8e716b..60561aa3699 100644 --- a/addons/wiki/i18n/nl_NL.po +++ b/addons/wiki/i18n/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:32:02+0000\n" -"PO-Revision-Date: 2009-04-09 13:32:02+0000\n" +"POT-Creation-Date: 2009-05-19 14:20:52+0000\n" +"PO-Revision-Date: 2009-05-19 14:20:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pl_PL.po b/addons/wiki/i18n/pl_PL.po index 14c7560202d..1dde22efd21 100644 --- a/addons/wiki/i18n/pl_PL.po +++ b/addons/wiki/i18n/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:40:14+0000\n" -"PO-Revision-Date: 2009-04-09 13:40:14+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:09+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pt_BR.po b/addons/wiki/i18n/pt_BR.po index ffa5b1b1edf..08ff48d88c2 100644 --- a/addons/wiki/i18n/pt_BR.po +++ b/addons/wiki/i18n/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:41:23+0000\n" -"PO-Revision-Date: 2009-04-09 13:41:23+0000\n" +"POT-Creation-Date: 2009-05-19 14:26:56+0000\n" +"PO-Revision-Date: 2009-05-19 14:26:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pt_PT.po b/addons/wiki/i18n/pt_PT.po index 8bb509b943b..73e4140e6f7 100644 --- a/addons/wiki/i18n/pt_PT.po +++ b/addons/wiki/i18n/pt_PT.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:42:33+0000\n" -"PO-Revision-Date: 2009-04-09 13:42:33+0000\n" +"POT-Creation-Date: 2009-05-19 14:27:41+0000\n" +"PO-Revision-Date: 2009-05-19 14:27:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ro_RO.po b/addons/wiki/i18n/ro_RO.po index e00c7d94e47..eee9eeb1add 100644 --- a/addons/wiki/i18n/ro_RO.po +++ b/addons/wiki/i18n/ro_RO.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:43:42+0000\n" -"PO-Revision-Date: 2009-04-09 13:43:42+0000\n" +"POT-Creation-Date: 2009-05-19 14:28:28+0000\n" +"PO-Revision-Date: 2009-05-19 14:28:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ru_RU.po b/addons/wiki/i18n/ru_RU.po index 7e25c5cede9..26173fbec42 100644 --- a/addons/wiki/i18n/ru_RU.po +++ b/addons/wiki/i18n/ru_RU.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:44:55+0000\n" -"PO-Revision-Date: 2009-04-09 13:44:55+0000\n" +"POT-Creation-Date: 2009-05-19 14:29:15+0000\n" +"PO-Revision-Date: 2009-05-19 14:29:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sl_SL.po b/addons/wiki/i18n/sl_SL.po index f0a5f08b329..b76cab8b6c7 100644 --- a/addons/wiki/i18n/sl_SL.po +++ b/addons/wiki/i18n/sl_SL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:46:06+0000\n" -"PO-Revision-Date: 2009-04-09 13:46:06+0000\n" +"POT-Creation-Date: 2009-05-19 14:30:05+0000\n" +"PO-Revision-Date: 2009-05-19 14:30:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sv_SE.po b/addons/wiki/i18n/sv_SE.po index ae9d77b2405..76009e80058 100644 --- a/addons/wiki/i18n/sv_SE.po +++ b/addons/wiki/i18n/sv_SE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:49:40+0000\n" -"PO-Revision-Date: 2009-04-09 13:49:40+0000\n" +"POT-Creation-Date: 2009-05-19 14:32:30+0000\n" +"PO-Revision-Date: 2009-05-19 14:32:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sv_SV.po b/addons/wiki/i18n/sv_SV.po index fd84e094d9e..87878a3b743 100644 --- a/addons/wiki/i18n/sv_SV.po +++ b/addons/wiki/i18n/sv_SV.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:09+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:09+0000\n" +"POT-Creation-Date: 2009-05-19 14:34:58+0000\n" +"PO-Revision-Date: 2009-05-19 14:34:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,82 +28,88 @@ msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specia #. module: wiki #: model:ir.model,name:wiki.model_wiki_groups_link msgid "Wiki Groups Links" -msgstr "Wikigrupplänkar" +msgstr "" #. module: wiki #: field:wiki.wiki,create_uid:0 msgid "Author" -msgstr "Författare" +msgstr "" #. module: wiki #: code:addons/wiki/wizard/open_page.py:0 +#: model:ir.actions.wizard,name:wiki.wizard_open_page #, python-format msgid "Open Page" -msgstr "Öppna sida" +msgstr "" #. module: wiki #: field:wiki.groups.link,action_id:0 msgid "Menu" -msgstr "Meny" +msgstr "" #. module: wiki #: field:wiki.groups,child_ids:0 msgid "Child Groups" -msgstr "Undergrupper" +msgstr "" #. module: wiki #: model:ir.actions.act_window,name:wiki.act_wiki_group_open #: model:ir.actions.act_window,name:wiki.action_wiki #: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki msgid "Wiki Pages" -msgstr "Wikisidor" +msgstr "" #. module: wiki #: field:wiki.groups,section:0 msgid "Make Section ?" -msgstr "Skapa område?" +msgstr "" #. module: wiki #: model:ir.model,name:wiki.model_wiki_wiki_history #: view:wiki.wiki.history:0 msgid "Wiki History" -msgstr "Wikihistoria" +msgstr "" #. module: wiki #: field:wiki.wiki,minor_edit:0 msgid "Minor edit" -msgstr "Mindre förändring" +msgstr "" #. module: wiki #: field:wiki.wiki,text_area:0 msgid "Content" -msgstr "Innehåll" +msgstr "" #. module: wiki #: model:ir.ui.menu,name:wiki.menu_document_configuration msgid "Wiki Configuration" -msgstr "Wikikonfiguration" +msgstr "" + +#. module: wiki +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: wiki #: field:wiki.groups,name:0 #: field:wiki.wiki,group_id:0 msgid "Wiki Group" -msgstr "Wikigrupp" +msgstr "" #. module: wiki #: field:wiki.wiki,name:0 msgid "Title" -msgstr "Rubrik" +msgstr "" #. module: wiki #: field:wiki.wiki,history_id:0 msgid "History Lines" -msgstr "Historietidslinje" +msgstr "" #. module: wiki #: field:wiki.groups,template:0 msgid "Wiki Template" -msgstr "Wikimall" +msgstr "" #. module: wiki #: model:ir.module.module,shortdesc:wiki.module_meta_information @@ -113,37 +119,37 @@ msgstr "" #. module: wiki #: view:wiki.groups:0 msgid "Create a Menu" -msgstr "Skapa en meny" +msgstr "" #. module: wiki #: field:wiki.groups,notes:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: wiki #: field:wiki.wiki,section:0 msgid "Section" -msgstr "Område" +msgstr "" #. module: wiki #: view:wizard.wiki.history.show_diff:0 msgid "History Differance" -msgstr "Hiskorisk skillnad" +msgstr "" #. module: wiki #: wizard_field:wiki.create.menu,init,page:0 msgid "Group Home Page" -msgstr "Gruppera hemsida" +msgstr "" #. module: wiki #: field:wiki.wiki,write_uid:0 msgid "Last Author" -msgstr "Senaste författare" +msgstr "" #. module: wiki #: model:ir.actions.act_window,name:wiki.act_view_diff msgid "Differences" -msgstr "Skillnader" +msgstr "" #. module: wiki #: help:wiki.wiki,section:0 @@ -153,17 +159,17 @@ msgstr "" #. module: wiki #: view:wiki.groups:0 msgid "Page Template" -msgstr "Mall för Sida" +msgstr "" #. module: wiki #: model:ir.ui.menu,name:wiki.menu_document2 msgid "Document Management" -msgstr "Dokumenthantering" +msgstr "" #. module: wiki #: field:wiki.wiki.history,create_date:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: wiki #: wizard_view:wiki.make.index,init:0 @@ -173,13 +179,19 @@ msgstr "" #. module: wiki #: view:wiki.groups:0 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: wiki #: field:wiki.groups,home:0 #: field:wiki.groups,page_ids:0 msgid "Pages" -msgstr "Sidor" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wizard/show_diff.py:0 +#, python-format +msgid "You need to select minimum 1 or maximum 2 history revision!" +msgstr "" #. module: wiki #: constraint:ir.ui.view:0 @@ -189,51 +201,51 @@ msgstr "" #. module: wiki #: field:wiki.wiki.history,text_area:0 msgid "Text area" -msgstr "Textområde" +msgstr "" #. module: wiki #: wizard_field:wiki.create.menu,init,menu_parent_id:0 msgid "Parent Menu" -msgstr "Huvudmeny" +msgstr "" #. module: wiki #: field:wiki.wiki,create_date:0 msgid "Created on" -msgstr "Skapad" +msgstr "" #. module: wiki #: view:wiki.groups:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: wiki #: wizard_view:wiki.create.menu,init:0 #: wizard_view:wiki.make.index,init:0 msgid "Menu Information" -msgstr "Menyinformation" +msgstr "" #. module: wiki #: field:wiki.groups,parent_id:0 #: field:wiki.groups.link,group_id:0 msgid "Parent Group" -msgstr "Huvudgrupp" +msgstr "" #. module: wiki #: field:wiki.wiki,summary:0 #: field:wiki.wiki.history,summary:0 msgid "Summary" -msgstr "Sammanfattning" +msgstr "" #. module: wiki #: field:wiki.groups,create_date:0 msgid "Created Date" -msgstr "Skapelsedatum" +msgstr "" #. module: wiki #: model:ir.actions.act_window,name:wiki.action_history #: model:ir.ui.menu,name:wiki.menu_action_history msgid "All Page Histories" -msgstr "Alla sidors historik" +msgstr "" #. module: wiki #: model:ir.model,name:wiki.model_wiki_wiki @@ -248,7 +260,7 @@ msgstr "" #. module: wiki #: field:wiki.wiki.history,wiki_id:0 msgid "Wiki Id" -msgstr "Wiki-Id" +msgstr "" #. module: wiki #: code:addons/wiki/wizard/open_page.py:0 @@ -259,39 +271,39 @@ msgstr "" #. module: wiki #: wizard_field:wiki.create.menu,init,menu_name:0 msgid "Menu Name" -msgstr "Menynamn" +msgstr "" #. module: wiki #: view:wiki.wiki:0 msgid "Modifications" -msgstr "Ändringar" +msgstr "" #. module: wiki #: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history msgid "History" -msgstr "Historik" +msgstr "" #. module: wiki #: model:ir.ui.menu,name:wiki.menu_document #: view:wiki.wiki:0 msgid "Wiki" -msgstr "Wiki" +msgstr "" #. module: wiki #: field:wiki.wiki,write_date:0 msgid "Modification Date" -msgstr "Ändringsdatum" +msgstr "" #. module: wiki #: model:ir.actions.wizard,name:wiki.wizard_make_index #: wizard_button:wiki.make.index,init,yes:0 msgid "Create Index" -msgstr "Skapa index" +msgstr "" #. module: wiki #: field:wiki.wiki.history,minor_edit:0 msgid "This is a major edit ?" -msgstr "Är det här en betydande redigering?" +msgstr "" #. module: wiki #: model:ir.actions.wizard,name:wiki.wizard_group_menu_create @@ -299,12 +311,12 @@ msgstr "Är det här en betydande redigering?" #: wizard_button:wiki.create.menu,init,create_menu:0 #: wizard_view:wiki.make.index,init:0 msgid "Create Menu" -msgstr "Skapa meny" +msgstr "" #. module: wiki #: field:wiki.wiki,tags:0 msgid "Tags" -msgstr "Nyckelord" +msgstr "" #. module: wiki #: model:ir.actions.act_window,name:wiki.action_wiki_groups @@ -314,28 +326,34 @@ msgstr "Nyckelord" #: model:ir.ui.menu,name:wiki.menu_action_wiki_groups_browse #: view:wiki.groups:0 msgid "Wiki Groups" -msgstr "Wikigrupper" +msgstr "" #. module: wiki #: field:wiki.wiki.history,write_uid:0 msgid "Modify By" -msgstr "Ändrad av" +msgstr "" #. module: wiki #: field:wiki.wiki,toc:0 msgid "Table of Contents" -msgstr "Innehållsförteckning" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wizard/show_diff.py:0 +#, python-format +msgid "Warning" +msgstr "" #. module: wiki #: wizard_button:wiki.create.menu,init,end:0 #: wizard_button:wiki.make.index,init,end:0 msgid "Cancel" -msgstr "Avbryt" +msgstr "" #. module: wiki #: field:wizard.wiki.history.show_diff,diff:0 msgid "Diff" -msgstr "Skillnad" +msgstr "" #. module: wiki #: field:wiki.wiki,review:0 diff --git a/addons/wiki/i18n/tr_TR.po b/addons/wiki/i18n/tr_TR.po index d7459730b2d..5470f6d0a7f 100644 --- a/addons/wiki/i18n/tr_TR.po +++ b/addons/wiki/i18n/tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:50:50+0000\n" -"PO-Revision-Date: 2009-04-09 13:50:50+0000\n" +"POT-Creation-Date: 2009-05-19 14:33:21+0000\n" +"PO-Revision-Date: 2009-05-19 14:33:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/uk_UK.po b/addons/wiki/i18n/uk_UK.po index ea60a540999..dc4289f680a 100644 --- a/addons/wiki/i18n/uk_UK.po +++ b/addons/wiki/i18n/uk_UK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:51:59+0000\n" -"PO-Revision-Date: 2009-04-09 13:51:59+0000\n" +"POT-Creation-Date: 2009-05-19 14:35:47+0000\n" +"PO-Revision-Date: 2009-05-19 14:35:47+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 3bb2468b286..1c9b9ff0f85 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\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" +"PO-Revision-Date: 2009-05-19 14:36:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/zh_CN.po b/addons/wiki/i18n/zh_CN.po index 7f0774a6956..f8cafddb8e1 100644 --- a/addons/wiki/i18n/zh_CN.po +++ b/addons/wiki/i18n/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:26:20+0000\n" -"PO-Revision-Date: 2009-04-09 13:26:20+0000\n" +"POT-Creation-Date: 2009-05-19 14:17:16+0000\n" +"PO-Revision-Date: 2009-05-19 14:17:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/zh_TW.po b/addons/wiki/i18n/zh_TW.po index 6084d0b29be..7e2d91abbad 100644 --- a/addons/wiki/i18n/zh_TW.po +++ b/addons/wiki/i18n/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:27:28+0000\n" -"PO-Revision-Date: 2009-04-09 13:27:28+0000\n" +"POT-Creation-Date: 2009-05-19 14:18:00+0000\n" +"PO-Revision-Date: 2009-05-19 14:18:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" From 3c71cef4c6aeebfc300a7b8bdc9ef00b6b929533 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 20 May 2009 11:45:27 +0530 Subject: [PATCH 8/8] [FIX] Bug 375411 : Added Attrs for pricelist items(ref:Christophe Chauvet) bzr revid: jvo@tinyerp.com-20090520061527-ye5h2uraajj6n3oo --- addons/product/pricelist_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/product/pricelist_view.xml b/addons/product/pricelist_view.xml index 544ebfacff4..0c3c858e2d2 100644 --- a/addons/product/pricelist_view.xml +++ b/addons/product/pricelist_view.xml @@ -75,7 +75,7 @@ - +